Home
last modified time | relevance | path

Searched refs:Keymaster1Engine (Results 1 – 15 of 15) sorted by relevance

/system/keymaster/legacy_support/
Dkeymaster1_engine.cpp40 Keymaster1Engine* Keymaster1Engine::instance_ = nullptr;
42 Keymaster1Engine::Keymaster1Engine(const keymaster1_device_t* keymaster1_device) in Keymaster1Engine() function in keymaster::Keymaster1Engine
45 Keymaster1Engine::duplicate_key_data, in Keymaster1Engine()
46 Keymaster1Engine::free_key_data)), in Keymaster1Engine()
48 Keymaster1Engine::duplicate_key_data, in Keymaster1Engine()
49 Keymaster1Engine::free_key_data)), in Keymaster1Engine()
62 Keymaster1Engine::~Keymaster1Engine() { in ~Keymaster1Engine()
78 keymaster_error_t Keymaster1Engine::GenerateKey(const AuthorizationSet& key_description, in GenerateKey()
98 keymaster_error_t Keymaster1Engine::ImportKey(const AuthorizationSet& key_description, in ImportKey()
123 keymaster_error_t Keymaster1Engine::DeleteKey(const KeymasterKeyBlob& blob) const { in DeleteKey()
[all …]
Decdsa_keymaster1_operation.h32 EcdsaKeymaster1WrappedOperation(keymaster_purpose_t purpose, const Keymaster1Engine* engine) in EcdsaKeymaster1WrappedOperation()
49 const Keymaster1Engine* engine_;
58 const Keymaster1Engine* engine) in EcdsaKeymaster1Operation()
106 EcdsaKeymaster1OperationFactory(keymaster_purpose_t purpose, const Keymaster1Engine* engine) in EcdsaKeymaster1OperationFactory()
118 const Keymaster1Engine* engine_;
Drsa_keymaster1_operation.h32 RsaKeymaster1WrappedOperation(keymaster_purpose_t purpose, const Keymaster1Engine* engine) in RsaKeymaster1WrappedOperation()
49 const Keymaster1Engine* engine_;
58 const Keymaster1Engine* engine) in RsaKeymaster1Operation()
106 RsaKeymaster1OperationFactory(keymaster_purpose_t purpose, const Keymaster1Engine* engine) in RsaKeymaster1OperationFactory()
118 const Keymaster1Engine* engine_;
Decdsa_keymaster1_operation.cpp32 Keymaster1Engine::KeyData* key_data = engine_->GetData(ecdsa_key); in Begin()
62 Keymaster1Engine::KeyData* key_data = engine_->GetData(ecdsa_key); in PrepareFinish()
78 Keymaster1Engine::KeyData* key_data = engine_->GetData(ecdsa_key); in GetError()
Drsa_keymaster1_operation.cpp32 Keymaster1Engine::KeyData* key_data = engine_->GetData(rsa_key); in Begin()
83 Keymaster1Engine::KeyData* key_data = engine_->GetData(rsa_key); in PrepareFinish()
99 Keymaster1Engine::KeyData* key_data = engine_->GetData(rsa_key); // key_data is owned by rsa in GetError()
Dec_keymaster1_key.cpp31 const Keymaster1Engine* engine) in EcdsaKeymaster1KeyFactory()
Drsa_keymaster1_key.cpp28 const Keymaster1Engine* engine) in RsaKeymaster1KeyFactory()
/system/keymaster/include/keymaster/legacy_support/
Dkeymaster1_engine.h37 class Keymaster1Engine {
43 explicit Keymaster1Engine(const keymaster1_device_t* keymaster1_device);
44 ~Keymaster1Engine();
87 Keymaster1Engine(const Keymaster1Engine&); // Uncopyable
88 void operator=(const Keymaster1Engine&); // Unassignable
118 static Keymaster1Engine* instance_;
Dec_keymaster1_key.h42 const Keymaster1Engine* engine);
63 const Keymaster1Engine* engine_;
Drsa_keymaster1_key.h43 const Keymaster1Engine* engine);
64 const Keymaster1Engine* engine_;
/system/keymaster/include/keymaster/contexts/
Dsoft_keymaster_context.h38 class Keymaster1Engine; variable
128 std::unique_ptr<Keymaster1Engine> km1_engine_;
Dkeymaster1_passthrough_context.h128 UniquePtr<Keymaster1Engine> km1_engine_;
Dpure_soft_keymaster_context.h35 class Keymaster1Engine; variable
/system/keymaster/contexts/
Dkeymaster1_passthrough_context.cpp38 km1_engine_(new Keymaster1Engine(dev)) { in Keymaster1PassthroughContext()
Dsoft_keymaster_context.cpp87 km1_engine_.reset(new Keymaster1Engine(keymaster1_device)); in SetHardwareDevice()