OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EVP_PKEY_CTX_new
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/boringssl/src/crypto/evp/
evp_ctx.c
90
static EVP_PKEY_CTX *
evp_pkey_ctx_new
(EVP_PKEY *pkey, ENGINE *e, int id) {
function
104
OPENSSL_PUT_ERROR(EVP,
evp_pkey_ctx_new
, EVP_R_UNSUPPORTED_ALGORITHM);
112
OPENSSL_PUT_ERROR(EVP,
evp_pkey_ctx_new
, ERR_R_MALLOC_FAILURE);
135
EVP_PKEY_CTX *
EVP_PKEY_CTX_new
(EVP_PKEY *pkey, ENGINE *e) {
136
return
evp_pkey_ctx_new
(pkey, e, -1);
140
return
evp_pkey_ctx_new
(NULL, e, id);
/external/openssl/crypto/evp/
pmeth_lib.c
297
EVP_PKEY_CTX *
EVP_PKEY_CTX_new
(EVP_PKEY *pkey, ENGINE *e)
Completed in 86 milliseconds