Home
last modified time | relevance | path

Searched refs:decrypted_data (Results 1 – 2 of 2) sorted by relevance

/hardware/interfaces/security/see/hwcrypto/aidl/vts/functional/
Dhwcrypto_operations_tests.rs119 let CryptoOperation::DataOutput(OperationData::DataBuffer(decrypted_data)) = in test_hwcrypto_key_operations_simple_aes_test()
125 String::from_utf8(decrypted_data).expect("couldn't decode received message"); in test_hwcrypto_key_operations_simple_aes_test()
273 let CryptoOperation::DataOutput(OperationData::DataBuffer(decrypted_data)) = in test_hwcrypto_key_operations_aes_simple_cbcs_test_non_block_multiple()
279 String::from_utf8(decrypted_data).expect("couldn't decode received message"); in test_hwcrypto_key_operations_aes_simple_cbcs_test_non_block_multiple()
396 let CryptoOperation::DataOutput(OperationData::DataBuffer(decrypted_data)) = in test_hwcrypto_key_operations_aes_simple_all_encrypted_cbcs_test()
402 String::from_utf8(decrypted_data).expect("couldn't decode received message"); in test_hwcrypto_key_operations_aes_simple_all_encrypted_cbcs_test()
580 let CryptoOperation::DataOutput(OperationData::DataBuffer(decrypted_data)) = in aes_simple_cbcs_test()
586 String::from_utf8(decrypted_data).expect("couldn't decode received message"); in aes_simple_cbcs_test()
/hardware/interfaces/security/keymint/aidl/vts/functional/
DKeyMintAidlTestBase.cpp1172 vector<uint8_t> decrypted_data(key_len); in LocalVerifyMessage() local
1175 decrypted_data.data(), rsa.get(), openssl_padding); in LocalVerifyMessage()
1178 const uint8_t* compare_pos = decrypted_data.data(); in LocalVerifyMessage()