On Wed, Jun 24, 2009, Gaurav Shah wrote: > Hi All, > I am kind of novice to cryptography and presently trying to develope my > own Encryption/Decryption library. Many ppl suggested me to use AES-256 > algo for Encryption/Decryption. However, I do not find any documentation > about OpenSSL that provides me pointers to any OpenSSL API providing above > algo(AES-256) usage. > > Can someone help me to know the OpenSSL API and how to use it? >
Although there is an AES specific API it's use directly is strongly discouraged becuase it makes it hard to change the algorithm in future or redirect operations to hardware. The preferred interface to all ciphers is via EVP_Cipher*() and friends. Then you can select whatever cipher you want including AES. Steve. -- Dr Stephen N. Henson. Email, S/MIME and PGP keys: see homepage OpenSSL project core developer and freelance consultant. Homepage: http://www.drh-consultancy.demon.co.uk ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List openssl-users@openssl.org Automated List Manager majord...@openssl.org