Home | History | Annotate | Download | only in test

Lines Matching refs:cipher

28     const EVP_CIPHER *cipher;
53 cipher = EVP_aes_128_cbc();
57 cipher = EVP_aes_192_cbc();
61 cipher = EVP_aes_256_cbc();
65 cipher = NULL;
70 if (!TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 1))
80 || !TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 0))
100 const EVP_CIPHER * cipher;
105 cipher = ENGINE_get_cipher(e, NID_aes_128_cbc);
107 if (cipher != NULL && ctx != NULL)
108 ret = EVP_EncryptInit_ex(ctx, cipher, e, NULL, NULL);