/third_party/openssl/crypto/evp/ |
D | evp_fetch.c | 46 OSSL_LIB_CTX *libctx; member 70 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_evp_method_store() 80 static OSSL_METHOD_STORE *get_evp_method_store(OSSL_LIB_CTX *libctx) in get_evp_method_store() argument 82 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX, in get_evp_method_store() 91 && (store = get_evp_method_store(methdata->libctx)) == NULL) in reserve_evp_method_store() 102 && (store = get_evp_method_store(methdata->libctx)) == NULL) in unreserve_evp_method_store() 154 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_evp_method_from_store() 169 && (store = get_evp_method_store(methdata->libctx)) == NULL) in get_evp_method_from_store() 201 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_evp_method_in_store() 207 && (store = get_evp_method_store(methdata->libctx)) == NULL) in put_evp_method_in_store() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
D | evp_fetch.c | 46 OSSL_LIB_CTX *libctx; member 70 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_evp_method_store() 80 static OSSL_METHOD_STORE *get_evp_method_store(OSSL_LIB_CTX *libctx) in get_evp_method_store() argument 82 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX, in get_evp_method_store() 91 && (store = get_evp_method_store(methdata->libctx)) == NULL) in reserve_evp_method_store() 102 && (store = get_evp_method_store(methdata->libctx)) == NULL) in unreserve_evp_method_store() 154 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_evp_method_from_store() 169 && (store = get_evp_method_store(methdata->libctx)) == NULL) in get_evp_method_from_store() 201 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_evp_method_in_store() 207 && (store = get_evp_method_store(methdata->libctx)) == NULL) in put_evp_method_in_store() [all …]
|
/third_party/openssl/test/ |
D | provider_test.c | 36 static int test_provider(OSSL_LIB_CTX **libctx, const char *name, in test_provider() argument 57 EVP_set_default_properties(*libctx, "fips=yes"); in test_provider() 62 if (!TEST_ptr(base = OSSL_PROVIDER_load(*libctx, "base"))) in test_provider() 64 if (!TEST_ptr(prov = OSSL_PROVIDER_load(*libctx, name))) in test_provider() 71 EVP_set_default_properties(*libctx, ""); in test_provider() 84 EVP_set_default_properties(*libctx, "fips=yes"); in test_provider() 88 EVP_set_default_properties(*libctx, ""); in test_provider() 116 legacy = OSSL_PROVIDER_load(*libctx, "legacy"); in test_provider() 117 deflt = OSSL_PROVIDER_load(*libctx, "default"); in test_provider() 119 || !TEST_true(OSSL_PROVIDER_available(*libctx, "default"))) in test_provider() [all …]
|
D | provider_pkey_test.c | 20 static OSSL_LIB_CTX *libctx = NULL; variable 58 if (!TEST_ptr(fake_rsa = fake_rsa_start(libctx))) in test_pkey_sig() 61 if (!TEST_ptr(deflt = OSSL_PROVIDER_load(libctx, "default"))) in test_pkey_sig() 65 if (!TEST_true(fetch_sig(libctx, "RSA", "provider=fake-rsa", fake_rsa)) in test_pkey_sig() 66 || !TEST_true(fetch_sig(libctx, "RSA", "?provider=fake-rsa", fake_rsa))) in test_pkey_sig() 70 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA", in test_pkey_sig() 89 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, in test_pkey_sig() 128 if (!TEST_ptr(deflt = OSSL_PROVIDER_load(libctx, "default"))) in test_alternative_keygen_init() 132 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA", NULL))) in test_alternative_keygen_init() 151 if (!TEST_ptr(fake_rsa = fake_rsa_start(libctx))) in test_alternative_keygen_init() [all …]
|
D | provfetchtest.c | 206 OSSL_LIB_CTX *libctx = OSSL_LIB_CTX_new_child(handle, in); in dummy_provider_init() local 209 *provctx = (void *)libctx; in dummy_provider_init() 216 if (RAND_bytes_ex(libctx, buf, sizeof(buf), 0) <= 0) in dummy_provider_init() 232 OSSL_LIB_CTX *libctx = OSSL_LIB_CTX_new(); in fetch_test() local 242 if (!TEST_ptr(libctx)) in fetch_test() 245 if (!TEST_true(OSSL_PROVIDER_add_builtin(libctx, "dummy-prov", in fetch_test() 247 || !TEST_ptr(nullprov = OSSL_PROVIDER_load(libctx, "default")) in fetch_test() 248 || !TEST_ptr(dummyprov = OSSL_PROVIDER_load(libctx, "dummy-prov"))) in fetch_test() 253 decoder = OSSL_DECODER_fetch(libctx, "DUMMY", in fetch_test() 259 encoder = OSSL_ENCODER_fetch(libctx, "DUMMY", in fetch_test() [all …]
|
D | user_property_test.c | 88 OSSL_LIB_CTX *libctx; in test_default_props_and_providers() local 93 if (!TEST_ptr(libctx = OSSL_LIB_CTX_new()) in test_default_props_and_providers() 94 || !TEST_true(OSSL_PROVIDER_add_builtin(libctx, "testprov", in test_default_props_and_providers() 99 && !TEST_true(EVP_set_default_properties(libctx, MYPROPERTIES))) in test_default_props_and_providers() 102 if (!TEST_ptr(testprov = OSSL_PROVIDER_load(libctx, "testprov"))) in test_default_props_and_providers() 106 && !TEST_true(EVP_set_default_properties(libctx, MYPROPERTIES))) in test_default_props_and_providers() 109 if (!TEST_ptr(testprovmd = EVP_MD_fetch(libctx, "testprovmd", NULL))) in test_default_props_and_providers() 113 if (!TEST_true(EVP_set_default_properties(libctx, MYPROPERTIES))) in test_default_props_and_providers() 116 if (!TEST_ptr(testprovmd = EVP_MD_fetch(libctx, "testprovmd", NULL))) in test_default_props_and_providers() 124 OSSL_LIB_CTX_free(libctx); in test_default_props_and_providers()
|
/third_party/openssl/test/testutil/ |
D | provider.c | 16 int test_get_libctx(OSSL_LIB_CTX **libctx, OSSL_PROVIDER **default_null_prov, in test_get_libctx() argument 22 if (libctx != NULL) { in test_get_libctx() 23 if ((new_libctx = *libctx = OSSL_LIB_CTX_new()) == NULL) { in test_get_libctx() 53 int test_arg_libctx(OSSL_LIB_CTX **libctx, OSSL_PROVIDER **default_null_prov, in test_arg_libctx() argument 64 return test_get_libctx(libctx, default_null_prov, in test_arg_libctx() 77 static int fips_provider_version(OSSL_LIB_CTX *libctx, FIPS_VERSION *vers) in fips_provider_version() argument 83 if (!OSSL_PROVIDER_available(libctx, "fips")) in fips_provider_version() 86 if ((fips_prov = OSSL_PROVIDER_load(libctx, "fips")) == NULL) in fips_provider_version() 99 int fips_provider_version_eq(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_eq() argument 104 if ((res = fips_provider_version(libctx, &prov)) <= 0) in fips_provider_version_eq() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/store/ |
D | store_meth.c | 92 OSSL_LIB_CTX *libctx; member 113 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_loader_store() 124 static OSSL_METHOD_STORE *get_loader_store(OSSL_LIB_CTX *libctx) in get_loader_store() argument 126 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX, in get_loader_store() 135 && (store = get_loader_store(methdata->libctx)) == NULL) in reserve_loader_store() 146 && (store = get_loader_store(methdata->libctx)) == NULL) in unreserve_loader_store() 161 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_loader_from_store() 167 && (store = get_loader_store(methdata->libctx)) == NULL) in get_loader_from_store() 184 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_loader_in_store() 188 if (store == NULL && (store = get_loader_store(methdata->libctx)) == NULL) in put_loader_in_store() [all …]
|
/third_party/openssl/crypto/store/ |
D | store_meth.c | 92 OSSL_LIB_CTX *libctx; member 113 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_loader_store() 124 static OSSL_METHOD_STORE *get_loader_store(OSSL_LIB_CTX *libctx) in get_loader_store() argument 126 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX, in get_loader_store() 135 && (store = get_loader_store(methdata->libctx)) == NULL) in reserve_loader_store() 146 && (store = get_loader_store(methdata->libctx)) == NULL) in unreserve_loader_store() 161 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_loader_from_store() 167 && (store = get_loader_store(methdata->libctx)) == NULL) in get_loader_from_store() 184 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_loader_in_store() 188 if (store == NULL && (store = get_loader_store(methdata->libctx)) == NULL) in put_loader_in_store() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/encode_decode/ |
D | encoder_meth.c | 89 OSSL_LIB_CTX *libctx; member 110 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_encoder_store() 121 static OSSL_METHOD_STORE *get_encoder_store(OSSL_LIB_CTX *libctx) in get_encoder_store() argument 123 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_ENCODER_STORE_INDEX, in get_encoder_store() 132 && (store = get_encoder_store(methdata->libctx)) == NULL) in reserve_encoder_store() 143 && (store = get_encoder_store(methdata->libctx)) == NULL) in unreserve_encoder_store() 163 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_encoder_from_store() 177 && (store = get_encoder_store(methdata->libctx)) == NULL) in get_encoder_from_store() 207 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_encoder_in_store() 211 if (store == NULL && (store = get_encoder_store(methdata->libctx)) == NULL) in put_encoder_in_store() [all …]
|
D | decoder_meth.c | 89 OSSL_LIB_CTX *libctx; member 110 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_decoder_store() 121 static OSSL_METHOD_STORE *get_decoder_store(OSSL_LIB_CTX *libctx) in get_decoder_store() argument 123 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_DECODER_STORE_INDEX, in get_decoder_store() 132 && (store = get_decoder_store(methdata->libctx)) == NULL) in reserve_decoder_store() 143 && (store = get_decoder_store(methdata->libctx)) == NULL) in unreserve_decoder_store() 163 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_decoder_from_store() 177 && (store = get_decoder_store(methdata->libctx)) == NULL) in get_decoder_from_store() 207 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_decoder_in_store() 211 if (store == NULL && (store = get_decoder_store(methdata->libctx)) == NULL) in put_decoder_in_store() [all …]
|
/third_party/openssl/crypto/encode_decode/ |
D | decoder_meth.c | 89 OSSL_LIB_CTX *libctx; member 110 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_decoder_store() 121 static OSSL_METHOD_STORE *get_decoder_store(OSSL_LIB_CTX *libctx) in get_decoder_store() argument 123 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_DECODER_STORE_INDEX, in get_decoder_store() 132 && (store = get_decoder_store(methdata->libctx)) == NULL) in reserve_decoder_store() 143 && (store = get_decoder_store(methdata->libctx)) == NULL) in unreserve_decoder_store() 163 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_decoder_from_store() 177 && (store = get_decoder_store(methdata->libctx)) == NULL) in get_decoder_from_store() 207 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_decoder_in_store() 211 if (store == NULL && (store = get_decoder_store(methdata->libctx)) == NULL) in put_decoder_in_store() [all …]
|
D | encoder_meth.c | 89 OSSL_LIB_CTX *libctx; member 110 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_encoder_store() 121 static OSSL_METHOD_STORE *get_encoder_store(OSSL_LIB_CTX *libctx) in get_encoder_store() argument 123 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_ENCODER_STORE_INDEX, in get_encoder_store() 132 && (store = get_encoder_store(methdata->libctx)) == NULL) in reserve_encoder_store() 143 && (store = get_encoder_store(methdata->libctx)) == NULL) in unreserve_encoder_store() 163 OSSL_NAMEMAP *namemap = ossl_namemap_stored(methdata->libctx); in get_encoder_from_store() 177 && (store = get_encoder_store(methdata->libctx)) == NULL) in get_encoder_from_store() 207 if ((namemap = ossl_namemap_stored(methdata->libctx)) == NULL in put_encoder_in_store() 211 if (store == NULL && (store = get_encoder_store(methdata->libctx)) == NULL) in put_encoder_in_store() [all …]
|
/third_party/node/deps/openssl/openssl/providers/fips/ |
D | self_test_kats.c | 21 OSSL_LIB_CTX *libctx) in self_test_digest() argument 27 EVP_MD *md = EVP_MD_fetch(libctx, t->algorithm, NULL); in self_test_digest() 86 OSSL_LIB_CTX *libctx) in self_test_cipher() argument 99 cipher = EVP_CIPHER_fetch(libctx, t->base.algorithm, NULL); in self_test_cipher() 196 OSSL_LIB_CTX *libctx) in self_test_kdf() argument 212 kdf = EVP_KDF_fetch(libctx, t->algorithm, ""); in self_test_kdf() 220 bnctx = BN_CTX_new_ex(libctx); in self_test_kdf() 251 OSSL_LIB_CTX *libctx) in self_test_drbg() argument 265 rand = EVP_RAND_fetch(libctx, "TEST-RAND", NULL); in self_test_drbg() 279 rand = EVP_RAND_fetch(libctx, t->algorithm, NULL); in self_test_drbg() [all …]
|
/third_party/openssl/providers/fips/ |
D | self_test_kats.c | 21 OSSL_LIB_CTX *libctx) in self_test_digest() argument 27 EVP_MD *md = EVP_MD_fetch(libctx, t->algorithm, NULL); in self_test_digest() 86 OSSL_LIB_CTX *libctx) in self_test_cipher() argument 99 cipher = EVP_CIPHER_fetch(libctx, t->base.algorithm, NULL); in self_test_cipher() 196 OSSL_LIB_CTX *libctx) in self_test_kdf() argument 212 kdf = EVP_KDF_fetch(libctx, t->algorithm, ""); in self_test_kdf() 220 bnctx = BN_CTX_new_ex(libctx); in self_test_kdf() 251 OSSL_LIB_CTX *libctx) in self_test_drbg() argument 265 rand = EVP_RAND_fetch(libctx, "TEST-RAND", NULL); in self_test_drbg() 279 rand = EVP_RAND_fetch(libctx, t->algorithm, NULL); in self_test_drbg() [all …]
|
/third_party/openssl/test/helpers/ |
D | predefined_dhparams.c | 18 static EVP_PKEY *get_dh_from_pg_bn(OSSL_LIB_CTX *libctx, const char *type, in get_dh_from_pg_bn() argument 21 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(libctx, type, NULL); in get_dh_from_pg_bn() 48 static EVP_PKEY *get_dh_from_pg(OSSL_LIB_CTX *libctx, const char *type, in get_dh_from_pg() argument 63 dhpkey = get_dh_from_pg_bn(libctx, type, p, g, q); in get_dh_from_pg() 72 EVP_PKEY *get_dh512(OSSL_LIB_CTX *libctx) in get_dh512() argument 86 return get_dh_from_pg(libctx, "DH", dh512_p, sizeof(dh512_p), in get_dh512() 90 EVP_PKEY *get_dhx512(OSSL_LIB_CTX *libctx) in get_dhx512() argument 113 return get_dh_from_pg(libctx, "X9.42 DH", in get_dhx512() 119 EVP_PKEY *get_dh1024dsa(OSSL_LIB_CTX *libctx) in get_dh1024dsa() argument 148 return get_dh_from_pg(libctx, "DH", dh1024_p, sizeof(dh1024_p), in get_dh1024dsa() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/ffc/ |
D | ffc_params_validate.c | 52 int ossl_ffc_params_FIPS186_4_validate(OSSL_LIB_CTX *libctx, in ossl_ffc_params_FIPS186_4_validate() argument 64 return ossl_ffc_params_FIPS186_4_gen_verify(libctx, (FFC_PARAMS *)params, in ossl_ffc_params_FIPS186_4_validate() 70 int ossl_ffc_params_FIPS186_2_validate(OSSL_LIB_CTX *libctx, in ossl_ffc_params_FIPS186_2_validate() argument 84 return ossl_ffc_params_FIPS186_2_gen_verify(libctx, (FFC_PARAMS *)params, in ossl_ffc_params_FIPS186_2_validate() 95 int ossl_ffc_params_simple_validate(OSSL_LIB_CTX *libctx, const FFC_PARAMS *params, in ossl_ffc_params_simple_validate() argument 116 ret = ossl_ffc_params_FIPS186_2_validate(libctx, &tmpparams, paramstype, in ossl_ffc_params_simple_validate() 120 ret = ossl_ffc_params_FIPS186_4_validate(libctx, &tmpparams, paramstype, in ossl_ffc_params_simple_validate() 139 int ossl_ffc_params_full_validate(OSSL_LIB_CTX *libctx, const FFC_PARAMS *params, in ossl_ffc_params_full_validate() argument 151 return ossl_ffc_params_FIPS186_4_validate(libctx, params, paramstype, in ossl_ffc_params_full_validate() 156 return ossl_ffc_params_FIPS186_2_validate(libctx, params, paramstype, in ossl_ffc_params_full_validate() [all …]
|
/third_party/openssl/crypto/ffc/ |
D | ffc_params_validate.c | 52 int ossl_ffc_params_FIPS186_4_validate(OSSL_LIB_CTX *libctx, in ossl_ffc_params_FIPS186_4_validate() argument 64 return ossl_ffc_params_FIPS186_4_gen_verify(libctx, (FFC_PARAMS *)params, in ossl_ffc_params_FIPS186_4_validate() 70 int ossl_ffc_params_FIPS186_2_validate(OSSL_LIB_CTX *libctx, in ossl_ffc_params_FIPS186_2_validate() argument 84 return ossl_ffc_params_FIPS186_2_gen_verify(libctx, (FFC_PARAMS *)params, in ossl_ffc_params_FIPS186_2_validate() 95 int ossl_ffc_params_simple_validate(OSSL_LIB_CTX *libctx, const FFC_PARAMS *params, in ossl_ffc_params_simple_validate() argument 116 ret = ossl_ffc_params_FIPS186_2_validate(libctx, &tmpparams, paramstype, in ossl_ffc_params_simple_validate() 120 ret = ossl_ffc_params_FIPS186_4_validate(libctx, &tmpparams, paramstype, in ossl_ffc_params_simple_validate() 139 int ossl_ffc_params_full_validate(OSSL_LIB_CTX *libctx, const FFC_PARAMS *params, in ossl_ffc_params_full_validate() argument 151 return ossl_ffc_params_FIPS186_4_validate(libctx, params, paramstype, in ossl_ffc_params_full_validate() 156 return ossl_ffc_params_FIPS186_2_validate(libctx, params, paramstype, in ossl_ffc_params_full_validate() [all …]
|
/third_party/openssl/demos/signature/ |
D | EVP_Signature_demo.c | 44 static EVP_PKEY *get_key(OSSL_LIB_CTX *libctx, const char *propq, int public) in get_key() argument 62 selection, libctx, propq); in get_key() 70 static int demo_sign(OSSL_LIB_CTX *libctx, const char *sig_name, in demo_sign() argument 81 priv_key = get_key(libctx, propq, public); in demo_sign() 100 libctx, NULL, priv_key, NULL)) { in demo_sign() 150 static int demo_verify(OSSL_LIB_CTX *libctx, const char *sig_name, in demo_verify() argument 168 pub_key = get_key(libctx, propq, public); in demo_verify() 175 libctx, NULL, pub_key, NULL)) { in demo_verify() 207 OSSL_LIB_CTX *libctx = NULL; in main() local 213 libctx = OSSL_LIB_CTX_new(); in main() [all …]
|
D | rsa_pss_direct.c | 38 static int sign(OSSL_LIB_CTX *libctx, unsigned char **sig, size_t *sig_len) in sign() argument 51 sizeof(rsa_priv_key), libctx, propq); in sign() 58 md = EVP_MD_fetch(libctx, "SHA256", propq); in sign() 65 ctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq); in sign() 124 static int verify(OSSL_LIB_CTX *libctx, const unsigned char *sig, size_t sig_len) in verify() argument 141 md = EVP_MD_fetch(libctx, "SHA256", propq); in verify() 148 ctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq); in verify() 189 OSSL_LIB_CTX *libctx = NULL; in main() local 193 if (sign(libctx, &sig, &sig_len) == 0) in main() 196 if (verify(libctx, sig, sig_len) == 0) in main() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
D | bss_core.c | 40 static ossl_inline BIO_CORE_GLOBALS *get_globals(OSSL_LIB_CTX *libctx) in get_globals() argument 42 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_BIO_CORE_INDEX, in get_globals() 49 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_read_ex() 59 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_write_ex() 68 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_ctrl() 77 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_gets() 86 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_puts() 102 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_free() 133 BIO *BIO_new_from_core_bio(OSSL_LIB_CTX *libctx, OSSL_CORE_BIO *corebio) in BIO_new_from_core_bio() argument 136 BIO_CORE_GLOBALS *bcgbl = get_globals(libctx); in BIO_new_from_core_bio() [all …]
|
/third_party/openssl/crypto/bio/ |
D | bss_core.c | 40 static ossl_inline BIO_CORE_GLOBALS *get_globals(OSSL_LIB_CTX *libctx) in get_globals() argument 42 return ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_BIO_CORE_INDEX, in get_globals() 49 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_read_ex() 59 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_write_ex() 68 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_ctrl() 77 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_gets() 86 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_puts() 102 BIO_CORE_GLOBALS *bcgbl = get_globals(bio->libctx); in bio_core_free() 133 BIO *BIO_new_from_core_bio(OSSL_LIB_CTX *libctx, OSSL_CORE_BIO *corebio) in BIO_new_from_core_bio() argument 136 BIO_CORE_GLOBALS *bcgbl = get_globals(libctx); in BIO_new_from_core_bio() [all …]
|
/third_party/openssl/demos/keyexch/ |
D | x25519.c | 64 OSSL_LIB_CTX *libctx, in keyexch_x25519_before() argument 74 EVP_PKEY_new_raw_private_key_ex(libctx, "X25519", propq, in keyexch_x25519_before() 78 local_peer->privk = EVP_PKEY_Q_keygen(libctx, propq, "X25519"); in keyexch_x25519_before() 118 OSSL_LIB_CTX *libctx, in keyexch_x25519_after() argument 131 EVP_PKEY_new_raw_public_key_ex(libctx, "X25519", propq, in keyexch_x25519_after() 139 ctx = EVP_PKEY_CTX_new_from_pkey(libctx, local_peer->privk, propq); in keyexch_x25519_after() 206 OSSL_LIB_CTX *libctx = NULL; in keyexch_x25519() local 214 if (keyexch_x25519_before(libctx, use_kat ? peer1_privk_data : NULL, in keyexch_x25519() 218 if (keyexch_x25519_before(libctx, use_kat ? peer2_privk_data : NULL, in keyexch_x25519() 227 if (keyexch_x25519_after(libctx, use_kat, &peer1, peer2.pubk_data) == 0) in keyexch_x25519() [all …]
|
/third_party/openssl/crypto/asn1/ |
D | d2i_pr.c | 28 long length, OSSL_LIB_CTX *libctx, const char *propq) in d2i_PrivateKey_decoder() argument 51 EVP_PKEY_KEYPAIR, libctx, propq); in d2i_PrivateKey_decoder() 79 long length, OSSL_LIB_CTX *libctx, const char *propq) in ossl_d2i_PrivateKey_legacy() argument 114 tmp = evp_pkcs82pkey_legacy(p8, libctx, propq); in ossl_d2i_PrivateKey_legacy() 144 long length, OSSL_LIB_CTX *libctx, in d2i_PrivateKey_ex() argument 149 ret = d2i_PrivateKey_decoder(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex() 152 ret = ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex() 165 OSSL_LIB_CTX *libctx, in d2i_AutoPrivateKey_legacy() argument 198 ret = evp_pkcs82pkey_legacy(p8, libctx, propq); in d2i_AutoPrivateKey_legacy() 211 return ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_AutoPrivateKey_legacy() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
D | d2i_pr.c | 28 long length, OSSL_LIB_CTX *libctx, const char *propq) in d2i_PrivateKey_decoder() argument 51 EVP_PKEY_KEYPAIR, libctx, propq); in d2i_PrivateKey_decoder() 79 long length, OSSL_LIB_CTX *libctx, const char *propq) in ossl_d2i_PrivateKey_legacy() argument 114 tmp = evp_pkcs82pkey_legacy(p8, libctx, propq); in ossl_d2i_PrivateKey_legacy() 144 long length, OSSL_LIB_CTX *libctx, in d2i_PrivateKey_ex() argument 149 ret = d2i_PrivateKey_decoder(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex() 152 ret = ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex() 165 OSSL_LIB_CTX *libctx, in d2i_AutoPrivateKey_legacy() argument 198 ret = evp_pkcs82pkey_legacy(p8, libctx, propq); in d2i_AutoPrivateKey_legacy() 211 return ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_AutoPrivateKey_legacy() [all …]
|