OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rsa_method
(Results
1 - 15
of
15
) sorted by null
/external/boringssl/src/crypto/engine/
engine.c
32
RSA_METHOD
*
rsa_method
;
member in struct:engine_st
87
int ENGINE_set_RSA_method(ENGINE *engine, const
RSA_METHOD
*method,
89
return set_method((void **)&engine->
rsa_method
, method, method_size,
90
sizeof(
RSA_METHOD
));
93
RSA_METHOD
*ENGINE_get_RSA_method(const ENGINE *engine) {
94
return engine->
rsa_method
;
/external/boringssl/src/include/openssl/
engine.h
66
const
RSA_METHOD
*method,
68
OPENSSL_EXPORT
RSA_METHOD
*ENGINE_get_RSA_method(const ENGINE *engine);
base.h
212
typedef struct rsa_meth_st
RSA_METHOD
;
rsa.h
361
/* RSA_FLAG_OPAQUE specifies that this
RSA_METHOD
does not expose its key
466
RSA_METHOD
*meth;
/external/openssh/
ssh-pkcs11.c
70
RSA_METHOD
rsa_method
;
member in struct:pkcs11_key
309
const
RSA_METHOD
*def = RSA_get_default_method();
320
memcpy(&k11->
rsa_method
, def, sizeof(k11->
rsa_method
));
321
k11->
rsa_method
.name = "pkcs11";
322
k11->
rsa_method
.rsa_priv_enc = pkcs11_rsa_private_encrypt;
323
k11->
rsa_method
.rsa_priv_dec = pkcs11_rsa_private_decrypt;
324
k11->
rsa_method
.finish = pkcs11_rsa_finish;
325
RSA_set_method(rsa, &k11->
rsa_method
);
[
all
...]
ssh-pkcs11-client.c
146
static
RSA_METHOD
helper_rsa;
/system/keymaster/
keymaster0_engine.h
92
static const
RSA_METHOD
rsa_method_;
keymaster0_engine.cpp
42
const
RSA_METHOD
Keymaster0Engine::rsa_method_ = {
/system/security/keystore-engine/
rsa_meth.cpp
184
static
RSA_METHOD
keystore_rsa_meth = {
202
const
RSA_METHOD
* rsa_meth = RSA_PKCS1_SSLeay();
android_engine.cpp
47
extern const
RSA_METHOD
keystore_rsa_method;
/external/boringssl/src/crypto/rsa/
rsa.c
73
extern const
RSA_METHOD
RSA_default_method;
93
rsa->meth = (
RSA_METHOD
*) &RSA_default_method;
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py
[
all
...]
/external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp
[
all
...]
/external/wpa_supplicant_8/src/crypto/
tls_openssl.c
368
RSA_METHOD
*rsa_meth;
[
all
...]
Completed in 4112 milliseconds