Code Signing for Developers - An Authenticode How-To

If you are a software developer then you probably already know that Microsoft Windows and web browsers such as Internet Explorer and Mozilla Firefox use a technology called Authenticode to verify the publisher of downloads and check that they have not been infected by a virus since they were created. If your software is not signed with a digital certificate, users will receive a warning that the publisher could not be verified and asked whether they want to continue running it. Many users will decide to play safe and click "Don't run", costing you lost sales.

This email was received by us on 22 November 2007 from a potential customer for a product on this site:

From: "Rick Fuller" <...>
I hesitate to run your ... software because my internet security software says you
didn't sign it - identifying a potential risk of malware. Please provide some
appropriate assurance that the software is trustworthy. I'd really like to use it.

How many potential customers will simply try something else instead of sending you a polite email?

If your products are intended for professional users, the consequences of not signing them could be even more disastrous. Many organizations have IT security policies that forbid the installation of unsigned code. If your products are not Authenticode signed you could be losing the chance of sales into the lucrative business market, including the possibility of large multi-seat and site licenses! These days, not to digitally sign software products is unprofessional. It isn't expensive to obtain a code signing certificate for your software business, and you only need to make a handful of extra sales per year to pay for it.

Buy code signing certificateRightly or not, Microsoft has adopted Authenticode as the way to tell trustworthy code from potential malware. You can't ignore it. If you don't sign your setup.exe, your reputation will suffer whenever a user installs your product.

This situation has existed since Windows XP SP2 was released, but it is worse under Windows Vista. If your unsigned software requires elevation to administrative privileges - which includes, but is not limited to, installers - a user will see additional warning messages such as the one shown on the right. Such warnings will not inspire confidence in your software, especially among non-technical users who are fearful of malware. Why tolerate this, when the issue can easily be solved?

What is Authenticode?

Authenticode is a technology that uses digital certificates to identify the author or publisher of program code and hashing algorithms to ensure its integrity. It is based on industry standards including Public Key Cryptography Standards (PKCS) #7 (encrypted key specification), PKCS #10 (certificate request formats), X.509 (certificate specification) and the Secure Hash Algorithm (SHA) and Message Digest 5 (MD5) hash algorithms. It is a specific implementation of a type of technology that has been in use for best part of a couple of decades. Another example is Pretty Good Privacy (PGP) which was developed by Philip Zimmerman in 1991.

Digital signatures are created using a public key signature algorithm. This uses two different keys: a public key and a private key, called a "key pair." The private key is known only to its owner and must be kept secure, while the public key is made available to anyone. Without going into details, the way the algorithm works is that if one key is used for encryption, the other must be used for decryption, as it is impractical to calculate the decryption key from the encryption key. In a digital signature, the private key is used to generate the signature and the public key is used to validate it.

The way the code signing process works is essentially this:

The signature verification process works like this:

In addition to the publisher's public key, a digital certificate - of which a code signing certificate is just one specific type - contains information about the publisher such as the name, address, contact email address, certificate expiry date and the name and digital signature of the certification authority that issued it. The last three items mentioned are important, because the digital certificate is not only used to verify that a document or program is genuine, but that the publisher really is who the certificate claims it is.

It is possible to create your own Authenticode digital certificate that can be used to verify that your programs have not been modified since you signed them. Microsoft's code signing tools include utilities that enable you to create software publishing certificates. But since you could create a certificate that claimed you were anyone - even Microsoft Corporation - such a certificate would not be trusted by the Windows operating system or web browsers. Therefore you need a code signing certificate issued by a trusted certification authority, whose job it is to check that you are who your certificate will say you are before issuing it. There are four certification authorities that can issue Authenticode code signing certificates - Comodo, Globalsign, Thawte and Verisign. Comodo certificates are the cheapest, and you can buy Comodo code signing certificates through Tech-Pro.net.

Code signing tools

As well as a code signing certificate, you need software tools to enable you to sign your programs with it. Microsoft has two versions of these tools. The first was released in 1998 and used to be available from the Microsoft website as the Authenticode for Internet Explorer Toolkit. This version is no longer available from Microsoft's website but the tools are also included as part of the Microsoft .NET Framework Software Development Kit, a somewhat larger download. They may also be downloaded using a link in the free Tech-Pro CodeSign tool. They include the following:

The second version of these tools was released with Microsoft Visual Studio 2005. They are also available as part of the Windows Server 2003 Platform SDK and Microsoft Windows Software Development Kit for Windows Vista that can be downloaded from the Microsoft website. Again, these are unfortunately rather large downloads. These code signing tools include the following:

The principal difference between these two sets of tools is that signcode.exe requires the private key and software publisher certificate to be in two separate files (.pvk, .spc). The later signtool.exe requires that they are contained in a single Personal Information Exchange (.pfx) file. The .pfx file format is also needed to use the Association of Shareware Professionals' PAD signing toolkit.

If you don't have Microsoft Visual Studio but want to import .pvk and .spc files to the .pfx format then you can download the PVK Digital Certificate Files Importer from Microsoft's website.

Obtaining a digital certificate

Obtaining a digital certificate is fairly straightforward. If you purchase a Comodo code signing certificate from Tech-Pro.net, you will be asked to create an account on Comodo's server. This allows Comodo to keep track of your details, which is useful when you come to renew the certificate.

After paying for your certificate - you can purchase certificates for a period of one, two or three years - you must then wait to be contacted by Comodo using the address you provided. You will be required to provide documentary proof that you are who you will claim to be in your digital certificate. If you are applying on behalf of a company you will be asked to provide a copy of the company's certificate of incorporation or a similar document. If you are applying as an individual you may be asked to supply copies of utility bills or other documents. Full details of the supporting information that may be requested can be found here.

When your application has been approved you will receive an email inviting you to download your code signing certificate. The exact process will depend on which web browser and operating system you use to order the certificate. Firefox and Internet Explorer under Windows XP will create separate .pvk and .spc files on your hard drive. Internet Explorer 7 under Windows Vista will save your certificate directly in the browser's certificate store, from where you will need to export it to a file.

As explained in the previous section, the different versions of code signing tools require the certificate to be in different formats. Conversely, the format in which you receive the certificate may determine which code signing tools you are able use. It's easy enough to convert a pair of .pvk and .spc files to the .pfx format if you want to use signtool.exe or the ASP PAD signing tools, but converting a .pfx file into a .pvk, .spc pair is somewhat more difficult.

Security of digital certificates

One point that is often overlooked is that if the details supplied to the certification authority change during the life of the certificate, you have a responsibility (which you agreed to when purchasing the certificate) to inform the certification authority of those details.

It is equally important to inform the certification authority if your digital certificate is lost or stolen. The certificate may be revoked if you are found not to have complied with this requirement, and you may then have trouble obtaining a new certificate. Because computers (especially laptops) can easily be stolen, some developers keep their digital certificates on a USB thumb drive or similar removable media that is locked away when not being used.

Creating your own digital certificate

If you want to try out the process of signing code before you buy a code signing certificate then you can create your own certificate for test purposes.

Open a command prompt in the folder containing the code signing tools, and type:

makecert.exe -sv mykey.pvk -n "CN=Acme Software Inc." mycert.cer

You can substitute your own business name for "Acme Software Inc." If the file mykey.pvk does not already exist, you will be prompted to enter a password for the private key file. The password may be blank. If you will be signing your code using these command line tools it is more convenient if it is blank. However, if anyone should get hold of your unprotected private key file they will be able to sign software as if they were you.

On completion of this command you should have two files, mykey.pvk and mycert.cer. Now you need to convert the digital certificate into the Software Publisher Certificate (.spc) format. To do this, type:

cert2spc.exe mycert.cer mycert.spc

You will be prompted to enter the password for the private key file. (Hopefully, you haven't forgotten it already!) When the program finishes you should have a new file, mycert.spc. Only the two files mykey.pvk and mycert.spc will be used when signing your code.

Signing your software

Signing your software is a simple process, but the process is different depending on which version of the Microsoft code signing tools you are using. In the examples given below, we will assume that your private key is stored in a file mykey.pvk and that your code signing certificate is named mycert.spc and that both these files are in the same folder as the code signing tools themselves. If that isn't the case, just change the paths accordingly, and put quotes round the paths if they contain spaces.

Using signcode.exe

If you are using the signcode.exe tool from the Authenticode for Internet Explorer Toolkit or the Microsoft .NET Framework Software Development Kit, open a command prompt and type:

signcode.exe -t <timestamp URL> -spc mycert.spc -v mykey.pvk "<file to be signed>"

where:

It is important that executable code is time stamped to show when it was signed. If it is not time stamped, then when users try to run your software after the certificate you signed it with has expired, they will receive a warning message about it.

Using signtool.exe

If you are using the signtool.exe from Microsoft Visual Studio 2005 or later or the Platform SDK, then you must first import your private key and software publisher certificate into a single PFX file. This is a one-off process that need only be repeated whenever you renew your code signing certificate. Open a command prompt and type:

pvk2pfx.exe -pvk mykey.pvk -pi <password> -spc mycert.spc -pfx mycert.pfx -po <password>

replacing <password> with your private key password. If you used a blank password when you created your private key file then you can omit the -pi <password> but we found that it is necessary to specify a password for the output file. When we didn't, it appeared that pvk2pfx created a password of its own, and we received a password error when trying to sign code with the resulting PFX file.

If you downloaded the the PVK Digital Certificate Files Importer then you can create a PFX file using that instead. This tool does not have a problem creating PFX files with a blank bassword. To run it, type:

pvkimprt.exe -pfx mycert.spc mycert.pvk

This will open a Certificate Import Wizard. Be sure to check "Yes, export the private key" under "Export Private Key" when this page of the wizard appears.

At the end of this process you should have a PFX file. Now you are ready to start signing programs with it. To do this, open a command prompt and type:

signtool.exe sign /f mycert.pfx /p <password> /t <timestamp URL> /v "<file to be signed>"

replacing <password> with the password specified when you created the PFX file (omit /p if this was blank) and <timestamp URL> with one of the time stamping server URLs listed above.

Automating the process

Code signing is not a difficult process, but typing long lines into a command prompt is a bit of a nuisance. Some developer tools may have built in support for code signing. If not, it is a simple matter to create a batch file to run the code signing tool with the required parameters. If you replace "<file to be signed>" with "%1" you can even use the batch file as a drag and drop code signer.

Tech-Pro has a freeware utility, CodeSign, that acts as a graphical shell for these command line tools and lets you sign files using drag and drop without any need to create batch files or type long lines of text into a command prompt.

download Download Tech-Pro CodeSign. It's FREE!
More information about Tech-Pro CodeSign

Checking the signed program

There is no need to check the result of your code signing as a separate step every time, as the output from signcode.exe or signtool.exe will show whether or not an error occurred during the signing process. Most often, any error will relate to accessing the time stamping server. If this happens, wait a minute and try again.

To verify visually the result of code signing, right-click the executable file and click on Properties. You should now see an extra tab, Digital Signatures. Select this tab.

Code signing

The signature list will show details of the signature. The name of signer and email address are those provided when you purchased your code signing certificate (the email address is optional.) The timestamp column shows the date and time of signing. If this field is blank then the signature was not time stamped, and the user will receive warnings once the digital signature expires.

If you select the signature and click Details then you can view the details of the digital certificate.

code signing certificate

Further information