/external/chromium_org/third_party/boringssl/src/crypto/evp/ |
D | internal.h | 125 typedef int EVP_PKEY_gen_cb(EVP_PKEY_CTX *ctx); 186 int (*init)(EVP_PKEY_CTX *ctx); 187 int (*copy)(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src); 188 void (*cleanup)(EVP_PKEY_CTX *ctx); 190 int (*paramgen_init)(EVP_PKEY_CTX *ctx); 191 int (*paramgen)(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey); 193 int (*keygen_init)(EVP_PKEY_CTX *ctx); 194 int (*keygen)(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey); 196 int (*sign_init)(EVP_PKEY_CTX *ctx); 197 int (*sign)(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, [all …]
|
D | evp_ctx.c | 90 static EVP_PKEY_CTX *evp_pkey_ctx_new(EVP_PKEY *pkey, ENGINE *e, int id) { in evp_pkey_ctx_new() 91 EVP_PKEY_CTX *ret; in evp_pkey_ctx_new() 110 ret = OPENSSL_malloc(sizeof(EVP_PKEY_CTX)); in evp_pkey_ctx_new() 115 memset(ret, 0, sizeof(EVP_PKEY_CTX)); in evp_pkey_ctx_new() 135 EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e) { in EVP_PKEY_CTX_new() 139 EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e) { in EVP_PKEY_CTX_new_id() 143 void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx) { in EVP_PKEY_CTX_free() 159 EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *pctx) { in EVP_PKEY_CTX_dup() 160 EVP_PKEY_CTX *rctx; in EVP_PKEY_CTX_dup() 166 rctx = OPENSSL_malloc(sizeof(EVP_PKEY_CTX)); in EVP_PKEY_CTX_dup() [all …]
|
D | p_rsa.c | 90 static int pkey_rsa_init(EVP_PKEY_CTX *ctx) { in pkey_rsa_init() 107 static int pkey_rsa_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) { in pkey_rsa_copy() 139 static void pkey_rsa_cleanup(EVP_PKEY_CTX *ctx) { in pkey_rsa_cleanup() 158 static int setup_tbuf(RSA_PKEY_CTX *ctx, EVP_PKEY_CTX *pk) { in setup_tbuf() 169 static int pkey_rsa_sign(EVP_PKEY_CTX *ctx, uint8_t *sig, size_t *siglen, in pkey_rsa_sign() 224 static int pkey_rsa_verify(EVP_PKEY_CTX *ctx, const uint8_t *sig, in pkey_rsa_verify() 263 static int pkey_rsa_encrypt(EVP_PKEY_CTX *ctx, uint8_t *out, size_t *outlen, in pkey_rsa_encrypt() 294 static int pkey_rsa_decrypt(EVP_PKEY_CTX *ctx, uint8_t *out, in pkey_rsa_decrypt() 359 static int pkey_rsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) { in pkey_rsa_ctrl() 492 static int pkey_rsa_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) { in pkey_rsa_keygen() [all …]
|
D | p_hmac.c | 73 static int pkey_hmac_init(EVP_PKEY_CTX *ctx) { in pkey_hmac_init() 88 static int pkey_hmac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) { in pkey_hmac_copy() 109 static void pkey_hmac_cleanup(EVP_PKEY_CTX *ctx) { in pkey_hmac_cleanup() 123 static int pkey_hmac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) { in pkey_hmac_keygen() 144 static int hmac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx) { in hmac_signctx_init() 153 static int hmac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, in hmac_signctx() 174 static int pkey_hmac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) { in pkey_hmac_ctrl()
|
D | p_ec.c | 95 static int pkey_ec_init(EVP_PKEY_CTX *ctx) { in pkey_ec_init() 110 static int pkey_ec_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) { in pkey_ec_copy() 147 static void pkey_ec_cleanup(EVP_PKEY_CTX *ctx) { in pkey_ec_cleanup() 165 static int pkey_ec_sign(EVP_PKEY_CTX *ctx, uint8_t *sig, size_t *siglen, in pkey_ec_sign() 192 static int pkey_ec_verify(EVP_PKEY_CTX *ctx, const uint8_t *sig, size_t siglen, in pkey_ec_verify() 206 static int pkey_ec_derive(EVP_PKEY_CTX *ctx, uint8_t *key, in pkey_ec_derive() 242 static int pkey_ec_kdf_derive(EVP_PKEY_CTX *ctx, uint8_t *key, in pkey_ec_kdf_derive() 282 static int pkey_ec_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) { in pkey_ec_ctrl() 365 static int pkey_ec_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) { in pkey_ec_paramgen() 387 static int pkey_ec_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) { in pkey_ec_keygen()
|
D | digestsign.c | 79 static int do_sigver_init(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, in do_sigver_init() 130 int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, const EVP_MD *type, in EVP_DigestSignInit() 135 int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, in EVP_DigestVerifyInit()
|
D | sign.c | 83 EVP_PKEY_CTX *pkctx = NULL; 135 EVP_PKEY_CTX *pkctx = NULL;
|
/external/openssl/crypto/evp/ |
D | pmeth_lib.c | 127 static EVP_PKEY_CTX *int_ctx_new(EVP_PKEY *pkey, ENGINE *e, int id) in int_ctx_new() 129 EVP_PKEY_CTX *ret; in int_ctx_new() 168 ret = OPENSSL_malloc(sizeof(EVP_PKEY_CTX)); in int_ctx_new() 297 EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e) in EVP_PKEY_CTX_new() 302 EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e) in EVP_PKEY_CTX_new_id() 307 EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *pctx) in EVP_PKEY_CTX_dup() 309 EVP_PKEY_CTX *rctx; in EVP_PKEY_CTX_dup() 320 rctx = OPENSSL_malloc(sizeof(EVP_PKEY_CTX)); in EVP_PKEY_CTX_dup() 365 void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx) in EVP_PKEY_CTX_free() 384 int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, in EVP_PKEY_CTX_ctrl() [all …]
|
D | evp_locl.h | 296 int (*init)(EVP_PKEY_CTX *ctx); 297 int (*copy)(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src); 298 void (*cleanup)(EVP_PKEY_CTX *ctx); 300 int (*paramgen_init)(EVP_PKEY_CTX *ctx); 301 int (*paramgen)(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey); 303 int (*keygen_init)(EVP_PKEY_CTX *ctx); 304 int (*keygen)(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey); 306 int (*sign_init)(EVP_PKEY_CTX *ctx); 307 int (*sign)(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, 310 int (*verify_init)(EVP_PKEY_CTX *ctx); [all …]
|
D | evp.h | 272 EVP_PKEY_CTX *pctx; 615 int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, 620 int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, 1122 EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e); 1123 EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e); 1124 EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx); 1125 void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx); 1127 int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, 1129 int EVP_PKEY_CTX_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, 1132 int EVP_PKEY_CTX_get_operation(EVP_PKEY_CTX *ctx); [all …]
|
D | pmeth_gn.c | 67 int EVP_PKEY_paramgen_init(EVP_PKEY_CTX *ctx) in EVP_PKEY_paramgen_init() 85 int EVP_PKEY_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey) in EVP_PKEY_paramgen() 116 int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx) in EVP_PKEY_keygen_init() 134 int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey) in EVP_PKEY_keygen() 165 void EVP_PKEY_CTX_set_cb(EVP_PKEY_CTX *ctx, EVP_PKEY_gen_cb *cb) in EVP_PKEY_CTX_set_cb() 170 EVP_PKEY_gen_cb *EVP_PKEY_CTX_get_cb(EVP_PKEY_CTX *ctx) in EVP_PKEY_CTX_get_cb() 181 EVP_PKEY_CTX *ctx = gcb->arg; in trans_cb() 187 void evp_pkey_set_cb_translate(BN_GENCB *cb, EVP_PKEY_CTX *ctx) in evp_pkey_set_cb_translate() 192 int EVP_PKEY_CTX_get_keygen_info(EVP_PKEY_CTX *ctx, int idx) in EVP_PKEY_CTX_get_keygen_info() 204 EVP_PKEY_CTX *mac_ctx = NULL; in EVP_PKEY_new_mac_key()
|
D | pmeth_fn.c | 82 int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx) in EVP_PKEY_sign_init() 100 int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, in EVP_PKEY_sign() 119 int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx) in EVP_PKEY_verify_init() 137 int EVP_PKEY_verify(EVP_PKEY_CTX *ctx, in EVP_PKEY_verify() 155 int EVP_PKEY_verify_recover_init(EVP_PKEY_CTX *ctx) in EVP_PKEY_verify_recover_init() 173 int EVP_PKEY_verify_recover(EVP_PKEY_CTX *ctx, in EVP_PKEY_verify_recover() 192 int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx) in EVP_PKEY_encrypt_init() 210 int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, in EVP_PKEY_encrypt() 229 int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx) in EVP_PKEY_decrypt_init() 247 int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, in EVP_PKEY_decrypt() [all …]
|
D | m_sigver.c | 66 static int do_sigver_init(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, in do_sigver_init() 119 int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, in EVP_DigestSignInit() 125 int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, in EVP_DigestVerifyInit()
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
D | evp.h | 229 OPENSSL_EXPORT int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, 260 OPENSSL_EXPORT int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, 394 OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e); 400 OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e); 403 OPENSSL_EXPORT void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx); 407 OPENSSL_EXPORT EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx); 410 OPENSSL_EXPORT EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx); 413 OPENSSL_EXPORT void EVP_PKEY_CTX_set_app_data(EVP_PKEY_CTX *ctx, void *data); 418 OPENSSL_EXPORT void *EVP_PKEY_CTX_get_app_data(EVP_PKEY_CTX *ctx); 429 OPENSSL_EXPORT int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, [all …]
|
/external/openssl/include/openssl/ |
D | evp.h | 272 EVP_PKEY_CTX *pctx; 615 int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, 620 int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, 1122 EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e); 1123 EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e); 1124 EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx); 1125 void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx); 1127 int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, 1129 int EVP_PKEY_CTX_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, 1132 int EVP_PKEY_CTX_get_operation(EVP_PKEY_CTX *ctx); [all …]
|
/external/openssl/crypto/cmac/ |
D | cm_pmeth.c | 63 static int pkey_cmac_init(EVP_PKEY_CTX *ctx) in pkey_cmac_init() 72 static int pkey_cmac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) in pkey_cmac_copy() 81 static void pkey_cmac_cleanup(EVP_PKEY_CTX *ctx) in pkey_cmac_cleanup() 86 static int pkey_cmac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_cmac_keygen() 109 static int cmac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx) in cmac_signctx_init() 116 static int cmac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, in cmac_signctx() 122 static int pkey_cmac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) in pkey_cmac_ctrl() 155 static int pkey_cmac_ctrl_str(EVP_PKEY_CTX *ctx, in pkey_cmac_ctrl_str()
|
/external/openssl/crypto/dh/ |
D | dh_pmeth.c | 80 static int pkey_dh_init(EVP_PKEY_CTX *ctx) in pkey_dh_init() 97 static int pkey_dh_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) in pkey_dh_copy() 110 static void pkey_dh_cleanup(EVP_PKEY_CTX *ctx) in pkey_dh_cleanup() 117 static int pkey_dh_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) in pkey_dh_ctrl() 143 static int pkey_dh_ctrl_str(EVP_PKEY_CTX *ctx, in pkey_dh_ctrl_str() 161 static int pkey_dh_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_dh_paramgen() 186 static int pkey_dh_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_dh_keygen() 204 static int pkey_dh_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen) in pkey_dh_derive()
|
/external/openssl/crypto/ec/ |
D | ec_pmeth.c | 77 static int pkey_ec_init(EVP_PKEY_CTX *ctx) in pkey_ec_init() 91 static int pkey_ec_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) in pkey_ec_copy() 108 static void pkey_ec_cleanup(EVP_PKEY_CTX *ctx) in pkey_ec_cleanup() 119 static int pkey_ec_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, in pkey_ec_sign() 152 static int pkey_ec_verify(EVP_PKEY_CTX *ctx, in pkey_ec_verify() 170 static int pkey_ec_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen) in pkey_ec_derive() 204 static int pkey_ec_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) in pkey_ec_ctrl() 249 static int pkey_ec_ctrl_str(EVP_PKEY_CTX *ctx, in pkey_ec_ctrl_str() 268 static int pkey_ec_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_ec_paramgen() 289 static int pkey_ec_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_ec_keygen()
|
/external/openssl/crypto/hmac/ |
D | hm_pmeth.c | 75 static int pkey_hmac_init(EVP_PKEY_CTX *ctx) in pkey_hmac_init() 94 static int pkey_hmac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) in pkey_hmac_copy() 114 static void pkey_hmac_cleanup(EVP_PKEY_CTX *ctx) in pkey_hmac_cleanup() 128 static int pkey_hmac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_hmac_keygen() 150 static int hmac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx) in hmac_signctx_init() 159 static int hmac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, in hmac_signctx() 178 static int pkey_hmac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) in pkey_hmac_ctrl() 210 static int pkey_hmac_ctrl_str(EVP_PKEY_CTX *ctx, in pkey_hmac_ctrl_str()
|
/external/openssl/crypto/dsa/ |
D | dsa_pmeth.c | 81 static int pkey_dsa_init(EVP_PKEY_CTX *ctx) in pkey_dsa_init() 99 static int pkey_dsa_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) in pkey_dsa_copy() 113 static void pkey_dsa_cleanup(EVP_PKEY_CTX *ctx) in pkey_dsa_cleanup() 120 static int pkey_dsa_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, in pkey_dsa_sign() 141 static int pkey_dsa_verify(EVP_PKEY_CTX *ctx, in pkey_dsa_verify() 159 static int pkey_dsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) in pkey_dsa_ctrl() 217 static int pkey_dsa_ctrl_str(EVP_PKEY_CTX *ctx, in pkey_dsa_ctrl_str() 241 static int pkey_dsa_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_dsa_paramgen() 266 static int pkey_dsa_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) in pkey_dsa_keygen()
|
/external/openssl/crypto/rsa/ |
D | rsa_pmeth.c | 96 static int pkey_rsa_init(EVP_PKEY_CTX *ctx) in pkey_rsa_init() 118 static int pkey_rsa_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) in pkey_rsa_copy() 137 static int setup_tbuf(RSA_PKEY_CTX *ctx, EVP_PKEY_CTX *pk) in setup_tbuf() 147 static void pkey_rsa_cleanup(EVP_PKEY_CTX *ctx) in pkey_rsa_cleanup() 166 static int pkey_fips_check_ctx(EVP_PKEY_CTX *ctx) in pkey_fips_check_ctx() 185 static int pkey_rsa_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, in pkey_rsa_sign() 282 static int pkey_rsa_verifyrecover(EVP_PKEY_CTX *ctx, in pkey_rsa_verifyrecover() 339 static int pkey_rsa_verify(EVP_PKEY_CTX *ctx, in pkey_rsa_verify() 416 static int pkey_rsa_encrypt(EVP_PKEY_CTX *ctx, in pkey_rsa_encrypt() 430 static int pkey_rsa_decrypt(EVP_PKEY_CTX *ctx, in pkey_rsa_decrypt() [all …]
|
/external/openssl/apps/ |
D | genpkey.c | 68 static int init_keygen_file(BIO *err, EVP_PKEY_CTX **pctx, 70 static int genpkey_cb(EVP_PKEY_CTX *ctx); 86 EVP_PKEY_CTX *ctx = NULL; in MAIN() 315 static int init_keygen_file(BIO *err, EVP_PKEY_CTX **pctx, in init_keygen_file() 320 EVP_PKEY_CTX *ctx = NULL; in init_keygen_file() 363 int init_gen_str(BIO *err, EVP_PKEY_CTX **pctx, in init_gen_str() 366 EVP_PKEY_CTX *ctx = NULL; in init_gen_str() 424 static int genpkey_cb(EVP_PKEY_CTX *ctx) in genpkey_cb()
|
D | pkeyutl.c | 75 static EVP_PKEY_CTX *init_ctx(int *pkeysize, 79 static int setup_peer(BIO *err, EVP_PKEY_CTX *ctx, int peerform, 82 static int do_keyop(EVP_PKEY_CTX *ctx, int pkey_op, 97 EVP_PKEY_CTX *ctx = NULL; in MAIN() 413 static EVP_PKEY_CTX *init_ctx(int *pkeysize, in init_ctx() 418 EVP_PKEY_CTX *ctx = NULL; in init_ctx() 513 static int setup_peer(BIO *err, EVP_PKEY_CTX *ctx, int peerform, in setup_peer() 541 static int do_keyop(EVP_PKEY_CTX *ctx, int pkey_op, in do_keyop()
|
/external/chromium_org/third_party/boringssl/src/crypto/digest/ |
D | internal.h | 101 void (*free) (EVP_PKEY_CTX *pctx); 105 EVP_PKEY_CTX* (*dup) (EVP_PKEY_CTX *pctx);
|
/external/chromium_org/crypto/ |
D | signature_verifier.h | 16 typedef struct evp_pkey_ctx_st EVP_PKEY_CTX; typedef 117 EVP_PKEY_CTX** pkey_ctx);
|