Home
last modified time | relevance | path

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

/aosp_15_r20/trusty/user/app/sample/hwcryptohal/server/
Dcrypto_operation.rs713 let input_to_encrypt = "hello world1234"; in use_aes_key() localVariable
714 let mut input_data = input_to_encrypt.as_bytes().to_vec(); in use_aes_key()
774 expect_eq!(input_to_encrypt.len(), decrypted_data_size, "bad length for decrypted data"); in use_aes_key()
776 expect_eq!(input_to_encrypt, decrypted_str, "bad data decrypted"); in use_aes_key()
802 let input_to_encrypt = "test encryption string"; in process_aes_encrypt_decrypt_operations() localVariable
803 let mut input_data = input_to_encrypt.as_bytes().to_vec(); in process_aes_encrypt_decrypt_operations()
973 let original_msg = input_to_encrypt.to_owned() in process_aes_encrypt_decrypt_operations()