Home
last modified time | relevance | path

Searched refs:OSSL_PARAM_locate (Results 1 – 15 of 15) sorted by relevance

/netbsd/src/crypto/external/bsd/openssl/dist/test/
Dparam_build_test.c34 if (!TEST_ptr(p = OSSL_PARAM_locate(params, "zeronumber")) in template_public_single_zero_test()
66 if (!TEST_ptr(p = OSSL_PARAM_locate(params, "zeronumber")) in template_private_single_zero_test()
140 if (!TEST_ptr(p = OSSL_PARAM_locate(params, "i")) in template_public_test()
147 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i32")) in template_public_test()
154 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i64")) in template_public_test()
161 || !TEST_ptr(p = OSSL_PARAM_locate(params, "l")) in template_public_test()
168 || !TEST_ptr(p = OSSL_PARAM_locate(params, "t")) in template_public_test()
175 || !TEST_ptr(p = OSSL_PARAM_locate(params, "d")) in template_public_test()
182 || !TEST_ptr(p = OSSL_PARAM_locate(params, "utf8_s")) in template_public_test()
187 || !TEST_ptr(p = OSSL_PARAM_locate(params, "utf8_p")) in template_public_test()
[all …]
Dparams_test.c250 if ((p = OSSL_PARAM_locate(params, "p1")) != NULL in api_get_params()
253 if ((p = OSSL_PARAM_locate(params, "p2")) != NULL in api_get_params()
256 if ((p = OSSL_PARAM_locate(params, "p3")) != NULL in api_get_params()
259 if ((p = OSSL_PARAM_locate(params, "p4")) != NULL in api_get_params()
262 if ((p = OSSL_PARAM_locate(params, "p5")) != NULL in api_get_params()
265 if ((p = OSSL_PARAM_locate(params, "p6")) != NULL in api_get_params()
462 || !TEST_ptr(p = OSSL_PARAM_locate(params, "p3")) in test_case_variant()
466 || !TEST_ptr(p = OSSL_PARAM_locate(params, "p5")) in test_case_variant()
470 || !TEST_ptr(p = OSSL_PARAM_locate(params, "p6")) in test_case_variant()
475 || !TEST_ptr(p = OSSL_PARAM_locate(params, "foo"))) in test_case_variant()
[all …]
Dparams_api_test.c525 if (!TEST_ptr_null(OSSL_PARAM_locate(p, "fnord"))) in test_param_construct()
530 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, int_names[j])) in test_param_construct()
541 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, uint_names[j])) in test_param_construct()
551 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "double")) in test_param_construct()
560 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "utf8str")) in test_param_construct()
576 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "utf8ptr")) in test_param_construct()
584 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "octstr")) in test_param_construct()
604 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "octptr")) in test_param_construct()
616 if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "bignum")) in test_param_construct()
677 && TEST_ptr(p = OSSL_PARAM_locate(cp1, "a")) in test_param_copy_null()
[all …]
Duser_property_test.c28 p = OSSL_PARAM_locate(params, OSSL_DIGEST_PARAM_BLOCK_SIZE); in tmpmd_get_params()
32 p = OSSL_PARAM_locate(params, OSSL_DIGEST_PARAM_SIZE); in tmpmd_get_params()
Devp_extra_test2.c294 || !TEST_ptr_null(OSSL_PARAM_locate(pub_params, privtag))) in do_pkey_tofrom_data_select()
301 || !TEST_ptr(OSSL_PARAM_locate(keypair_params, privtag))) in do_pkey_tofrom_data_select()
915 ret = TEST_ptr(p = OSSL_PARAM_locate(params, key)) in do_check_bn()
928 return TEST_ptr(p = OSSL_PARAM_locate(params, key)) in do_check_int()
988 || !TEST_ptr_null(OSSL_PARAM_locate(to_params, OSSL_PKEY_PARAM_FFC_SEED))) in test_dsa_todata()
Dtls-provider.c524 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_BITS)) != NULL in xor_get_params()
528 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_SECURITY_BITS)) != NULL in xor_get_params()
532 if ((p = OSSL_PARAM_locate(params, in xor_get_params()
Dprovfetchtest.c137 p = OSSL_PARAM_locate(params, OSSL_RAND_PARAM_MAX_REQUEST); in dummy_rand_get_ctx_params()
Dparams_conversion_test.c66 pc->param = OSSL_PARAM_locate(params, type = pp->value); in param_conversion_load_stanza()
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/
Dparam_build_set.c27 p = OSSL_PARAM_locate(p, key); in DEFINE_SPECIAL_STACK_OF_CONST()
38 p = OSSL_PARAM_locate(p, key); in ossl_param_build_set_long()
49 p = OSSL_PARAM_locate(p, key); in ossl_param_build_set_utf8_string()
63 p = OSSL_PARAM_locate(p, key); in ossl_param_build_set_octet_string()
74 p = OSSL_PARAM_locate(p, key); in ossl_param_build_set_bn_pad()
90 p = OSSL_PARAM_locate(p, key); in ossl_param_build_set_bn()
115 p = OSSL_PARAM_locate(params, names[i]); in ossl_param_build_set_multi_key_bn()
Dprovider_core.c1928 if ((p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_CORE_VERSION)) != NULL) in core_get_params()
1930 if ((p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_CORE_PROV_NAME)) != NULL) in core_get_params()
1934 if ((p = OSSL_PARAM_locate(params, in core_get_params()
1945 if ((p = OSSL_PARAM_locate(params, pair->name)) != NULL) in core_get_params()
Dparams.c29 OSSL_PARAM *OSSL_PARAM_locate(OSSL_PARAM *p, const char *key) in OSSL_PARAM_locate() function
40 return OSSL_PARAM_locate((OSSL_PARAM *)p, key); in OSSL_PARAM_locate_const()
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/rsa/
Drsa_acvp_test_params.c135 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_RSA_TEST_P1)) != NULL in ossl_rsa_acvp_test_get_params()
138 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_RSA_TEST_P2)) != NULL in ossl_rsa_acvp_test_get_params()
141 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_RSA_TEST_Q1)) != NULL in ossl_rsa_acvp_test_get_params()
144 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_RSA_TEST_Q2)) != NULL in ossl_rsa_acvp_test_get_params()
/netbsd/src/crypto/external/bsd/openssl/lib/libcrypto/
Dcrypto.map3183 OSSL_PARAM_locate;
Dcrypto.expsym3189 OSSL_PARAM_locate@@OPENSSL_3.0.0
/netbsd/src/crypto/external/bsd/openssl/dist/util/
Dlibcrypto.num4537 OSSL_PARAM_locate 4665 3_0_0 EXIST::FUNCTION: