Lines Matching refs:cipher
31 const EVP_CIPHER *cipher;
68 cipher = EVP_aes_128_cbc();
72 cipher = EVP_aes_192_cbc();
76 cipher = EVP_aes_256_cbc();
80 cipher = NULL;
85 if (!TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 1))
95 || !TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 0))
115 const EVP_CIPHER * cipher;
120 cipher = ENGINE_get_cipher(e, NID_aes_128_cbc);
122 if (cipher != NULL && ctx != NULL)
123 ret = EVP_EncryptInit_ex(ctx, cipher, e, NULL, NULL);