Home
last modified time | relevance | path

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

/system/core/adb/pairing_auth/tests/
Daes_128_gcm_test.cpp50 auto encrypted_size = alice.Encrypt(msg, sizeof(msg), encrypted, sizeof(encrypted)); in TEST() local
51 ASSERT_TRUE(encrypted_size.has_value()); in TEST()
52 ASSERT_GT(*encrypted_size, 0); in TEST()
54 ASSERT_GE(bob.DecryptedSize(*encrypted_size), sizeof(msg)); in TEST()
55 auto decrypted_size = bob.Decrypt(encrypted, *encrypted_size, out_buf, out_size); in TEST()