HomeSort by relevance Sort by last modified time
    Searched refs:Keymaster0Engine (Results 1 - 8 of 8) sorted by null

  /system/keymaster/
keymaster0_engine.h 34 /* Keymaster0Engine is a BoringSSL ENGINE that implements RSA & EC by forwarding the requested
36 class Keymaster0Engine {
39 * Create a Keymaster0Engine, wrapping the provided keymaster0_device. The engine takes
42 explicit Keymaster0Engine(const keymaster0_device_t* keymaster0_device);
43 ~Keymaster0Engine();
67 Keymaster0Engine(const Keymaster0Engine&); // Uncopyable
68 void operator=(const Keymaster0Engine&); // Unassignable
98 static Keymaster0Engine* instance_;
ec_keymaster0_key.h 28 class Keymaster0Engine;
39 EcdsaKeymaster0KeyFactory(const SoftKeymasterContext* context, const Keymaster0Engine* engine);
58 const Keymaster0Engine* engine_;
rsa_keymaster0_key.h 28 class Keymaster0Engine;
39 RsaKeymaster0KeyFactory(const SoftKeymasterContext* context, const Keymaster0Engine* engine);
58 const Keymaster0Engine* engine_;
keymaster0_engine.cpp 24 #define LOG_TAG "Keymaster0Engine"
40 Keymaster0Engine* Keymaster0Engine::instance_ = nullptr;
42 Keymaster0Engine::Keymaster0Engine(const keymaster0_device_t* keymaster0_device)
54 rsa_method_.private_transform = Keymaster0Engine::rsa_private_transform;
64 ecdsa_method_.sign = Keymaster0Engine::ecdsa_sign;
71 Keymaster0Engine::~Keymaster0Engine() {
79 bool Keymaster0Engine::GenerateRsaKey(uint64_t public_exponent, uint32_t public_modulus
    [all...]
ec_keymaster0_key.cpp 33 const Keymaster0Engine* engine)
rsa_keymaster0_key.cpp 33 const Keymaster0Engine* engine)
soft_keymaster_context.cpp 326 km0_engine_.reset(new Keymaster0Engine(keymaster0_device));
    [all...]
  /system/keymaster/include/keymaster/
soft_keymaster_context.h 32 class Keymaster0Engine;
117 std::unique_ptr<Keymaster0Engine> km0_engine_;

Completed in 120 milliseconds