Lines Matching defs:cipher

322 /* Values for cipher flags */
336 /* Set if variable length cipher */
338 /* Set if the iv handling should be done by the cipher itself */
340 /* Set if the cipher's init() function should be called if key is NULL */
342 /* Call ctrl() to init cipher parameters */
348 /* cipher handles random key generation */
350 /* cipher has its own additional copying logic */
358 /* Allow non FIPS cipher in FIPS mode */
387 /* AEAD cipher deduces payload length and returns number of bytes
407 const EVP_CIPHER *cipher;
413 const EVP_CIPHER *cipher;
414 ENGINE *engine; /* functional reference if 'cipher' is ENGINE-provided */
424 int key_len; /* May change for variable length cipher */
447 ASN1_TYPE *param, const EVP_CIPHER *cipher,
489 int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
491 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
492 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
493 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
494 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher);
580 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
582 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
589 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
591 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
598 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
601 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
869 int EVP_add_cipher(const EVP_CIPHER *cipher);
965 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md,
975 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md,
992 int EVP_PBE_alg_add(int nid, const EVP_CIPHER *cipher, const EVP_MD *md,