I have this piece of test code that uses Blowfish (openssl/blowfish.h) to encrypt, then decrypt a string. But when it comes out again, it hasn\'t been decrypted properly. Can an
From BF_ecb_encrypt man page:
BF_ecb_encrypt
It encrypts or decrypts the first 64 bits of in using the key key, putting the result in out.
Read the docs.