Home
last modified time | relevance | path

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

/packages/modules/adb/pairing_auth/
Daes_128_gcm.cpp58 << ", out_len_needed=" << EncryptedSize(in_len) << ")"; in Encrypt()
82 size_t Aes128Gcm::EncryptedSize(size_t size) { in EncryptedSize() function in adb::pairing::Aes128Gcm
Dpairing_auth.cpp171 Data encrypted(cipher_->EncryptedSize(data.size())); in Encrypt()
201 return cipher_->EncryptedSize(len); in SafeEncryptedSize()
/packages/modules/adb/pairing_auth/include/adb/pairing/
Daes_128_gcm.h51 size_t EncryptedSize(size_t size);
/packages/modules/adb/pairing_auth/tests/
Daes_128_gcm_test.cpp49 ASSERT_GE(alice.EncryptedSize(sizeof(msg)), sizeof(msg)); in TEST()