Home
last modified time | relevance | path

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

/openssl/crypto/evp/
H A Dmac_meth.c126 if (mac->settable_ctx_params != NULL) in evp_mac_from_algorithm()
128 mac->settable_ctx_params = in evp_mac_from_algorithm()
210 if (mac->settable_ctx_params == NULL) in EVP_MAC_settable_ctx_params()
213 return mac->settable_ctx_params(NULL, alg); in EVP_MAC_settable_ctx_params()
230 if (ctx->meth->settable_ctx_params == NULL) in EVP_MAC_CTX_settable_params()
233 return ctx->meth->settable_ctx_params(ctx->algctx, alg); in EVP_MAC_CTX_settable_params()
H A Dkdf_meth.c120 if (kdf->settable_ctx_params != NULL) in evp_kdf_from_algorithm()
122 kdf->settable_ctx_params = in evp_kdf_from_algorithm()
198 if (kdf->settable_ctx_params == NULL) in EVP_KDF_settable_ctx_params()
201 return kdf->settable_ctx_params(NULL, alg); in EVP_KDF_settable_ctx_params()
218 if (ctx->meth->settable_ctx_params == NULL) in EVP_KDF_CTX_settable_params()
221 return ctx->meth->settable_ctx_params(ctx->algctx, alg); in EVP_KDF_CTX_settable_params()
H A Devp_local.h153 OSSL_FUNC_keyexch_settable_ctx_params_fn *settable_ctx_params; member
185 OSSL_FUNC_signature_settable_ctx_params_fn *settable_ctx_params; member
209 OSSL_FUNC_asym_cipher_settable_ctx_params_fn *settable_ctx_params; member
229 OSSL_FUNC_kem_settable_ctx_params_fn *settable_ctx_params; member
H A Devp_rand.c44 OSSL_FUNC_rand_settable_ctx_params_fn *settable_ctx_params; member
212 if (rand->settable_ctx_params != NULL) in evp_rand_from_algorithm()
214 rand->settable_ctx_params = in evp_rand_from_algorithm()
467 if (rand->settable_ctx_params == NULL) in EVP_RAND_settable_ctx_params()
470 return rand->settable_ctx_params(NULL, provctx); in EVP_RAND_settable_ctx_params()
487 if (ctx->meth->settable_ctx_params == NULL) in EVP_RAND_CTX_settable_params()
490 return ctx->meth->settable_ctx_params(ctx->algctx, provctx); in EVP_RAND_CTX_settable_params()
H A Dkem.c386 if (kem->settable_ctx_params != NULL) in evp_kem_from_algorithm()
388 kem->settable_ctx_params in evp_kem_from_algorithm()
523 if (kem == NULL || kem->settable_ctx_params == NULL) in EVP_KEM_settable_ctx_params()
527 return kem->settable_ctx_params(NULL, provctx); in EVP_KEM_settable_ctx_params()
H A Dasymcipher.c421 if (cipher->settable_ctx_params != NULL) in evp_asym_cipher_from_algorithm()
423 cipher->settable_ctx_params in evp_asym_cipher_from_algorithm()
560 if (cip == NULL || cip->settable_ctx_params == NULL) in EVP_ASYM_CIPHER_settable_ctx_params()
564 return cip->settable_ctx_params(NULL, provctx); in EVP_ASYM_CIPHER_settable_ctx_params()
H A Dexchange.c112 if (exchange->settable_ctx_params != NULL) in evp_keyexch_from_algorithm()
114 exchange->settable_ctx_params in evp_keyexch_from_algorithm()
594 if (keyexch == NULL || keyexch->settable_ctx_params == NULL) in EVP_KEYEXCH_settable_ctx_params()
597 return keyexch->settable_ctx_params(NULL, provctx); in EVP_KEYEXCH_settable_ctx_params()
H A Dsignature.c190 if (signature->settable_ctx_params != NULL) in evp_signature_from_algorithm()
192 signature->settable_ctx_params in evp_signature_from_algorithm()
383 if (sig == NULL || sig->settable_ctx_params == NULL) in EVP_SIGNATURE_settable_ctx_params()
387 return sig->settable_ctx_params(NULL, provctx); in EVP_SIGNATURE_settable_ctx_params()
H A Ddigest.c796 if (md != NULL && md->settable_ctx_params != NULL) { in EVP_MD_settable_ctx_params()
798 return md->settable_ctx_params(NULL, provctx); in EVP_MD_settable_ctx_params()
821 if (ctx->digest != NULL && ctx->digest->settable_ctx_params != NULL) { in EVP_MD_CTX_settable_params()
823 return ctx->digest->settable_ctx_params(ctx->algctx, alg); in EVP_MD_CTX_settable_params()
1102 if (md->settable_ctx_params == NULL) in evp_md_from_algorithm()
1103 md->settable_ctx_params = in evp_md_from_algorithm()
H A Devp_enc.c1372 if (cipher != NULL && cipher->settable_ctx_params != NULL) { in EVP_CIPHER_settable_ctx_params()
1374 return cipher->settable_ctx_params(NULL, provctx); in EVP_CIPHER_settable_ctx_params()
1394 if (cctx != NULL && cctx->cipher->settable_ctx_params != NULL) { in EVP_CIPHER_CTX_settable_params()
1396 return cctx->cipher->settable_ctx_params(cctx->algctx, alg); in EVP_CIPHER_CTX_settable_params()
1669 if (cipher->settable_ctx_params != NULL) in evp_cipher_from_algorithm()
1671 cipher->settable_ctx_params = in evp_cipher_from_algorithm()
H A Dpmeth_lib.c789 && ctx->op.kex.exchange->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
791 return ctx->op.kex.exchange->settable_ctx_params(ctx->op.kex.algctx, in EVP_PKEY_CTX_settable_params()
796 && ctx->op.sig.signature->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
799 return ctx->op.sig.signature->settable_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_settable_params()
804 && ctx->op.ciph.cipher->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
807 return ctx->op.ciph.cipher->settable_ctx_params(ctx->op.ciph.algctx, in EVP_PKEY_CTX_settable_params()
819 && ctx->op.encap.kem->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
821 return ctx->op.encap.kem->settable_ctx_params(ctx->op.encap.algctx, in EVP_PKEY_CTX_settable_params()
/openssl/crypto/encode_decode/
H A Dencoder_local.h37 OSSL_FUNC_encoder_settable_ctx_params_fn *settable_ctx_params; member
51 OSSL_FUNC_decoder_settable_ctx_params_fn *settable_ctx_params; member
H A Ddecoder_meth.c246 if (decoder->settable_ctx_params == NULL) in ossl_decoder_from_algorithm()
247 decoder->settable_ctx_params = in ossl_decoder_from_algorithm()
604 if (decoder != NULL && decoder->settable_ctx_params != NULL) { in OSSL_DECODER_settable_ctx_params()
607 return decoder->settable_ctx_params(provctx); in OSSL_DECODER_settable_ctx_params()
H A Dencoder_meth.c248 if (encoder->settable_ctx_params == NULL) in encoder_from_algorithm()
249 encoder->settable_ctx_params = in encoder_from_algorithm()
594 if (encoder != NULL && encoder->settable_ctx_params != NULL) { in OSSL_ENCODER_settable_ctx_params()
597 return encoder->settable_ctx_params(provctx); in OSSL_ENCODER_settable_ctx_params()
/openssl/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 }, \
/openssl/include/crypto/
H A Devp.h225 OSSL_FUNC_mac_settable_ctx_params_fn *settable_ctx_params; member
245 OSSL_FUNC_kdf_settable_ctx_params_fn *settable_ctx_params; member
293 OSSL_FUNC_digest_settable_ctx_params_fn *settable_ctx_params; member
350 OSSL_FUNC_cipher_settable_ctx_params_fn *settable_ctx_params; member
/openssl/providers/implementations/signature/
H A Ddsa_sig.c524 static const OSSL_PARAM settable_ctx_params[] = { variable
542 return settable_ctx_params; in dsa_settable_ctx_params()
H A Decdsa_sig.c547 static const OSSL_PARAM settable_ctx_params[] = { variable
568 return settable_ctx_params; in ecdsa_settable_ctx_params()
H A Deddsa_sig.c580 static const OSSL_PARAM settable_ctx_params[] = { variable
589 return settable_ctx_params; in eddsa_settable_ctx_params()
H A Drsa_sig.c1392 static const OSSL_PARAM settable_ctx_params[] = { variable
1417 return settable_ctx_params; in rsa_settable_ctx_params()

Completed in 76 milliseconds