vote up 3 vote down star

I'm looking around for a Java Code Signing certificate so my Java applets don't throw up such scary security warnings. However all the places I've found offering them charge (in my opinion) way too much, like over $200 per year. While doing research, a code signing certificate seems almost exactly the same as a SSL certificate.

The main question I have: is it possible to buy a SSL certificate, but use it to sign Java applets?

flag

3 Answers

vote up 6 vote down check

Short answer: No, they're different.

Long answer: It's the same sort of certificate and it uses the same crypto software, but the certificate has flags indicating what it is allowed to be used for. Code signing and web server are different uses.

link|flag
Darn...and I bet they put those flags there just so they could segment the market and charge more – davr Sep 17 '08 at 16:57
To a degree. It does help with security though. – John Meagher Sep 18 '08 at 1:07
vote up 2 vote down

When I import a new CA certificate in firefox (etc) I have the option of choosing which certificate uses I trust:

  • sign servers
  • sign code (like your applet)
  • sign email certs

So to me the answer is Yes, they're the same. Furthermore, why not generate your own with openssl. (man openssl, man x509, man req, etc on Unix)? Do you want to just quiet down the warnings or do you want other people whom you've never met to trust your code? If you don't need other users to chain trust to the anchor CA's bundled with their browser, OS, etc, then use openssl to generate your own.

And ask "how do I use OpenSSL to generate my own certificates?" if the latter is your choice.

link|flag
Yeah I want other people to trust the applet, so self-signed doesn't really help in this case. – davr Sep 17 '08 at 16:56
vote up 0 vote down

Thawte offers code signing certificates here. I imagine other Certificate Authorities offer this service as well. You can also create self-signed certificates, with Java keytool.

link|flag
Yeah I know they offer code signing certificates, but they cost way too much - $300 for one year! I was hoping I could instead use a cheaper SSL certificate which you can get for more like $30 – davr Sep 17 '08 at 16:57

Your Answer

Get an OpenID
or

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