Home
last modified time | relevance | path

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

/openssl-master/crypto/evp/
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()
A Dmac_meth.c120 if (mac->settable_ctx_params != NULL) in evp_mac_from_algorithm()
122 mac->settable_ctx_params = in evp_mac_from_algorithm()
204 if (mac->settable_ctx_params == NULL) in EVP_MAC_settable_ctx_params()
207 return mac->settable_ctx_params(NULL, alg); in EVP_MAC_settable_ctx_params()
224 if (ctx->meth->settable_ctx_params == NULL) in EVP_MAC_CTX_settable_params()
227 return ctx->meth->settable_ctx_params(ctx->algctx, alg); in EVP_MAC_CTX_settable_params()
A Devp_local.h150 OSSL_FUNC_keyexch_settable_ctx_params_fn *settable_ctx_params; member
183 OSSL_FUNC_signature_settable_ctx_params_fn *settable_ctx_params; member
208 OSSL_FUNC_asym_cipher_settable_ctx_params_fn *settable_ctx_params; member
229 OSSL_FUNC_kem_settable_ctx_params_fn *settable_ctx_params; member
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()
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()
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()
A Dexchange.c117 if (exchange->settable_ctx_params != NULL) in evp_keyexch_from_algorithm()
119 exchange->settable_ctx_params in evp_keyexch_from_algorithm()
574 if (keyexch == NULL || keyexch->settable_ctx_params == NULL) in EVP_KEYEXCH_settable_ctx_params()
577 return keyexch->settable_ctx_params(NULL, provctx); in EVP_KEYEXCH_settable_ctx_params()
A Dsignature.c194 if (signature->settable_ctx_params != NULL) in evp_signature_from_algorithm()
196 signature->settable_ctx_params in evp_signature_from_algorithm()
386 if (sig == NULL || sig->settable_ctx_params == NULL) in EVP_SIGNATURE_settable_ctx_params()
390 return sig->settable_ctx_params(NULL, provctx); in EVP_SIGNATURE_settable_ctx_params()
A Ddigest.c690 if (md != NULL && md->settable_ctx_params != NULL) { in EVP_MD_settable_ctx_params()
692 return md->settable_ctx_params(NULL, provctx); in EVP_MD_settable_ctx_params()
715 if (ctx->digest != NULL && ctx->digest->settable_ctx_params != NULL) { in EVP_MD_CTX_settable_params()
717 return ctx->digest->settable_ctx_params(ctx->algctx, alg); in EVP_MD_CTX_settable_params()
994 if (md->settable_ctx_params == NULL) in evp_md_from_algorithm()
995 md->settable_ctx_params = in evp_md_from_algorithm()
A Devp_enc.c1275 if (cipher != NULL && cipher->settable_ctx_params != NULL) { in EVP_CIPHER_settable_ctx_params()
1277 return cipher->settable_ctx_params(NULL, provctx); in EVP_CIPHER_settable_ctx_params()
1297 if (cctx != NULL && cctx->cipher->settable_ctx_params != NULL) { in EVP_CIPHER_CTX_settable_params()
1299 return cctx->cipher->settable_ctx_params(cctx->algctx, alg); in EVP_CIPHER_CTX_settable_params()
1566 if (cipher->settable_ctx_params != NULL) in evp_cipher_from_algorithm()
1568 cipher->settable_ctx_params = in evp_cipher_from_algorithm()
A Dpmeth_lib.c802 && ctx->op.kex.exchange->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
804 return ctx->op.kex.exchange->settable_ctx_params(ctx->op.kex.algctx, in EVP_PKEY_CTX_settable_params()
809 && ctx->op.sig.signature->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
812 return ctx->op.sig.signature->settable_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_settable_params()
817 && ctx->op.ciph.cipher->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
820 return ctx->op.ciph.cipher->settable_ctx_params(ctx->op.ciph.algctx, in EVP_PKEY_CTX_settable_params()
832 && ctx->op.encap.kem->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
834 return ctx->op.encap.kem->settable_ctx_params(ctx->op.encap.algctx, in EVP_PKEY_CTX_settable_params()
/openssl-master/crypto/encode_decode/
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
A Ddecoder_meth.c242 if (decoder->settable_ctx_params == NULL) in ossl_decoder_from_algorithm()
243 decoder->settable_ctx_params = in ossl_decoder_from_algorithm()
583 if (decoder != NULL && decoder->settable_ctx_params != NULL) { in OSSL_DECODER_settable_ctx_params()
586 return decoder->settable_ctx_params(provctx); in OSSL_DECODER_settable_ctx_params()
A Dencoder_meth.c244 if (encoder->settable_ctx_params == NULL) in encoder_from_algorithm()
245 encoder->settable_ctx_params = in encoder_from_algorithm()
591 if (encoder != NULL && encoder->settable_ctx_params != NULL) { in OSSL_ENCODER_settable_ctx_params()
594 return encoder->settable_ctx_params(provctx); in OSSL_ENCODER_settable_ctx_params()
/openssl-master/providers/implementations/include/prov/
A Ddigestcommon.h99 settable_ctx_params, set_ctx_params) \ argument
110 { OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS, (void (*)(void))settable_ctx_params }, \
/openssl-master/include/crypto/
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
/openssl-master/providers/implementations/signature/
A Ddsa_sig.c506 static const OSSL_PARAM settable_ctx_params[] = { variable
523 return settable_ctx_params; in dsa_settable_ctx_params()
A Decdsa_sig.c521 static const OSSL_PARAM settable_ctx_params[] = { variable
541 return settable_ctx_params; in ecdsa_settable_ctx_params()
A Drsa_sig.c1364 static const OSSL_PARAM settable_ctx_params[] = { variable
1389 return settable_ctx_params; in rsa_settable_ctx_params()

Completed in 40 milliseconds