/openssl/ssl/ |
H A D | tls_depr.c | 32 ENGINE *eng; in tls_get_cipher_from_engine() local 38 eng = ENGINE_get_cipher_engine(nid); in tls_get_cipher_from_engine() 39 if (eng != NULL) { in tls_get_cipher_from_engine() 40 ret = ENGINE_get_cipher(eng, nid); in tls_get_cipher_from_engine() 41 ENGINE_finish(eng); in tls_get_cipher_from_engine() 51 ENGINE *eng; in tls_get_digest_from_engine() local 57 eng = ENGINE_get_digest_engine(nid); in tls_get_digest_from_engine() 58 if (eng != NULL) { in tls_get_digest_from_engine() 59 ret = ENGINE_get_digest(eng, nid); in tls_get_digest_from_engine() 60 ENGINE_finish(eng); in tls_get_digest_from_engine()
|
H A D | ssl_lib.c | 4126 ENGINE *eng; in SSL_CTX_new_ex() local 4127 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO)); in SSL_CTX_new_ex() 4128 if (!eng) { in SSL_CTX_new_ex() 4131 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO)); in SSL_CTX_new_ex() 4133 if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng)) in SSL_CTX_new_ex()
|
/openssl/apps/lib/ |
H A D | engine.c | 170 ENGINE *eng; in get_digest_from_engine() local 172 eng = ENGINE_get_digest_engine(OBJ_sn2nid(name)); in get_digest_from_engine() 173 if (eng != NULL) { in get_digest_from_engine() 174 ENGINE_finish(eng); in get_digest_from_engine() 184 ENGINE *eng; in get_cipher_from_engine() local 186 eng = ENGINE_get_cipher_engine(OBJ_sn2nid(name)); in get_cipher_from_engine() 187 if (eng != NULL) { in get_cipher_from_engine() 188 ENGINE_finish(eng); in get_cipher_from_engine()
|
/openssl/apps/ |
H A D | genrsa.c | 79 ENGINE *eng = NULL; in genrsa_main() local 120 eng = setup_engine(opt_arg(), 0); in genrsa_main() 182 if (!init_gen_str(&ctx, "RSA", eng, 0, app_get0_libctx(), in genrsa_main() 245 release_engine(eng); in genrsa_main()
|
H A D | cmp.c | 755 const char *pass, ENGINE *eng, const char *desc) in load_key_pwd() argument 758 EVP_PKEY *pkey = load_key(uri, format, 0, pass_string, eng, desc); in load_key_pwd()
|
/openssl/doc/man3/ |
H A D | EVP_PKEY_encrypt.pod | 56 set 'eng = NULL;' to start with the default OpenSSL RSA implementation: 63 ENGINE *eng; 69 * NB: assumes eng, key, in, inlen are already set up, 72 ctx = EVP_PKEY_CTX_new(key, eng);
|
H A D | EVP_PKEY_derive.pod | 69 ENGINE *eng; 73 /* NB: assumes pkey, eng, peerkey have been already set up */ 75 ctx = EVP_PKEY_CTX_new(pkey, eng);
|
H A D | EVP_PKEY_decrypt.pod | 83 ENGINE *eng; 89 * NB: assumes key, eng, in, inlen are already set up 92 ctx = EVP_PKEY_CTX_new(key, eng);
|
H A D | EVP_PKEY_keygen.pod | 169 ENGINE *eng; 172 /* Assumed param, eng are set up already */ 173 ctx = EVP_PKEY_CTX_new(param, eng);
|
/openssl/engines/ |
H A D | e_padlock.c | 128 ENGINE *eng = ENGINE_new(); in ENGINE_padlock() local 130 if (eng == NULL) { in ENGINE_padlock() 134 if (!padlock_bind_helper(eng)) { in ENGINE_padlock() 135 ENGINE_free(eng); in ENGINE_padlock() 139 return eng; in ENGINE_padlock()
|
H A D | e_ossltest.c | 377 static EVP_PKEY *load_key(ENGINE *eng, const char *key_id, int pub, in load_key() argument 399 static EVP_PKEY *ossltest_load_privkey(ENGINE *eng, const char *key_id, in ossltest_load_privkey() argument 402 return load_key(eng, key_id, 0, ui_method, ui_data); in ossltest_load_privkey() 405 static EVP_PKEY *ossltest_load_pubkey(ENGINE *eng, const char *key_id, in ossltest_load_pubkey() argument 408 return load_key(eng, key_id, 1, ui_method, ui_data); in ossltest_load_pubkey()
|
H A D | e_capi.c | 126 static EVP_PKEY *capi_load_privkey(ENGINE *eng, const char *key_id, 642 static EVP_PKEY *capi_get_pkey(ENGINE *eng, CAPI_KEY *key) in capi_get_pkey() argument 687 rkey = RSA_new_method(eng); in capi_get_pkey() 743 dkey = DSA_new_method(eng); in capi_get_pkey() 814 static EVP_PKEY *capi_load_privkey(ENGINE *eng, const char *key_id, in capi_load_privkey() argument 820 ctx = ENGINE_get_ex_data(eng, capi_idx); in capi_load_privkey() 832 ret = capi_get_pkey(eng, key); in capi_load_privkey()
|
/openssl/crypto/engine/ |
H 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
|
/openssl/ |
H A D | CHANGES.md | 11997 (see <http://info.isl.ntt.co.jp/crypt/eng/info/chiteki.html>).
|