Lines Matching defs:EVP_Cipher
79 * @section evp_cipher EVP Cipher
81 * The use of EVP_CipherInit_ex() and EVP_Cipher() is pretty easy to
525 EVP_CIPHER_block_size(const EVP_CIPHER *c)
541 EVP_CIPHER_key_length(const EVP_CIPHER *c)
557 EVP_CIPHER_iv_length(const EVP_CIPHER *c)
634 * Return the EVP_CIPHER for a EVP_CIPHER_CTX context.
638 * @return the EVP_CIPHER pointer.
643 const EVP_CIPHER *
777 EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *c, ENGINE *engine,
847 * See @ref evp_cipher for an example how to use this function.
933 * See @ref evp_cipher for an example how to use this function.
978 EVP_Cipher(EVP_CIPHER_CTX *ctx, void *out, const void *in,size_t size)
1015 * @return the null EVP_CIPHER pointer.
1020 const EVP_CIPHER *
1023 static const EVP_CIPHER enc_null = {
1044 * @return the RC2 EVP_CIPHER pointer.
1049 const EVP_CIPHER *
1059 * @return the RC2 EVP_CIPHER pointer.
1064 const EVP_CIPHER *
1074 * @return the RC2 EVP_CIPHER pointer.
1079 const EVP_CIPHER *
1089 * @return the RC4 EVP_CIPHER pointer.
1094 const EVP_CIPHER *
1104 * @return the RC4-40 EVP_CIPHER pointer.
1109 const EVP_CIPHER *
1119 * @return the DES-CBC EVP_CIPHER pointer.
1124 const EVP_CIPHER *
1134 * @return the DES-EDE3-CBC EVP_CIPHER pointer.
1139 const EVP_CIPHER *
1149 * @return the AES-128 EVP_CIPHER pointer.
1154 const EVP_CIPHER *
1164 * @return the AES-192 EVP_CIPHER pointer.
1169 const EVP_CIPHER *
1179 * @return the AES-256 EVP_CIPHER pointer.
1184 const EVP_CIPHER *
1194 * @return the AES-128 EVP_CIPHER pointer.
1199 const EVP_CIPHER *
1209 * @return the AES-192 EVP_CIPHER pointer.
1214 const EVP_CIPHER *
1224 * @return the AES-256 EVP_CIPHER pointer.
1229 const EVP_CIPHER *
1239 * @return the Camellia-128 EVP_CIPHER pointer.
1244 const EVP_CIPHER *
1254 * @return the Camellia-198 EVP_CIPHER pointer.
1259 const EVP_CIPHER *
1269 * @return the Camellia-256 EVP_CIPHER pointer.
1274 const EVP_CIPHER *
1287 const EVP_CIPHER *(*func)(void);
1306 * @return the selected EVP_CIPHER pointer or NULL if not found.
1311 const EVP_CIPHER *
1352 EVP_BytesToKey(const EVP_CIPHER *type,
1432 * Generate a random key for the specificed EVP_CIPHER.