Self-signed certificate - unable to open certificate - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T08:20:14Zhttp://stackoverflow.com/feeds/question/1033348http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1033348/self-signed-certificate-unable-to-open-certificate0Self-signed certificate - unable to open certificateJon2009-06-23T15:35:29Z2009-11-06T19:23:10Z
<p>I need a self-signed certificate to create a clickonce app in C++. I'm a real novice at deployment, so I'm following:
<a href="http://stackoverflow.com/questions/84847/how-do-i-create-a-self-signed-certificate-for-code-signing-on-windows">How to create a self signed certificate</a></p>
<p>Here's the command sequence I've used </p>
<pre><code>makecert -r -pe -n "CN=Watersteward" -ss CA -sr CurrentUser -sky signature -sv WaterSteward.pvk WaterSteward.cer
makecert -pe -n "CN=Watersteward" -sky signature -ic WaterSteward.cer -iv WaterSteward.pvk -sv WsSPC.pvk WsSPC.cer
pvk2pfx -pvk WsSPC.pvk -spc WsSPC.cer -pfx WsSPC.pfx
mage -s Alpine.exe.manifest -CertFile WsSPC.pfx
</code></pre>
<p>The last command to sign the manifest fails with the message:</p>
<p>Unable to open certificate "WsSPC.pfx":
The specified network password is not correct.</p>
<p>I added WaterSteward.cer to the Trusted Root Certificate Authorities after creation and before going on to the next step.</p>
<p>During each step above, a dialog popped up asking for a password. In each case I clicked 'None' (I've also tried it with -n "CN=mydomain\mylogin" and giving my password in the dialogs.)</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1033348/self-signed-certificate-unable-to-open-certificate/1436192#14361920Answer by mohit for Self-signed certificate - unable to open certificatemohit2009-09-17T00:43:06Z2009-09-17T00:43:06Z<p>did you find answer to this</p>
<p>Thanks
Mohit
s26f84 at gmail</p>
http://stackoverflow.com/questions/1033348/self-signed-certificate-unable-to-open-certificate/1689761#16897610Answer by Gonzalo for Self-signed certificate - unable to open certificateGonzalo2009-11-06T19:23:10Z2009-11-06T19:23:10Z<p>Use the -pi option in pvk2pfx to provide a password for the .pfx file and then enter that password when prompted. Looks like some tools don't know how to deal with a private key without a password.</p>