Searched defs:cipher (Results 1 - 2 of 2) sorted by relevance

/system/keymaster/
H A Daes_operation.cpp257 const EVP_CIPHER* cipher; local
262 cipher = EVP_aes_128_ecb();
265 cipher = EVP_aes_192_ecb();
268 cipher = EVP_aes_256_ecb();
277 cipher = EVP_aes_128_cbc();
280 cipher = EVP_aes_192_cbc();
283 cipher = EVP_aes_256_cbc();
292 cipher = EVP_aes_128_ctr();
295 cipher = EVP_aes_192_ctr();
298 cipher
[all...]
/system/tpm/attestation/common/
H A Dcrypto_utility_impl.cc89 LOG(ERROR) << __func__ << ": Failed to seal cipher key.";
333 const EVP_CIPHER* cipher = EVP_aes_256_cbc(); local
336 if (!EVP_EncryptInit_ex(&encryption_context, cipher, nullptr, key_buffer,
383 const EVP_CIPHER* cipher = EVP_aes_256_cbc(); local
386 if (!EVP_DecryptInit_ex(&decryption_context, cipher, nullptr, key_buffer,

Completed in 3656 milliseconds