How do I create a self-signed certificate for code signing using tools from the SDK?
|
1
|
|||||
|
|
|
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)
(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 CertificateBecause 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:
Creating a code-signing (SPC) Certificate
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:
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:
If you import the PFX file into the certificate store (you can use PVKIMPRT or the MMC snapin), you can sign code as follows:
|
||||||
|
|
|
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.... |
||
|
|
