Searched refs:RemoteKeymaster (Results 1 – 5 of 5) sorted by relevance
25 RemoteKeymaster::RemoteKeymaster(cuttlefish::KeymasterChannel* channel) in RemoteKeymaster() function in keymaster::RemoteKeymaster28 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 …]
26 class RemoteKeymaster {33 RemoteKeymaster(cuttlefish::KeymasterChannel*);34 ~RemoteKeymaster();
45 auto remoteKeymaster = new keymaster::RemoteKeymaster(&keymasterChannel); in main()
50 explicit RemoteKeymaster4Device(RemoteKeymaster* impl);106 std::unique_ptr<::keymaster::RemoteKeymaster> impl_;
263 RemoteKeymaster4Device::RemoteKeymaster4Device(RemoteKeymaster* impl) : impl_(impl) {} in RemoteKeymaster4Device()