Code Signing Help
- Windows Code Signing
- Java Code Signing
Microsoft Windows Code Signing
Download the SSL Certificate From Control Center
You will receive an e-mail from Trustwave® with a zip
file attached to the e-mail. The filename will be similar to
YourCompanyName.zip. Copy this file to your code signing computer and
extract the YourCompanyName.p7b file from it.
- Launch the Microsoft Management Console application (search for
"mmc" in the Windows search feature)
- From the File menu, select Add/Remove Snap-in...
- Select Certificates in the Available snap-ins table
on the left and click the Add > button
- Select My User Account in the radio list and click Next.
- Click Finish.
- Click OK.
- Click on Certificates - Current User in the left panel.
- Right click on Personal in the center panel and select
All Tasks -> Import...
- Click Next.
- Browse to the downloaded YourCompanyName.p7b file and click
Open. Then click Next.
- Click Next.
- Click Finish.
Signing code with your new certificate
Once you have obtained the certificate, to sign a Windows binary with a
certificate provided in CER form (with separate RSA private key) you will
need the signtool tool from Microsoft (part of the Windows SDK.)
To sign code:
signtool.exe sign /tr http://timestamp.ssl.trustwave.com /td SHA256 /fd SHA256 binary_to_sign.exe
If you signed an exe you can run it at this time to see the new signature.

Click the publisher link to see more details.
