vote up 3 vote down star
2

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

flag

77% accept rate

8 Answers

vote up 2 vote down check

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|flag
1  
This library does not use padding. That is a significant omission. – Accipitridae May 19 at 17:10
vote up 2 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 7 vote down

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|flag
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
vote up 2 vote down

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

link|flag
It's written in C, and is immediately usable within a C++ program. – KTC Sep 20 '08 at 23:06
vote up 9 vote down

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|flag
It doesn't appear to be C++ for one. – dvorak Sep 20 '08 at 22:52
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
vote up 7 vote down

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

http://www.openssl.org

link|flag
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
1  
It's written in C, and is immediately usable within a C++ program. – KTC Sep 20 '08 at 23:05

Your Answer

Get an OpenID
or

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