Home
last modified time | relevance | path

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

/system/core/adb/pairing_auth/
Daes_128_gcm.cpp56 << ", out_len_needed=" << EncryptedSize(in_len) << ")"; in Encrypt()
80 size_t Aes128Gcm::EncryptedSize(size_t size) { in EncryptedSize() function in adb::pairing::Aes128Gcm
Dpairing_auth.cpp169 Data encrypted(cipher_->EncryptedSize(data.size())); in Encrypt()
199 return cipher_->EncryptedSize(len); in SafeEncryptedSize()
/system/core/adb/pairing_auth/include/adb/pairing/
Daes_128_gcm.h51 size_t EncryptedSize(size_t size);
/system/core/adb/pairing_auth/tests/
Daes_128_gcm_test.cpp49 ASSERT_GE(alice.EncryptedSize(sizeof(msg)), sizeof(msg)); in TEST()