Home
last modified time | relevance | path

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

/device/google/cuttlefish/guest/hals/keymaster/remote/
Dremote_keymaster.cpp25 RemoteKeymaster::RemoteKeymaster(cuttlefish::KeymasterChannel* channel) in RemoteKeymaster() function in keymaster::RemoteKeymaster
28 RemoteKeymaster::~RemoteKeymaster() { in ~RemoteKeymaster()
31 void RemoteKeymaster::ForwardCommand(AndroidKeymasterCommand command, const Serializable& req, in ForwardCommand()
53 bool RemoteKeymaster::Initialize() { in Initialize()
70 void RemoteKeymaster::GetVersion(const GetVersionRequest& request, GetVersionResponse* response) { in GetVersion()
74 void RemoteKeymaster::SupportedAlgorithms(const SupportedAlgorithmsRequest& request, in SupportedAlgorithms()
79 void RemoteKeymaster::SupportedBlockModes(const SupportedBlockModesRequest& request, in SupportedBlockModes()
84 void RemoteKeymaster::SupportedPaddingModes(const SupportedPaddingModesRequest& request, in SupportedPaddingModes()
89 void RemoteKeymaster::SupportedDigests(const SupportedDigestsRequest& request, in SupportedDigests()
94 void RemoteKeymaster::SupportedImportFormats(const SupportedImportFormatsRequest& request, in SupportedImportFormats()
[all …]
Dremote_keymaster.h26 class RemoteKeymaster {
33 RemoteKeymaster(cuttlefish::KeymasterChannel*);
34 ~RemoteKeymaster();
Dservice4.cpp45 auto remoteKeymaster = new keymaster::RemoteKeymaster(&keymasterChannel); in main()
Dremote_keymaster4_device.h50 explicit RemoteKeymaster4Device(RemoteKeymaster* impl);
106 std::unique_ptr<::keymaster::RemoteKeymaster> impl_;
Dremote_keymaster4_device.cpp263 RemoteKeymaster4Device::RemoteKeymaster4Device(RemoteKeymaster* impl) : impl_(impl) {} in RemoteKeymaster4Device()