vote up 3 vote down star
1

I am considering purchasing a code signing certificate from VeriSign or Thawte to sign an XBAP with. My question is this: What happens when that certificate expires? $299 and $599 are pretty hefty prices for 1-year/2-year cerificates, and if I have to deliver a newly signed build to my customers whenever my certificate expires, then I'll just deal with the hassle of creating my own certificate for now.

What I don't like about creating my own certificate is the difficulty in distributing it to all of the client machines that will be using my XBAP. My application will only ever be used on a LAN, so I suppose I could always use Windows Installer to install my home brewed certificate (although I'm unsure on how to do this - anyone have any ideas?).

This wouldn't really be a problem if I was delivering a partial trust application - but my application needs Web permissions, since it will be talking to WCF services, so it is in that grey area between partial trust and full trust, and without a certificate, I get that fun ole Trust Not Granted message when I try to load my XBAP.

Any ideas?

flag

There are other certificate providers that are MUCH cheaper. – Todd Smith Nov 30 '08 at 22:25
Thanks Todd - who could you suggest I look at? – unforgiven3 Dec 1 '08 at 0:49
2  
www.CACert.org is a not-for-profit organisation that offers code-signing certificates for free to trusted individuals. – cjakeman May 2 at 19:06
1  
FF message: "www.cacert.org uses an invalid security certificate. The certificate is not trusted because the issuer certificate is unknown." – RoadWarrior Jun 9 at 22:02
1  
Same thing from IE7 - cacert.org - their site certificate isn't even good - it can't be verified by a trusted certificate authority. I could get the same results by making my own certs (without retsin). – Bratch Jun 11 at 23:45
show 1 more comment

1 Answer

vote up 3 vote down check

What you should do if you plan to use it in a closed (LAN) environment is to setup your own CA. Windows Server versions include easy to use Certification Authority but even easier is to setup a minimal CA by means of the demoCA provided by openssl, which consists of several scripts. You can run openssl demoCA in Cygwin on Windows or natively. This demoCA consists of several perl/bash scripts that call openssl commands to generate requests, sign certificates/crls, etc.

When you have your own CA what you need to install is your CA root certificate so there will be no more hassles to update user certificates since the CA certificate will stay the same. Typically a CA certificate should last for 5-10 years, but you can configure as much as you want (remember that it is your own CA).

The CA certificate will be installed on every client machine. If your application trusts Windows System security it should be installed on IExplorer Certificate Authorities keystore. If you use a Java Application then you should distribute the CA certificate inside the Java keystore you use.

link|flag
Thanks Fernando - I'm a bit confused, though - how does the CA certificate get installed on every client machine? Does it have to be done manually? – unforgiven3 Dec 1 '08 at 0:51
Yes. The most direct approach is to do it manually. Just save your certificate with ".cer" or ".der" extension. Double click it and Windows will present you a wizard to import it. – Fernando Miguélez Dec 1 '08 at 8:29
I'll give that a try - thanks! – unforgiven3 Dec 1 '08 at 14:08
All good info, but "What happens when a code signing certificate expires?" – Bratch May 26 at 21:02
Easy, your signature (code or whatever) is no longer valid, since certificate does not pass even local validation (expirartion date is one of the first characteristics of the certificate to check) – Fernando Miguélez May 27 at 17:49
show 1 more comment

Your Answer

Get an OpenID
or

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