Searched refs:key_id (Results 1 – 8 of 8) sorted by relevance
/openssl-master/crypto/engine/ |
A D | eng_pkey.c | 56 EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id, in ENGINE_load_private_key() argument 77 pkey = e->load_privkey(e, key_id, ui_method, callback_data); in ENGINE_load_private_key() 85 EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id, in ENGINE_load_public_key() argument 106 pkey = e->load_pubkey(e, key_id, ui_method, callback_data); in ENGINE_load_public_key()
|
A D | eng_openssl.c | 76 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id, 417 static EVP_PKEY *openssl_load_privkey(ENGINE *eng, const char *key_id, in openssl_load_privkey() argument 424 key_id); in openssl_load_privkey() 425 in = BIO_new_file(key_id, "r"); in openssl_load_privkey()
|
/openssl-master/apps/lib/ |
A D | engine.c | 105 char *make_engine_uri(ENGINE *e, const char *key_id, const char *desc) in make_engine_uri() argument 112 } else if (key_id == NULL) { in make_engine_uri() 120 + strlen(key_id) in make_engine_uri() 129 OPENSSL_strlcat(new_uri, key_id, uri_sz); in make_engine_uri()
|
/openssl-master/engines/ |
A D | e_ossltest.c | 380 static EVP_PKEY *load_key(ENGINE *eng, const char *key_id, int pub, in load_key() argument 386 if (strncasecmp(key_id, "ot:", 3) != 0) in load_key() 388 key_id += 3; in load_key() 391 pub ? "Public" : "Private", key_id); in load_key() 392 in = BIO_new_file(key_id, "r"); in load_key() 403 static EVP_PKEY *ossltest_load_privkey(ENGINE *eng, const char *key_id, in ossltest_load_privkey() argument 406 return load_key(eng, key_id, 0, ui_method, ui_data); in ossltest_load_privkey() 409 static EVP_PKEY *ossltest_load_pubkey(ENGINE *eng, const char *key_id, in ossltest_load_pubkey() argument 412 return load_key(eng, key_id, 1, ui_method, ui_data); in ossltest_load_pubkey()
|
A D | e_capi.c | 126 static EVP_PKEY *capi_load_privkey(ENGINE *eng, const char *key_id, 796 static EVP_PKEY *capi_load_privkey(ENGINE *eng, const char *key_id, in capi_load_privkey() argument 809 key = capi_find_key(ctx, key_id); in capi_load_privkey()
|
/openssl-master/include/openssl/ |
A D | engine.h | 638 EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id, 641 EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,
|
/openssl-master/apps/include/ |
A D | apps.h | 176 char *make_engine_uri(ENGINE *e, const char *key_id, const char *desc);
|
/openssl-master/doc/man3/ |
A D | ENGINE_add.pod | 156 EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id, 158 EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,
|
Completed in 17 milliseconds