Searched defs:cipher (Results 1 - 3 of 3) sorted by path

/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/security/keystore/
H A Dblob.cpp69 const EVP_CIPHER* cipher = EVP_aes_128_gcm(); local
72 EVP_EncryptInit_ex(ctx.get(), cipher, nullptr /* engine */, key, iv);
101 const EVP_CIPHER* cipher = EVP_aes_128_gcm(); local
104 EVP_DecryptInit_ex(ctx.get(), cipher, nullptr /* engine */, key, iv);
/system/tpm/attestation/common/
H A Dcrypto_utility_impl.cc89 LOG(ERROR) << __func__ << ": Failed to seal cipher key.";
332 const EVP_CIPHER* cipher = EVP_aes_256_cbc(); local
335 if (!EVP_EncryptInit_ex(&encryption_context, cipher, nullptr, key_buffer,
382 const EVP_CIPHER* cipher = EVP_aes_256_cbc(); local
385 if (!EVP_DecryptInit_ex(&decryption_context, cipher, nullptr, key_buffer,

Completed in 145 milliseconds