8得票1回答
我可以使用makecert.exe为Windows Azure创建自签名SSL证书吗?

背景: 我需要测试 Windows Azure 上 WebRole 的 https 端点。为此,我需要上传一个自签名证书,将该证书的 thumbprint 添加到 WebRole 的配置中,最后将端点与已配置的证书关联。 我使用 Visual Studio 命令提示符中提供的 makecer...

8得票4回答
无法创建主题为<'MyCAContainerName'>的密钥。

使用makecert,我编写了以下命令: makecert -pe -n "CN=Myauthority" -sr localmachine -ss Root -a sha256 -cy authority -r -sk MyCAContainerName -sky exchange -s...

8得票2回答
使用SDK工具(makecert,pvk2pfx)生成证书

我需要创建两个证书:CA 证书和服务器证书。 我使用以下命令: makecert -r -pe -n "CN=CACert" -a sha1 -sky signature -cy authority -sv CACert.pvk CACert.cer certutil -addstore...

7得票1回答
makecert错误:无法访问主题的密钥

我有一个PowerShell脚本,想在两台独立的计算机上运行。在安装了Windows 8.1 SDK的计算机上,我可以使用以下命令: makecert -r -pe -n "CN=My Root Authority" -ss CA -sr CurrentUser ^ -a sha1...