Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/test/
H A Dalgorithmid_test.c35 const OSSL_PARAM *gettable_params = NULL; in test_spki_aid() local
79 if (!TEST_ptr(gettable_params = EVP_KEYMGMT_gettable_params(keymgmt)) in test_spki_aid()
80 || !TEST_ptr(OSSL_PARAM_locate_const(gettable_params, ALGORITHMID_NAME))) { in test_spki_aid()
124 const OSSL_PARAM *gettable_params = NULL; in test_x509_sig_aid() local
163 if (!TEST_ptr(gettable_params = EVP_PKEY_CTX_gettable_params(pctx)) in test_x509_sig_aid()
164 || !TEST_ptr(OSSL_PARAM_locate_const(gettable_params, ALGORITHMID_NAME))) { in test_x509_sig_aid()
/freebsd/crypto/openssl/crypto/evp/
H A Dkdf_meth.c107 if (kdf->gettable_params != NULL) in evp_kdf_from_algorithm()
109 kdf->gettable_params = OSSL_FUNC_kdf_gettable_params(fns); in evp_kdf_from_algorithm()
179 if (kdf->gettable_params == NULL) in EVP_KDF_gettable_params()
181 return kdf->gettable_params(ossl_provider_ctx(EVP_KDF_get0_provider(kdf))); in EVP_KDF_gettable_params()
H A Dmac_meth.c114 if (mac->gettable_params != NULL) in evp_mac_from_algorithm()
116 mac->gettable_params = OSSL_FUNC_mac_gettable_params(fns); in evp_mac_from_algorithm()
200 if (mac->gettable_params == NULL) in EVP_MAC_gettable_params()
202 return mac->gettable_params(ossl_provider_ctx(EVP_MAC_get0_provider(mac))); in EVP_MAC_gettable_params()
H A Devp_rand.c42 OSSL_FUNC_rand_gettable_params_fn *gettable_params; member
200 if (rand->gettable_params != NULL) in evp_rand_from_algorithm()
202 rand->gettable_params = OSSL_FUNC_rand_gettable_params(fns); in evp_rand_from_algorithm()
446 if (rand->gettable_params == NULL) in EVP_RAND_gettable_params()
448 return rand->gettable_params(ossl_provider_ctx(EVP_RAND_get0_provider(rand))); in EVP_RAND_gettable_params()
H A Dkeymgmt_meth.c146 if (keymgmt->gettable_params == NULL) { in keymgmt_from_algorithm()
148 keymgmt->gettable_params = OSSL_FUNC_keymgmt_gettable_params(fns); in keymgmt_from_algorithm()
495 if (keymgmt->gettable_params == NULL) in EVP_KEYMGMT_gettable_params()
497 return keymgmt->gettable_params(provctx); in EVP_KEYMGMT_gettable_params()
H A Ddigest.c770 if (digest != NULL && digest->gettable_params != NULL) in EVP_MD_gettable_params()
771 return digest->gettable_params( in EVP_MD_gettable_params()
1103 if (md->gettable_params == NULL) in evp_md_from_algorithm()
1104 md->gettable_params = OSSL_FUNC_digest_gettable_params(fns); in evp_md_from_algorithm()
H A Devp_local.h109 OSSL_FUNC_keymgmt_gettable_params_fn *gettable_params; member
H A Devp_enc.c1675 if (cipher != NULL && cipher->gettable_params != NULL) in EVP_CIPHER_gettable_params()
1676 return cipher->gettable_params( in EVP_CIPHER_gettable_params()
2005 if (cipher->gettable_params != NULL) in evp_cipher_from_algorithm()
2007 cipher->gettable_params = OSSL_FUNC_cipher_gettable_params(fns); in evp_cipher_from_algorithm()
/freebsd/crypto/openssl/crypto/encode_decode/
H A Dencoder_local.h36 OSSL_FUNC_encoder_gettable_params_fn *gettable_params; member
50 OSSL_FUNC_decoder_gettable_params_fn *gettable_params; member
H A Dencoder_meth.c246 if (encoder->gettable_params == NULL) in encoder_from_algorithm()
247 encoder->gettable_params = OSSL_FUNC_encoder_gettable_params(fns); in encoder_from_algorithm()
579 if (encoder != NULL && encoder->gettable_params != NULL) { in OSSL_ENCODER_gettable_params()
582 return encoder->gettable_params(provctx); in OSSL_ENCODER_gettable_params()
H A Ddecoder_meth.c246 if (decoder->gettable_params == NULL) in ossl_decoder_from_algorithm()
247 decoder->gettable_params = OSSL_FUNC_decoder_gettable_params(fns); in ossl_decoder_from_algorithm()
592 if (decoder != NULL && decoder->gettable_params != NULL) { in OSSL_DECODER_gettable_params()
595 return decoder->gettable_params(provctx); in OSSL_DECODER_gettable_params()
/freebsd/crypto/openssl/providers/implementations/keymgmt/
H A Dmac_legacy_kmgmt.c330 static const OSSL_PARAM gettable_params[] = { in mac_gettable_params() local
334 return gettable_params; in mac_gettable_params()
339 static const OSSL_PARAM gettable_params[] = { in cmac_gettable_params() local
345 return gettable_params; in cmac_gettable_params()
/freebsd/crypto/openssl/include/crypto/
H A Devp.h223 OSSL_FUNC_mac_gettable_params_fn *gettable_params; member
244 OSSL_FUNC_kdf_gettable_params_fn *gettable_params; member
294 OSSL_FUNC_digest_gettable_params_fn *gettable_params; member
354 OSSL_FUNC_cipher_gettable_params_fn *gettable_params; member
/freebsd/crypto/openssl/crypto/
H A Dprovider_core.c174 OSSL_FUNC_provider_gettable_params_fn *gettable_params; member
1068 prov->gettable_params = OSSL_FUNC_provider_gettable_params(provider_dispatch); in provider_init()
1771 if (prov->gettable_params != NULL) in ossl_provider_gettable_params()
1772 ret = prov->gettable_params(prov->provctx); in ossl_provider_gettable_params()
1782 if (prov->gettable_params != NULL) { in ossl_provider_gettable_params()
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_provider_new.pod257 ossl_provider_gettable_params() calls the provider's I<gettable_params>