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