Home | History | Annotate | Download | only in evp

Lines Matching defs:cipher

319 /* Values for cipher flags */
329 /* Set if variable length cipher */
331 /* Set if the iv handling should be done by the cipher itself */
333 /* Set if the cipher's init() function should be called if key is NULL */
335 /* Call ctrl() to init cipher parameters */
341 /* cipher handles random key generation */
343 /* cipher has its own additional copying logic */
364 const EVP_CIPHER *cipher;
370 const EVP_CIPHER *cipher;
371 ENGINE *engine; /* functional reference if 'cipher' is ENGINE-provided */
381 int key_len; /* May change for variable length cipher */
404 ASN1_TYPE *param, const EVP_CIPHER *cipher,
446 int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
448 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
449 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
450 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
451 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher);
537 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
539 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
546 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
548 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
555 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
558 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
817 int EVP_add_cipher(const EVP_CIPHER *cipher);
912 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md,
922 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md,
939 int EVP_PBE_alg_add(int nid, const EVP_CIPHER *cipher, const EVP_MD *md,