OpenSSL 并在客户端生成 CSR

发布于 2024-07-09 02:20:24 字数 538 浏览 8 评论 0原文

我需要你帮个忙。 我的基础设施是 IIS 6.0 和 Windows Server 2003。

我需要研究 OpenSSL 的使用以及可以发送给最终用户的媒体的构建,使他们能够生成 CSR,并生成文档来支持 CSR 的签名。

我的意思是,我需要向最终用户发送一张 CD,其中包含一个脚本,该脚本可以根据我公司的 Publickey CA 在他们的计算机上生成 CSR 和私钥。

  1. 客户端可以运行我通过某些 cd 或 DVD(可能是 openSSL 脚本)发送的实用程序,需要接受一些参数,以便最终用户可以提供关键字/密码数据。

  2. 该脚本将通过某种安全方式生成私钥和 CSR 发回我的公司(可能是通过电子邮件,我知道这不安全,但他们如何向我们发送回 CSR)

  3. 我们收到 CSR,签署并返回给客户。

所以我需要记录下来,以便最终用户能够理解他在做什么。

所以我的问题是我在哪里可以获得发送给客户端的脚本,以便他可以生成自己的 CSR 和私钥。

I need a favour from you. My infrastructure is IIS 6.0 and windows server 2003.

I need to investigate the use of OpenSSL and the construction of media that can be sent to end users, allowing them to generate CSRs, as well as produce documentation to support the signing of the CSR.

What I mean is, I need to send a CD to the end user with a script that can generate a CSR and a private key at their machine basing on my companies Publickey CA.

  1. client can run an utility sent by me via some cd or DVD (May be an openSSL script) needs to accept some parameters so that end user can supply keyword/password data.

  2. The script will generate private key and CSR back to my company via some secure way (may be through email, I know it is not safe but some how they send us back CSR)

  3. We receive the CSR and we sign it and return to the client.

So I need to document this, so that the end user can understand what he is doing.

So my question is where can I get the script to send to client so that he can generate his own CSR and PrivateKey.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逐鹿 2024-07-16 02:20:24

看一下 openssl 的 req 命令。 在脚本中调用 req,并向 -config 选项提供 ssl 配置文件。 req 将从用户处查询必要的信息,并将请求写入文件(您也可以在命令行上指定)。

编辑:您可以从http://www.slproweb下载openssl。 com/products/Win32OpenSSL.html
请阅读 req 手册页。

Take a look at openssl's req command. Invoke req in a script, and provide an ssl config file to the -config option. req will query the necessary information from the user, and write the request into a file (which you also specify on the command line).

Edit: you can download openssl from http://www.slproweb.com/products/Win32OpenSSL.html
Do read the req man page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文