Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know where I can get an inexpensive Java code signing certificate? Everywhere I look wants $200 to $300 per year! Unfortunately I cannot use a self-signed one, I'm trying to get rid of the scary warnings so that users will be more likely to accept my application. And as far as I know (per this question), it has to be a code signing certificate, it cannot be a SSL certificate.

share|improve this question
Maybe you could make the question more generic because code signing certificates are not specific to Java. – sorin Apr 12 '10 at 8:26

closed as off topic by Will Apr 15 '11 at 2:29

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

7 Answers

up vote 8 down vote accepted

What about startssl? They offer code signing certificates for 49.90$ for 2 years (with wild card capabilities). I haven't tried using it, so no guarantees, but it looks good.

share|improve this answer
1  
AFAICT, StartCom certificates are only 'trusted' by Windows 7, or earlier Windows versions with an appropriate root certificate upgrade installed: blog.startcom.org/?p=205 However, it's certainly interesting. – Roddy Dec 18 '09 at 10:40
2  
I always wondered how serious StartCom is. Their website looks very old and cheap and today they SSL connection fails auth.startssl.com (SSL connection error) Anyway, It looks that they manage to get accepted by Microsoft as root CA. – sorin Apr 11 '10 at 22:24
2  
Notice that Java brings its own certificate list and do not implicitly trust the same certificates as the operating system. – Thorbjørn Ravn Andersen Apr 29 '10 at 16:19
3  
@Thorbjørn Ravn Andersen, Correct, StartSSL is in fact not trusted by the default Oracle JRE at the moment. – Bart van Heukelom Dec 15 '10 at 0:29
@Bart, is that the Sun JVM or JRockit? – Thorbjørn Ravn Andersen Dec 15 '10 at 5:31
show 3 more comments

How about $80 a year? Tucows apparently resell for Comodo at their Author Site. Again, apparently, they give further discount for 3 years (~$199).

I can't confirm any of this without creating an account there (which is, frankly, above my pay grade) but if it is that much and it does work with Java, $66 a year for 3 years doesn't seem too steep.

Hopefully GoDaddy will add this to their bag of tricks one day.

Edit!

The prices are as follows:

  • 1 year for $75
  • 2 years for $140 ($10 saving)
  • 3 years for $195 ($30 saving)

And by the looks of things, they can be used for signing Java apps. Happy days.

share|improve this answer
1  
That's a good price compared to the others, and I can confirm it because I created the account and saw the prices. For future reference, 1 year = $75, 2 years = $140, 3 years = $195. – davr Oct 1 '08 at 17:44
Awesome! I'll edit my post so it's more accurate for future people who stumble in here. – Oli Oct 1 '08 at 20:38
1  
Bought one from Tucows a few months back. Works fine, no problems. – Roddy Oct 30 '08 at 11:42
Yes it's the best I've seen as well. I signed up last year for 3 years, just in case they stopped offering it at that price. I was fuming at the time that Comodo would sell their product on their own site for so much higher more than they let a reseller sell it. – lkessler Dec 10 '08 at 0:35
GoDaddy now DOES offer codesigning certificates, but at ridiculously expensive rates: 1 year for $199.99 2 years for $359.98 ($40 saving) 3 years for $509.97 ($90 saving) – Henning May 25 '09 at 16:43
show 1 more comment

You can tell if a CA's certs will work for Java code-signing by examining the Java cacerts file, which lists all the CAs known to Java. If their cert is in this file, then Java will not complain about the signed code. If it isn't, then it will warn the users. For example:

root@girflet:~# keytool -list -keystore /usr/lib/jvm/java-6-sun-1.6.0.15/jre/lib/security/cacerts | grep comodo

Enter keystore password: changeit

comodoaaaca, 02-May-2006, trustedCertEntry,

Note that I had to enter the default keystore password, changeit. This command should work on Windows as well, although you'll have to change the path to the cacerts file and you won't have grep. Use more instead and page through until you find or don't find what you're looking for.

As of today, Comodo is in the cacerts file, and startssl aren't. So a startssl cert wouldn't be much good for Java code.

share|improve this answer
2  
It's a little trickier than that, since certs can be chained. eg startssl might inherit from comodo for example, and in that case it would be accepted without complaining. – davr Dec 15 '09 at 20:01
Might need a "-v" on MacOSX to run that list command: keytool -list -v -keystore /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/lib/security/cac‌​erts -storepass changeit – Jason Thrasher Oct 5 '10 at 18:48

You can also get heavily discounted Comodo certificates from:

  • Lindersoft: $79 for one year, $200 for 3 years, plus a 25$ membership fee
  • K Software: $99 per year
share|improve this answer

Another good option (don't know how long this will last) is http://www.discountcodesigning.com/ They give you a real GlobalSign certificate for $99 (usually $229).

Despite the lack of branding, the site is run by GlobalSign themselves, and was registered just over two months ago. I have a feeling that they're doing price-testing to see how many more sales they get.

share|improve this answer

Cheapest I can find is $149/year (if you buy 3 years at once) from GlobalSign. Not great, I know!

share|improve this answer
Can you give a direct link? When I browse their site the best I see is $187/year (if you buy 3 years at once). Maybe it's some promotion I missed? – davr Sep 30 '08 at 23:10
I read that price on a blog talking about them. They've [rather unhelpully] since uppped their prices. – Oli Oct 1 '08 at 20:36

Comodo has code-signing certs for $179.95/year and you only need to buy 1 year. They don't talk about Java. I don't know if they are different than what you use to sign Microsoft based stuff.

share|improve this answer
A little cheaper, but I was hoping for a lot cheaper. You can get a SSL certificate for $20, why not a code certificate? :( – davr Oct 1 '08 at 0:41

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