Click here to Skip to main content
15,867,141 members
Articles / Mobile Apps

Sign Code

Rate me:
Please Sign up or sign in to vote.
4.39/5 (31 votes)
15 Nov 2006CPOL2 min read 232.5K   889   77   53
How to sign the code by your own certificate and install the certificate on device

Introduction

This article is for test purposes only, the best way to sign code is Mobile2Market, Verisign, etc...
With WM5, Microsoft has implemented a new security schema on PocketPC too.
The new schema requires that the applications be signed with a valid certificate to run without problems on devices. 

For simple applications, the schema is not a problem. You'll get some boring popups to run the applications or to install cabs the first time. We have more problems when we try to deploy services or drivers, our DLLs or applications will not run because the schema is loaded after service.exe and device.exe processes!

In this article, I'll explain how we can deploy our own certificate on device and sign our code.

Step 1 - Create the Certificate

The first step is to create our certificate. To do this, we'll use the utility makecert.exe:

makecert -r -sv MyCert.pvk -n "CN=MyCert" -b 01/01/2000 -e 01/01/2099 MyCert.cer 

For more information about makecert.exe parameters, refer to MSDN library.
Now we have our certificate (MyCert.cer) and private key (MyCert.pvk), but we need .pfx to pass it to signtool.exe, so go on to step 2.

Step 2 - Create .pfx from the .cer

To create .pfx file from .cer file, we've to run pvk2pfx.exe tool:

pvk2pfx.exe -pvk MyCert.pvk -spc MyCert.cer -pfx MyCert.pfx

The command will create a .pfx file (MyCert.pfx).

Step 3 - Create the provisioningdoc XML

Ok, now we are ready to build our cab which will install our certificate on devices. To do this, we've to create our wap-provisioningdoc XML.

XML
<?xml version="1.0" encoding="utf-8" ?>
<wap-provisioningdoc>
<characteristic type="CertificateStore">
    <characteristic type="Privileged Execution Trust Authorities">
        <characteristic type="[cert_sha1]">
            <parm name="EncodedCertificate" value="[cert_base64]" />
        </characteristic>
    </characteristic>
</characteristic>
<characteristic type="CertificateStore">
    <characteristic type="SPC">
        <characteristic type="[cert_sha1]">
            <parm name="EncodedCertificate" value="[cert_base64]" />
            <parm name="Role" value="222" />
        </characteristic>
    </characteristic>
</characteristic>
</wap-provisioningdoc>

This is the standard schema for our provisioningdoc.
We've to fill [cert_sha1] and [cert_base64] with our values got from MyCert.cer. To obtain these values, we've to use openssl.exe tool:

openssl sha1 MyCert.cer > MyCert_sha1.txt
openssl base64 -in MyCert.cer > MyCert_base64.txt
With these commands, we get two files with sha1 and base64 values of our certificate. So create an empty file '_setup.xml' and pass the content into:

XML
<?xml version="1.0" encoding="utf-8" ?>
<wap-provisioningdoc>
<characteristic type="CertificateStore">
    <characteristic type="Privileged Execution Trust Authorities">
        <characteristic type="30bc827f441fa4437b645163e49ade7226b362c3">
            <parm name="EncodedCertificate" 
	    value="MIIB7zCCAVigAwIBAgIQSZfc9OLump1HzDNpsZ2edTANBgkqhkiG9w0BAQQFADAR
MQ8wDQYDVQQDEwZNeUNlcnQwIBcNOTkxMjMxMjMwMDAwWhgPMjA5ODEyMzEyMzAw
MDBaMBExDzANBgNVBAMTBk15Q2VydDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkC
gYEAx6QQIhONxvNHrK+p1qgy/AY3/Q/rf7XGvMYmxENAdQFjgP2CpH/1Bgsa8MwK
XxViZqW2DbixDas77M+cG3BnxtdK42xuhBlzVCq8wiOh7/q9SZp9wKj94c7k5jok
L1BgHT2dH2DHUgnxG6Y9mvowX/DJ8gvbNKR1p4FQpK74NvUCAwEAAaNGMEQwQgYD
VR0BBDswOYAQfyce0/6l1q4oeResHzIEZ6ETMBExDzANBgNVBAMTBk15Q2VydIIQ
SZfc9OLump1HzDNpsZ2edTANBgkqhkiG9w0BAQQFAAOBgQAEqy6rTbjmV/6zgYBY
+gQQqBHf4GMvyEUR9g5+p/esG7GDve/qbZ4bm1BOSdRfgzMsda2guciMD54QPHNp
k+wdE0tSuQN90Dla8109GmTdFyZkVezSDmuCkbX0BjQW2dJ6egvGG2mnA7Q6/5yt
4ftcV6hExesZviGUKXdBhBM2Dg==" />
        </characteristic>
    </characteristic>
</characteristic>
<characteristic type="CertificateStore">
    <characteristic type="SPC">
        <characteristic type="30bc827f441fa4437b645163e49ade7226b362c3">
            <parm name="EncodedCertificate" 
	    value="MIIB7zCCAVigAwIBAgIQSZfc9OLump1HzDNpsZ2edTANBgkqhkiG9w0BAQQFADAR
MQ8wDQYDVQQDEwZNeUNlcnQwIBcNOTkxMjMxMjMwMDAwWhgPMjA5ODEyMzEyMzAw
MDBaMBExDzANBgNVBAMTBk15Q2VydDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkC
gYEAx6QQIhONxvNHrK+p1qgy/AY3/Q/rf7XGvMYmxENAdQFjgP2CpH/1Bgsa8MwK
XxViZqW2DbixDas77M+cG3BnxtdK42xuhBlzVCq8wiOh7/q9SZp9wKj94c7k5jok
L1BgHT2dH2DHUgnxG6Y9mvowX/DJ8gvbNKR1p4FQpK74NvUCAwEAAaNGMEQwQgYD
VR0BBDswOYAQfyce0/6l1q4oeResHzIEZ6ETMBExDzANBgNVBAMTBk15Q2VydIIQ
SZfc9OLump1HzDNpsZ2edTANBgkqhkiG9w0BAQQFAAOBgQAEqy6rTbjmV/6zgYBY
+gQQqBHf4GMvyEUR9g5+p/esG7GDve/qbZ4bm1BOSdRfgzMsda2guciMD54QPHNp
k+wdE0tSuQN90Dla8109GmTdFyZkVezSDmuCkbX0BjQW2dJ6egvGG2mnA7Q6/5yt
4ftcV6hExesZviGUKXdBhBM2Dg==" />
            <parm name="Role" value="222" />
        </characteristic>
    </characteristic>
</characteristic>
</wap-provisioningdoc>

We're ready to build our cab to deploy on our devices.

Step 4 - Build the .cab

This is the most simple step. We've to run makecab.exe tool:

makecab.exe _setup.xml mycert_cert.cab

Our certificate is now ready to install on devices!

Step 5 - Sign our Application Code

After we installed the certificate on our devices, we can sign our code with MyCert.pfx for our code to run as trusted.
We've to use signtool.exe tool:

signtool.exe sign /f MyCert.pfx *.exe *.cab

or

signcode -v MyCert.pvk -spc MyCert.cer *.exe 

With these five simple steps, we've our certificate applications!

Related Links

History

  • 19/12/2005 - Initial article
  • 30/12/2005 - Corrected the command line on Step 5
  • 31/12/2005 - Regenerated the certificate and updated zip file
  • 15/11/2006 - Added command line in Step 5 and updated zip file with signcode.exe tool

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Italy Italy

Comments and Discussions

 
QuestionWhat I needed to do Pin
ajhuddy31-Mar-10 6:50
ajhuddy31-Mar-10 6:50 
GeneralLaunch certificate registration CAB without user intervention Pin
Gaspard2-Apr-09 23:04
Gaspard2-Apr-09 23:04 
QuestionPFX password Pin
chmod222220-Jul-08 21:41
chmod222220-Jul-08 21:41 
AnswerRe: PFX password Pin
chmod222220-Jul-08 21:57
chmod222220-Jul-08 21:57 
I solved the password problem by specifying the password when creating the PFX file like this:

pvk2pfx -pvk d:\CERT\mycert.pvk -spc d:\CERT\mycert.cer -pfx d:\CERT\mycert.pfx -pi mycertPASS1 -po mycertPASS1 -f

Wink | ;)


QuestionVb.Net [modified] Pin
hitesh sojitra7-May-08 21:25
hitesh sojitra7-May-08 21:25 
Questionwhen I generate the cab file, and check it's contents, the xml data is missing? Pin
Member 215955412-Dec-07 4:10
Member 215955412-Dec-07 4:10 
QuestionSimple EXE signing...? Pin
Vitaly Tomilov10-Jan-07 1:52
Vitaly Tomilov10-Jan-07 1:52 
Questionsigning solution with several projects Pin
donkaiser5-Dec-06 6:55
donkaiser5-Dec-06 6:55 
AnswerRe: signing solution with several projects Pin
crino5-Dec-06 7:10
crino5-Dec-06 7:10 
Questionwhat does the value 222 means? Pin
donkaiser28-Nov-06 4:00
donkaiser28-Nov-06 4:00 
AnswerRe: what does the value 222 means? Pin
crino5-Dec-06 7:11
crino5-Dec-06 7:11 
QuestionDeploy application in Debug mode Pin
Drca15-Nov-06 6:32
Drca15-Nov-06 6:32 
AnswerRe: Deploy application in Debug mode Pin
crino15-Nov-06 8:25
crino15-Nov-06 8:25 
GeneralI can't install certificate Pin
Rikardo15-Nov-06 2:01
Rikardo15-Nov-06 2:01 
GeneralRe: I can't install certificate Pin
crino15-Nov-06 5:09
crino15-Nov-06 5:09 
GeneralRe: I can't install certificate Pin
Rikardo16-Nov-06 6:08
Rikardo16-Nov-06 6:08 
GeneralRe: I can't install certificate Pin
crino16-Nov-06 8:39
crino16-Nov-06 8:39 
NewsDownload for CAPICOM Pin
ivarklung1-Nov-06 21:54
ivarklung1-Nov-06 21:54 
QuestionStill getting prompted? Pin
masterminder19-Jun-06 9:55
masterminder19-Jun-06 9:55 
AnswerRe: Still getting prompted? Pin
gregariousgary23-Mar-09 2:07
gregariousgary23-Mar-09 2:07 
GeneralPassword error [modified] Pin
thomasthethomas22-May-06 4:22
thomasthethomas22-May-06 4:22 
GeneralRe: Password error Pin
buchser10-Aug-06 4:17
buchser10-Aug-06 4:17 
GeneralRe: Password error [modified] Pin
crino15-Nov-06 5:13
crino15-Nov-06 5:13 
GeneralRe: Password error Pin
MartinFa16-Jun-11 10:49
MartinFa16-Jun-11 10:49 
GeneralThanks!! Pin
Narin22-Apr-06 13:28
Narin22-Apr-06 13:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.