up vote 7 down vote favorite
2
share [g+] share [fb]

I am developing a win32 application and I would like to use an RSA encryption library. What Library would you recommend?

link|improve this question

feedback

8 Answers

up vote 2 down vote accepted

I use the following library:

http://www.efgh.com/software/rsa.htm

It's public domain, compact, self contained, and does the work well.

link|improve this answer
3  
This library does not use padding. That is a significant omission. – Accipitridae May 19 '09 at 17:10
True that, I did improve it though by adding that. Problem is, I lost the code :(. It wasn't' too difficult to add though... – Zombies Jun 11 '10 at 16:06
feedback

If you're using Win32, why don't you simply use the built-in win32 crypto-API?

Here's a little example how it works in practice:

http://www.codeproject.com/KB/security/EncryptionCryptoAPI.aspx

link|improve this answer
It doesn't appear to be C++ for one. – dvorak Sep 20 '08 at 22:52
1  
The Win API is in C, which is immediately usable within a C++ program. – KTC Sep 20 '08 at 23:04
Yep. If you favor a C++ interface, write yourself a wrapper around it. May be a good idea anyways just in case you later want to change the API. – Nils Pipenbrinck Sep 21 '08 at 0:28
feedback

I think OpenSSL is a good choice. It's well-maintained, and the price is right :)

http://www.openssl.org

link|improve this answer
Do keep in mind that OpenSSL is not GPL compatible. – Leon Timmermans Sep 20 '08 at 16:41
It's also not C++ – dvorak Sep 20 '08 at 22:53
2  
It's written in C, and is immediately usable within a C++ program. – KTC Sep 20 '08 at 23:05
@Leon you can use OpenSSL with a GPL app, it's an explicit FAQ entry. openssl.org/support/faq.html#LEGAL2 – Bruno Rohée Mar 29 '11 at 22:04
1  
The FAQ entry is pretty clear, it is definitely compatible on systems where OpenSSL is shipped by default, exactly like a GPL program can link to a proprietary libc on say, AIX. It may be more greyish on other systems, no way to know for sure until a court decision is reached on that. – Bruno Rohée Aug 10 '11 at 12:27
show 1 more comment
feedback

Crypto++ - They have NIST FIPS validated dll's for MSVC 6, 7.1, and 8 on top of the normal source code self built packages.

link|improve this answer
there's no question for me, the NIST seal-of-approval means a lot. Encryption is not one of those things you want to mess around with -- you HAVE to be able to trust that it's implemented correctly & doesn't have security holes. – Jason S Dec 16 '08 at 13:31
feedback

As an alternative, consider LibTomCrypt (http://libtomcrypt.com/download.html)

link|improve this answer
It's written in C, and is immediately usable within a C++ program. – KTC Sep 20 '08 at 23:06
feedback

Maybe Botan is an alternative? It is a C++ library with a BSD license that supports RSA algorithms.

link|improve this answer
feedback

Another alternative is libbeecrypt. A very mature product with assembler implementations on many platforms.

link|improve this answer
feedback

I have used OpenSSL in past and found it a great library for crypto APIs including AES, RSA, 3DES.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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