vote up 0 vote down star

I'd like to generate a certificate for development purpose but, I don't want to install the certificate in the store.

makecert with the switch -pe doesn't create the private key if you specify an output file an output file. I tried to create a .pfx file by exporting the certificate created with makecert, it asks me a password to protect the private key, I guess I can't use it with my WCF service since the config file has no information about the password...

Why in the hell is it so complicated ? Do you know a simple tool to create a certificate with private key inside a file without password in one simple step ?

Thanks,

flag

77% accept rate

2 Answers

vote up 0 vote down check
makecert -r -pe -n "CN=CompanyXYZ Server" -b 01/01/2007 -e 01/01/2010 -sky exchange Server.cer -sv Server.pvk
pvk2pfx.exe -pvk Server.pvk -spc Server.cer -pfx Server.pfx

from here.

link|flag
vote up -1 vote down

Visual Studio - using MakeCert:

MSDN Article

link|flag
As I said, I didn't manage to create a certificate with the private key inside in a file with MakeCert, because it cant, you're obliged to store the certificate and private key in the store, and I don't want all this pain. – Nicolas Dorier Nov 6 at 18:41
no you don't... you can export it with the key. – Dani Nov 6 at 21:08
although it will be 2 actions and not one.... – Dani Nov 6 at 21:15
In fact, the private key can only be exported in a different file, after you need pvk2pfx.exe to "merge" public and private key in a pfx file, I've shared the command line with my response. – Nicolas Dorier Nov 11 at 9:13

Your Answer

Get an OpenID
or

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