Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/commands/secure_env/
Dproxy_keymaster_context.h46 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 …]
Dhmac_serializable.cpp34 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()
Dencrypted_serializable.cpp35 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()
Dencrypted_serializable.h60 keymaster::Serializable& wrapped_; variable
Dhmac_serializable.h58 Serializable* wrapped_; variable