Search code examples
c++encryptionblowfish

a standard blowfish API for C++?


I have searched the Internet but it seems as though there are many implementations, some of which do not work correctly, is there a standard or working API for C++ i can use to decrypt blowfish cyphered strings?

thanks in advance


Solution

  • The OpenSSL crypto library has blowfish support. It is recommended to use the OpenSSL EVP system rather than the calls directly.