在Windows中制作CSR证书(7)

发布于 2024-11-27 11:36:59 字数 553 浏览 2 评论 0原文

如何在 IIS 运行时生成 CSR 密切相关未安装

我也没有安装这个。我正在开发一个 iOS 移动应用程序,我正在尝试获取一个配置文件,以便我可以在本地测试我的应用程序。在获取此文件的过程中,系统要求我提供 .csr 文件,它指导我如何在 Mac 上构建此文件。除了我没有 Mac,我有一台 PC,而且我的公司只使用 PC。我需要此证书,但无法访问 Mac。

我已经看到并使用了这个 CSR生成器,但它给了我密钥和请求很长的字符串,我需要一个 .csr 文件上传到 Apple。

将其粘贴到记事本中并将扩展名更改为 .csr 也不起作用:/

有人对此有任何见解吗?

Closely related to How to generate CSR when IIS is not installed.

I also do not have this installed. I am developing a mobile application for iOS, and i am trying to obtain a provisioning file so i can test my app locally. In the process of acquiring this, i am asked for a .csr file, and it instructs me on how to build this on my Mac. Except i don't have a mac, i have a PC, and my company exclusively uses PCs. I need this certificate, without having access to a Mac.

i have seen and used this CSR generator, but it gives me the key and request in long strings of characters, and i need a .csr file to upload to Apple.

Pasting it in notepad and changing the extension to .csr didn't work either :/

Does anyone have any insights on this?

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

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

发布评论

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

评论(3

余生共白头 2024-12-04 11:36:59

您可以安装 OpenSSL for windows 并使用以下命令生成 CSR 文件:

openssl req -nodes -newkey rsa:2048 -keyout private_key.key -out cer_sign_request.csr

系统会询问您回答一些可选问题(按 ENTER 键)。

这将生成一个私钥(例如在钥匙串访问中)和一个作为 csr 文件的认证签名请求。

You can install OpenSSL for windows and generate CSR file with this command:

openssl req -nodes -newkey rsa:2048 -keyout private_key.key -out cer_sign_request.csr

You'll be asked for a few questions which are optional (press ENTER).

This will generate a private key (such in keychain access) and a certification signing request as csr file.

心不设防 2024-12-04 11:36:59

对于那些想要易于使用的图形界面的人来说,Digicert 有一个非常可靠的“Digicert Utility” 。您可以使用它来创建 CSR。它不会给您返回私钥,因此您需要导入自签名或 CA 证书才能完成证书的安装。安装后,您可以将其导出为 pfx 或 crt/key 包。

For those who want an easy to use graphical interface, Digicert has a "Digicert Utility" that is pretty solid. You can use it to create a CSR. It doesnt give you back a private key, so you need to import your self signed or CA certificate to complete the installation of the certificate. Once installed, you can export it as a pfx or crt/key bundle.

苏佲洛 2024-12-04 11:36:59
set OPENSSL_CONF=c:\OpenSSL\openssl.cnf

如果保存在 c:\openssl

您可以下载此示例文件openssl-dem-server-cert-thvs.cnf

rename openssl

ren cert-thvs.cnf openssl.cnf
set OPENSSL_CONF=c:\OpenSSL\openssl.cnf

if saved in c:\openssl

You can download this example fileopenssl-dem-server-cert-thvs.cnf

rename openssl

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