vote up 3 vote down star
2

Duplicate of this and this.

I'm looking for a free C or C++ cryptography library that can be embedded in a closed-source applicationand supports RSA public-key cyphering. I've found OpenSSL and Crypto++ but neither have a good documentation for a beginner.

Anyone knows a good, free, C or C++ cryptography library with a decent documentation for a starter?

Or maybe a link to a good Starter Guide for Crypto++ or OpenSSL.

flag

What sort of cryptography do you need? Secret-key? Public-key? SSL? TLS? – cjm Aug 27 at 22:09
Possible dup stackoverflow.com/questions/108518/… and stackoverflow.com/questions/674401/… – Shay Erlichmen Aug 27 at 22:12

2 Answers

vote up 6 vote down check

I'd say try again with Crypto++, I have used it, it's mature, popular, provides a lot of algorithms, abstraction(C++-style) to make encrypting a file or a string only a couple of lines away, and it has a non-viral license.

link|flag
I second this, crypto++ is a great library. Get the source, it comes with a bunch of examples. – ttvd Aug 28 at 0:30
3  
Crypto++ has wiki (cryptopp.com/wiki/Main_Page) with bunch of examples, and a relatively active mail list. – Eugene Aug 28 at 2:13
I found the wiki right after I posted this question, but thanks! – Vargas Aug 28 at 14:27
vote up 2 vote down

Are you on windows?

If so then use the Cryptographic Next Generation (CNG) crypto algorithms. They are all FIPS certified and have been tested. Of course you can also link to these in a closed source application, but only if you are on windows.

MSDN on CNG Libraries

link|flag
I need it to work both on Windows and Linux (and very shortly in FreeBSD too) – Vargas Aug 28 at 14:30
Also note that CNG is only supported on Vista, Server 2008 and Windows 7. – Rasmus Faber Sep 9 at 9:30
1  
CNG works perfectly fine in .Net on XP? – Spence Sep 10 at 1:52

Your Answer

Get an OpenID
or

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