up vote 19 down vote favorite
17
share [g+] share [fb]

How do I create a self-signed certificate for code signing using tools from the SDK?

link|improve this question
You should move your CA method into an answer, rather than including it in the question. As it says in the FAQ, "Do phrase your issue in the form of question / answer. Pretend you're on Jeopardy. It's best to actually submit an answer, rather than just answering in the question itself." – Chris Upchurch Sep 17 '08 at 16:10
Yeah, it makes it look "open" – Jaykul Sep 17 '08 at 16:18
feedback

2 Answers

up vote 41 down vote accepted

While you can create a self-signed code-signing (SPC) certificate in one go, I prefer to do the following:

Creating a self-signed Certificate Authority (CA)

makecert -r -pe -n "CN=My CA" -ss CA -sr CurrentUser
         -a sha1 -sky signature -sv MyCA.pvk MyCA.cer

(watch for line-breaks)

This creates a self-signed (-r) certificate, with an exportable private key (-pe). It's named "My CA", and should be put in the CA store for the current user. We're using the sha1 algorithm. The key is meant for signing (-sky).

The private key should be stored in the MyCA.pvk file, and the certificate in the MyCA.cer file.

Importing the CA Certificate

Because there's no point in having a CA certificate if you don't trust it, you'll need to import it into the Windows certificate store. You can use the Certificates MMC snapin, but from the command line:

certutil -user -addstore Root MyCA.cer

Creating a code-signing (SPC) Certificate

makecert -pe -n "CN=My SPC" -a sha1 -sky signature
         -ic MyCA.cer -iv MyCA.pvk
         -sv MySPC.pvk MySPC.cer

Pretty much the same as above, but we're providing an issuer key and certificate (the -ic and -iv switches).

We'll also want to convert the certificate and key into a PFX file:

pvk2pfx -pvk MySPC.pvk -spc MySPC.cer -pfx MySPC.pfx

If you want to protect the PFX file, add the -po switch, otherwise PVK2PFX creates a PFX file with no passphrase.

You can now use this certificate for signing code:

signtool sign /v /f MySPC.pfx MyExecutable.exe

If you import the PFX file into the certificate store (you can use PVKIMPRT or the MMC snapin), you can sign code as follows:

signtool sign /v /n "Me" /s SPC /d http://www.me.me
              /t http://timestamp.url MyExecutable.exe
link|improve this answer
2  
+1 for examples and for using timestamping. – Bratch May 30 '09 at 20:23
Should CA.cer in the certutil command be MyCA.cer? – Jon Drnek Jun 3 '09 at 16:19
Yep. Fixed. My original scripts have CA.cer, but I thought it'd be clearer to put "My" on stuff, so you could tell where it came from. – Roger Lipscombe Jun 4 '09 at 5:27
@Adam: that would be better asked as its own question. – Roger Lipscombe Mar 24 '11 at 7:30
This is exactly the answer I was looking for. Bravo! – Nighthawk Apr 4 '11 at 19:54
feedback

There's a PowerShell script over on HuddledMasses.org which asks you a few questions up front and then generates everything and imports them ...

Also, it uses OpenSSL rather makecert, so you can use it on machines where the devtools/sdk haven't been installed....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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