This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center
                            
                        
                    
                
                                6年前关闭。
            
                    
我在使用makecert时遇到困难。有人可以帮忙吗?

makecert -sk MyKeyName -iv RootCATest.pvk -n "CN=tempCert" -ic RootCATest.cer -sr localmachine -ss my -sky exchange -pe

我正在尝试根据http://msdn.microsoft.com/en-us/library/ff647171.aspx上的说明在WCF中为消息安全性创建临时证书。


makecert -n "CN=RootCATest" -r -sv RootCATest.pvk RootCATest.cer(已成功创建RootCATest.cer,RootCATest.pvk)
makecert -sk MyKeyName -iv RootCATest.pvk -n "CN=tempCert" -ic RootCATest.cer -sr localmachine -ss my -sky exchange -pe


无法使用步骤2创建临时证书。如果删除了-pe,则说明它已成功创建,但是在我的要求中必须使用-pe

我是否有任何遗漏或请帮助我。我在Windows Xp和Win 7中都尝试过,但是没有运气。

最佳答案

我从http://www.inventec.ch/chdh/notes/14.htm找到了问题。我下载了最新版本的makecert,并成功创建了临时证书。

关于c# - 如何使用makecert创建自签名证书,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8104184/

10-10 16:57