Searched refs:set_ctx_params (Results 1 – 14 of 14) sorted by relevance
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| D | evp_local.h | 150 OSSL_FUNC_keyexch_set_ctx_params_fn *set_ctx_params; member 183 OSSL_FUNC_signature_set_ctx_params_fn *set_ctx_params; member 208 OSSL_FUNC_asym_cipher_set_ctx_params_fn *set_ctx_params; member 229 OSSL_FUNC_kem_set_ctx_params_fn *set_ctx_params; member
|
| D | evp_utils.c | 76 evp_do_ciph_ctx_setparams, set_ctx_params) 81 evp_do_md_ctx_setparams, set_ctx_params)
|
| D | evp_rand.c | 48 OSSL_FUNC_rand_set_ctx_params_fn *set_ctx_params; member 227 if (rand->set_ctx_params != NULL) in evp_rand_from_algorithm() 229 rand->set_ctx_params = OSSL_FUNC_rand_set_ctx_params(fns); in evp_rand_from_algorithm() 418 if (ctx->meth->set_ctx_params != NULL) in evp_rand_set_ctx_params_locked() 419 return ctx->meth->set_ctx_params(ctx->algctx, params); in evp_rand_set_ctx_params_locked()
|
| D | kdf_lib.c | 171 if (ctx->meth->set_ctx_params != NULL) in EVP_KDF_CTX_set_params() 172 return ctx->meth->set_ctx_params(ctx->algctx, params); in EVP_KDF_CTX_set_params()
|
| D | kdf_meth.c | 137 if (kdf->set_ctx_params != NULL) in evp_kdf_from_algorithm() 139 kdf->set_ctx_params = OSSL_FUNC_kdf_set_ctx_params(fns); in evp_kdf_from_algorithm()
|
| D | mac_meth.c | 145 if (mac->set_ctx_params != NULL) in evp_mac_from_algorithm() 147 mac->set_ctx_params = OSSL_FUNC_mac_set_ctx_params(fns); in evp_mac_from_algorithm()
|
| D | mac_lib.c | 207 if (ctx->meth->set_ctx_params != NULL) in EVP_MAC_CTX_set_params() 208 return ctx->meth->set_ctx_params(ctx->algctx, params); in EVP_MAC_CTX_set_params()
|
| D | kem.c | 335 if (kem->set_ctx_params != NULL) in evp_kem_from_algorithm() 337 kem->set_ctx_params in evp_kem_from_algorithm()
|
| D | pmeth_lib.c | 695 && ctx->op.kex.exchange->set_ctx_params != NULL) in EVP_PKEY_CTX_set_params() 697 ctx->op.kex.exchange->set_ctx_params(ctx->op.kex.algctx, in EVP_PKEY_CTX_set_params() 701 && ctx->op.sig.signature->set_ctx_params != NULL) in EVP_PKEY_CTX_set_params() 703 ctx->op.sig.signature->set_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_set_params() 707 && ctx->op.ciph.cipher->set_ctx_params != NULL) in EVP_PKEY_CTX_set_params() 709 ctx->op.ciph.cipher->set_ctx_params(ctx->op.ciph.algctx, in EVP_PKEY_CTX_set_params() 719 && ctx->op.encap.kem->set_ctx_params != NULL) in EVP_PKEY_CTX_set_params() 721 ctx->op.encap.kem->set_ctx_params(ctx->op.encap.algctx, in EVP_PKEY_CTX_set_params()
|
| D | digest.c | 709 if (ctx->digest != NULL && ctx->digest->set_ctx_params != NULL) in EVP_MD_CTX_set_params() 710 return ctx->digest->set_ctx_params(ctx->algctx, params); in EVP_MD_CTX_set_params() 1011 if (md->set_ctx_params == NULL) in evp_md_from_algorithm() 1012 md->set_ctx_params = OSSL_FUNC_digest_set_ctx_params(fns); in evp_md_from_algorithm()
|
| D | asymcipher.c | 401 if (cipher->set_ctx_params != NULL) in evp_asym_cipher_from_algorithm() 403 cipher->set_ctx_params in evp_asym_cipher_from_algorithm()
|
| D | exchange.c | 111 if (exchange->set_ctx_params != NULL) in evp_keyexch_from_algorithm() 113 exchange->set_ctx_params = OSSL_FUNC_keyexch_set_ctx_params(fns); in evp_keyexch_from_algorithm()
|
| D | evp_enc.c | 1309 if (ctx->cipher != NULL && ctx->cipher->set_ctx_params != NULL) { in EVP_CIPHER_CTX_set_params() 1311 return ctx->cipher->set_ctx_params(ctx->algctx, params); in EVP_CIPHER_CTX_set_params() 1610 if (cipher->set_ctx_params != NULL) in evp_cipher_from_algorithm() 1612 cipher->set_ctx_params = OSSL_FUNC_cipher_set_ctx_params(fns); in evp_cipher_from_algorithm()
|
| D | signature.c | 187 if (signature->set_ctx_params != NULL) in evp_signature_from_algorithm() 189 signature->set_ctx_params in evp_signature_from_algorithm()
|