vote up 0 vote down star

I need a self-signed certificate to create a clickonce app in C++. I'm a real novice at deployment, so I'm following: How to create a self signed certificate

Here's the command sequence I've used

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

The last command to sign the manifest fails with the message:

Unable to open certificate "WsSPC.pfx": The specified network password is not correct.

I added WaterSteward.cer to the Trusted Root Certificate Authorities after creation and before going on to the next step.

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.)

Thanks for any help.

flag

79% accept rate

2 Answers

vote up 0 vote down

did you find answer to this

Thanks Mohit s26f84 at gmail

link|flag
No. I finally solved my problem another way. – Jon Sep 18 at 17:18
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.