Home
last modified time | relevance | path

Searched refs:settable_ctx_params (Results 1 – 19 of 19) sorted by relevance

/netbsd/crypto/external/bsd/openssl/dist/crypto/evp/
H A Dkdf_meth.c121 if (kdf->settable_ctx_params != NULL) in evp_kdf_from_algorithm()
123 kdf->settable_ctx_params = in evp_kdf_from_algorithm()
199 if (kdf->settable_ctx_params == NULL) in EVP_KDF_settable_ctx_params()
202 return kdf->settable_ctx_params(NULL, alg); in EVP_KDF_settable_ctx_params()
219 if (ctx->meth->settable_ctx_params == NULL) in EVP_KDF_CTX_settable_params()
222 return ctx->meth->settable_ctx_params(ctx->algctx, alg); in EVP_KDF_CTX_settable_params()
H A Dmac_meth.c129 if (mac->settable_ctx_params != NULL) in evp_mac_from_algorithm()
131 mac->settable_ctx_params = in evp_mac_from_algorithm()
213 if (mac->settable_ctx_params == NULL) in EVP_MAC_settable_ctx_params()
216 return mac->settable_ctx_params(NULL, alg); in EVP_MAC_settable_ctx_params()
233 if (ctx->meth->settable_ctx_params == NULL) in EVP_MAC_CTX_settable_params()
236 return ctx->meth->settable_ctx_params(ctx->algctx, alg); in EVP_MAC_CTX_settable_params()
H A Devp_rand.c45 OSSL_FUNC_rand_settable_ctx_params_fn *settable_ctx_params; member
210 if (rand->settable_ctx_params != NULL) in evp_rand_from_algorithm()
212 rand->settable_ctx_params = in evp_rand_from_algorithm()
455 if (rand->settable_ctx_params == NULL) in EVP_RAND_settable_ctx_params()
458 return rand->settable_ctx_params(NULL, provctx); in EVP_RAND_settable_ctx_params()
475 if (ctx->meth->settable_ctx_params == NULL) in EVP_RAND_CTX_settable_params()
478 return ctx->meth->settable_ctx_params(ctx->algctx, provctx); in EVP_RAND_CTX_settable_params()
H A Devp_local.h151 OSSL_FUNC_keyexch_settable_ctx_params_fn *settable_ctx_params; member
184 OSSL_FUNC_signature_settable_ctx_params_fn *settable_ctx_params; member
209 OSSL_FUNC_asym_cipher_settable_ctx_params_fn *settable_ctx_params; member
230 OSSL_FUNC_kem_settable_ctx_params_fn *settable_ctx_params; member
H A Dkem.c342 if (kem->settable_ctx_params != NULL) in evp_kem_from_algorithm()
344 kem->settable_ctx_params in evp_kem_from_algorithm()
477 if (kem == NULL || kem->settable_ctx_params == NULL) in EVP_KEM_settable_ctx_params()
481 return kem->settable_ctx_params(NULL, provctx); in EVP_KEM_settable_ctx_params()
H A Dasymcipher.c408 if (cipher->settable_ctx_params != NULL) in evp_asym_cipher_from_algorithm()
410 cipher->settable_ctx_params in evp_asym_cipher_from_algorithm()
547 if (cip == NULL || cip->settable_ctx_params == NULL) in EVP_ASYM_CIPHER_settable_ctx_params()
551 return cip->settable_ctx_params(NULL, provctx); in EVP_ASYM_CIPHER_settable_ctx_params()
H A Dexchange.c117 if (exchange->settable_ctx_params != NULL) in evp_keyexch_from_algorithm()
119 exchange->settable_ctx_params in evp_keyexch_from_algorithm()
593 if (keyexch == NULL || keyexch->settable_ctx_params == NULL) in EVP_KEYEXCH_settable_ctx_params()
596 return keyexch->settable_ctx_params(NULL, provctx); in EVP_KEYEXCH_settable_ctx_params()
H A Dsignature.c194 if (signature->settable_ctx_params != NULL) in evp_signature_from_algorithm()
196 signature->settable_ctx_params in evp_signature_from_algorithm()
387 if (sig == NULL || sig->settable_ctx_params == NULL) in EVP_SIGNATURE_settable_ctx_params()
391 return sig->settable_ctx_params(NULL, provctx); in EVP_SIGNATURE_settable_ctx_params()
H A Ddigest.c719 if (md != NULL && md->settable_ctx_params != NULL) { in EVP_MD_settable_ctx_params()
721 return md->settable_ctx_params(NULL, provctx); in EVP_MD_settable_ctx_params()
744 if (ctx->digest != NULL && ctx->digest->settable_ctx_params != NULL) { in EVP_MD_CTX_settable_params()
746 return ctx->digest->settable_ctx_params(ctx->algctx, alg); in EVP_MD_CTX_settable_params()
1023 if (md->settable_ctx_params == NULL) in evp_md_from_algorithm()
1024 md->settable_ctx_params = in evp_md_from_algorithm()
H A Devp_enc.c1294 if (cipher != NULL && cipher->settable_ctx_params != NULL) { in EVP_CIPHER_settable_ctx_params()
1296 return cipher->settable_ctx_params(NULL, provctx); in EVP_CIPHER_settable_ctx_params()
1316 if (cctx != NULL && cctx->cipher->settable_ctx_params != NULL) { in EVP_CIPHER_CTX_settable_params()
1318 return cctx->cipher->settable_ctx_params(cctx->algctx, alg); in EVP_CIPHER_CTX_settable_params()
1585 if (cipher->settable_ctx_params != NULL) in evp_cipher_from_algorithm()
1587 cipher->settable_ctx_params = in evp_cipher_from_algorithm()
H A Dpmeth_lib.c814 && ctx->op.kex.exchange->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
816 return ctx->op.kex.exchange->settable_ctx_params(ctx->op.kex.algctx, in EVP_PKEY_CTX_settable_params()
821 && ctx->op.sig.signature->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
824 return ctx->op.sig.signature->settable_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_settable_params()
829 && ctx->op.ciph.cipher->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
832 return ctx->op.ciph.cipher->settable_ctx_params(ctx->op.ciph.algctx, in EVP_PKEY_CTX_settable_params()
844 && ctx->op.encap.kem->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
846 return ctx->op.encap.kem->settable_ctx_params(ctx->op.encap.algctx, in EVP_PKEY_CTX_settable_params()
/netbsd/crypto/external/bsd/openssl/dist/crypto/encode_decode/
H A Dencoder_local.h38 OSSL_FUNC_encoder_settable_ctx_params_fn *settable_ctx_params; member
52 OSSL_FUNC_decoder_settable_ctx_params_fn *settable_ctx_params; member
H A Ddecoder_meth.c267 if (decoder->settable_ctx_params == NULL) in ossl_decoder_from_algorithm()
268 decoder->settable_ctx_params = in ossl_decoder_from_algorithm()
631 if (decoder != NULL && decoder->settable_ctx_params != NULL) { in OSSL_DECODER_settable_ctx_params()
634 return decoder->settable_ctx_params(provctx); in OSSL_DECODER_settable_ctx_params()
H A Dencoder_meth.c269 if (encoder->settable_ctx_params == NULL) in encoder_from_algorithm()
270 encoder->settable_ctx_params = in encoder_from_algorithm()
639 if (encoder != NULL && encoder->settable_ctx_params != NULL) { in OSSL_ENCODER_settable_ctx_params()
642 return encoder->settable_ctx_params(provctx); in OSSL_ENCODER_settable_ctx_params()
/netbsd/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/
H A Ddigestcommon.h102 settable_ctx_params, set_ctx_params) \ argument
113 { OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS, (void (*)(void))settable_ctx_params }, \
/netbsd/crypto/external/bsd/openssl/dist/include/crypto/
H A Devp.h216 OSSL_FUNC_mac_settable_ctx_params_fn *settable_ctx_params; member
237 OSSL_FUNC_kdf_settable_ctx_params_fn *settable_ctx_params; member
285 OSSL_FUNC_digest_settable_ctx_params_fn *settable_ctx_params; member
343 OSSL_FUNC_cipher_settable_ctx_params_fn *settable_ctx_params; member
/netbsd/crypto/external/bsd/openssl/dist/providers/implementations/signature/
H A Ddsa_sig.c506 static const OSSL_PARAM settable_ctx_params[] = { variable
523 return settable_ctx_params; in dsa_settable_ctx_params()
H A Decdsa_sig.c521 static const OSSL_PARAM settable_ctx_params[] = { variable
541 return settable_ctx_params; in ecdsa_settable_ctx_params()
H A Drsa_sig.c1370 static const OSSL_PARAM settable_ctx_params[] = { variable
1395 return settable_ctx_params; in rsa_settable_ctx_params()