Searched refs:wrapped_ (Results 1 – 5 of 5) sorted by relevance
/device/google/cuttlefish/host/commands/secure_env/ |
D | proxy_keymaster_context.h | 46 ProxyKeymasterContext(KeymasterContext& wrapped) : wrapped_(wrapped) {} in ProxyKeymasterContext() 50 return wrapped_.GetKmVersion(); in GetKmVersion() 55 return wrapped_.SetSystemVersion(os_version, os_patchlevel); in SetSystemVersion() 59 return wrapped_.GetSystemVersion(os_version, os_patchlevel); in GetSystemVersion() 64 return wrapped_.GetKeyFactory(algorithm); in GetKeyFactory() 69 return wrapped_.GetOperationFactory(algorithm, purpose); in GetOperationFactory() 73 return wrapped_.GetSupportedAlgorithms(algorithms_count); in GetSupportedAlgorithms() 80 return wrapped_.UpgradeKeyBlob(key_to_upgrade, upgrade_params, in UpgradeKeyBlob() 88 return wrapped_.ParseKeyBlob(blob, additional_params, key); in ParseKeyBlob() 93 return wrapped_.AddRngEntropy(buf, length); in AddRngEntropy() [all …]
|
D | hmac_serializable.cpp | 34 wrapped_(wrapped), in HmacSerializable() 39 auto data_size = sizeof(uint32_t) + wrapped_->SerializedSize(); in SerializedSize() 44 auto wrapped_size = wrapped_->SerializedSize(); in Serialize() 47 buf = wrapped_->Serialize(buf, end); in Serialize() 128 return wrapped_->Deserialize( in Deserialize()
|
D | encrypted_serializable.cpp | 35 wrapped_(wrapped) { in EncryptedSerializable() 171 auto encrypted_size = RoundUpToBlockSize(wrapped_.SerializedSize()); in SerializedSize() 207 auto wrapped_size = wrapped_.SerializedSize(); in Serialize() 212 auto next_buf = wrapped_.Serialize(unencrypted_buf, unencrypted_buf_end); in Serialize() 309 if (!wrapped_.Deserialize( in Deserialize()
|
D | encrypted_serializable.h | 60 keymaster::Serializable& wrapped_; variable
|
D | hmac_serializable.h | 58 Serializable* wrapped_; variable
|