Lines Matching refs:EVP_CIPHER
69 const EVP_CIPHER *EVP_get_cipherbynid(int nid) {
147 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
161 * attempted to avoid this if the same ENGINE and EVP_CIPHER could be
244 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
249 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
483 int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
505 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) {
585 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; }
587 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) {
591 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) {
595 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) {
599 uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher) {
603 uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher) {
607 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
615 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
620 EVP_CIPHER *cipher,
629 const EVP_CIPHER *EVP_get_cipherbyname(const char *name) {