OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Keymaster0Engine
(Results
1 - 2
of
2
) sorted by null
/system/keymaster/include/keymaster/legacy_support/
keymaster0_engine.h
35
/*
Keymaster0Engine
is a BoringSSL ENGINE that implements RSA & EC by forwarding the requested
37
class
Keymaster0Engine
{
40
* Create a
Keymaster0Engine
, wrapping the provided keymaster0_device. The engine takes
43
explicit
Keymaster0Engine
(const keymaster0_device_t* keymaster0_device);
44
~
Keymaster0Engine
();
68
Keymaster0Engine
(const
Keymaster0Engine
&); // Uncopyable
69
void operator=(const
Keymaster0Engine
&); // Unassignable
99
static
Keymaster0Engine
* instance_;
/system/keymaster/legacy_support/
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
...]
Completed in 192 milliseconds