I am developing a win32 application and I would like to use an RSA encryption library. What Library would you recommend?
|
feedback
|
|
I use the following library: http://www.efgh.com/software/rsa.htm It's public domain, compact, self contained, and does the work well. | |||||||
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 | |||||||||
feedback
|
|
I think OpenSSL is a good choice. It's well-maintained, and the price is right :) | |||||||||||||||
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. | |||
feedback
|
|
As an alternative, consider LibTomCrypt (http://libtomcrypt.com/download.html) | |||
|
feedback
|
|
Maybe Botan is an alternative? It is a C++ library with a BSD license that supports RSA algorithms. | |||
|
feedback
|
|
Another alternative is libbeecrypt. A very mature product with assembler implementations on many platforms. | |||
|
feedback
|
|
I have used OpenSSL in past and found it a great library for crypto APIs including AES, RSA, 3DES. | |||
|
feedback
|