It doesn't seem to be in the man pages, but it's in the header file.
I have only written some sample code, so I have to go back and review a
bit.
Check openssl/evp.h include file.

const EVP_CIPHER *EVP_aes_256_ecb(void);
const EVP_CIPHER *EVP_aes_256_cbc(void);
const EVP_CIPHER *EVP_aes_256_cfb1(void);
const EVP_CIPHER *EVP_aes_256_cfb8(void);
const EVP_CIPHER *EVP_aes_256_cfb128(void);
# define EVP_aes_256_cfb EVP_aes_256_cfb128
const EVP_CIPHER *EVP_aes_256_ofb(void);

brian

On Wed, Dec 31, 2008 at 09:55:41AM +0200, Dayagi Yaron wrote:
>    Hello,
> 
>    Does OPENSSL support AES? Specificaly, via the evp API.
> 
>    The documentation does not indicate it is supported but I saw a few TLS
>    functions witch use AES.
> 
>    Tx,
> 
>    Yaron.

-- 
Brian Lavender
http://www.brie.com/brian/
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [email protected]
Automated List Manager                           [email protected]

Reply via email to