Home
last modified time | relevance | path

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

/aosp12/packages/modules/adb/pairing_auth/
H A Dpairing_auth.cpp85 std::unique_ptr<Aes128Gcm> cipher_; member
139 CHECK(!cipher_); in InitCipher()
159 cipher_.reset(new Aes128Gcm(key_material, key_material_len)); in InitCipher()
165 CHECK(cipher_); in Encrypt()
169 Data encrypted(cipher_->EncryptedSize(data.size())); in Encrypt()
181 CHECK(cipher_); in Decrypt()
185 Data decrypted(cipher_->DecryptedSize(data.size())); in Decrypt()
198 CHECK(cipher_); in SafeEncryptedSize()
199 return cipher_->EncryptedSize(len); in SafeEncryptedSize()
203 CHECK(cipher_); in SafeDecryptedSize()
[all …]
/aosp12/system/core/fs_mgr/libdm/include/libdm/
H A Ddm_target.h256 cipher_(cipher), in DmTargetCrypt()
272 std::string cipher_;
288 cipher_(cipher), in DmTargetDefaultKey()
303 std::string cipher_; variable
/aosp12/system/core/fs_mgr/libdm/
H A Ddm_target.cpp234 cipher_, in GetParameterString()
260 argv.emplace_back(cipher_); in GetParameterString()