Home
last modified time | relevance | path

Searched refs:gettable_ctx_params (Results 1 – 13 of 13) sorted by relevance

/openssl/crypto/evp/
H A Dmac_meth.c120 if (mac->gettable_ctx_params != NULL) in evp_mac_from_algorithm()
122 mac->gettable_ctx_params = in evp_mac_from_algorithm()
200 if (mac->gettable_ctx_params == NULL) in EVP_MAC_gettable_ctx_params()
203 return mac->gettable_ctx_params(NULL, alg); in EVP_MAC_gettable_ctx_params()
220 if (ctx->meth->gettable_ctx_params == NULL) in EVP_MAC_CTX_gettable_params()
223 return ctx->meth->gettable_ctx_params(ctx->algctx, alg); in EVP_MAC_CTX_gettable_params()
H A Dkdf_meth.c114 if (kdf->gettable_ctx_params != NULL) in evp_kdf_from_algorithm()
116 kdf->gettable_ctx_params = in evp_kdf_from_algorithm()
188 if (kdf->gettable_ctx_params == NULL) in EVP_KDF_gettable_ctx_params()
191 return kdf->gettable_ctx_params(NULL, alg); in EVP_KDF_gettable_ctx_params()
208 if (ctx->meth->gettable_ctx_params == NULL) in EVP_KDF_CTX_gettable_params()
211 return ctx->meth->gettable_ctx_params(ctx->algctx, alg); in EVP_KDF_CTX_gettable_params()
H A Devp_local.h157 OSSL_FUNC_keyexch_gettable_ctx_params_fn *gettable_ctx_params; member
191 OSSL_FUNC_signature_gettable_ctx_params_fn *gettable_ctx_params; member
218 OSSL_FUNC_asym_cipher_gettable_ctx_params_fn *gettable_ctx_params; member
238 OSSL_FUNC_kem_gettable_ctx_params_fn *gettable_ctx_params; member
H A Devp_rand.c43 OSSL_FUNC_rand_gettable_ctx_params_fn *gettable_ctx_params; member
206 if (rand->gettable_ctx_params != NULL) in evp_rand_from_algorithm()
208 rand->gettable_ctx_params = in evp_rand_from_algorithm()
457 if (rand->gettable_ctx_params == NULL) in EVP_RAND_gettable_ctx_params()
460 return rand->gettable_ctx_params(NULL, provctx); in EVP_RAND_gettable_ctx_params()
477 if (ctx->meth->gettable_ctx_params == NULL) in EVP_RAND_CTX_gettable_params()
480 return ctx->meth->gettable_ctx_params(ctx->algctx, provctx); in EVP_RAND_CTX_gettable_params()
H A Dkem.c372 if (kem->gettable_ctx_params != NULL) in evp_kem_from_algorithm()
374 kem->gettable_ctx_params in evp_kem_from_algorithm()
512 if (kem == NULL || kem->gettable_ctx_params == NULL) in EVP_KEM_gettable_ctx_params()
516 return kem->gettable_ctx_params(NULL, provctx); in EVP_KEM_gettable_ctx_params()
H A Dasymcipher.c407 if (cipher->gettable_ctx_params != NULL) in evp_asym_cipher_from_algorithm()
409 cipher->gettable_ctx_params in evp_asym_cipher_from_algorithm()
549 if (cip == NULL || cip->gettable_ctx_params == NULL) in EVP_ASYM_CIPHER_gettable_ctx_params()
553 return cip->gettable_ctx_params(NULL, provctx); in EVP_ASYM_CIPHER_gettable_ctx_params()
H A Dexchange.c99 if (exchange->gettable_ctx_params != NULL) in evp_keyexch_from_algorithm()
101 exchange->gettable_ctx_params in evp_keyexch_from_algorithm()
583 if (keyexch == NULL || keyexch->gettable_ctx_params == NULL) in EVP_KEYEXCH_gettable_ctx_params()
587 return keyexch->gettable_ctx_params(NULL, provctx); in EVP_KEYEXCH_gettable_ctx_params()
H A Ddigest.c854 if (md != NULL && md->gettable_ctx_params != NULL) { in EVP_MD_gettable_ctx_params()
856 return md->gettable_ctx_params(NULL, provctx); in EVP_MD_gettable_ctx_params()
879 if (ctx->digest != NULL && ctx->digest->gettable_ctx_params != NULL) { in EVP_MD_CTX_gettable_params()
881 return ctx->digest->gettable_ctx_params(ctx->algctx, provctx); in EVP_MD_CTX_gettable_params()
1114 if (md->gettable_ctx_params == NULL) in evp_md_from_algorithm()
1115 md->gettable_ctx_params = in evp_md_from_algorithm()
H A Dsignature.c215 if (signature->gettable_ctx_params != NULL) in evp_signature_from_algorithm()
217 signature->gettable_ctx_params in evp_signature_from_algorithm()
470 if (sig == NULL || sig->gettable_ctx_params == NULL) in EVP_SIGNATURE_gettable_ctx_params()
474 return sig->gettable_ctx_params(NULL, provctx); in EVP_SIGNATURE_gettable_ctx_params()
H A Devp_enc.c1383 if (cipher != NULL && cipher->gettable_ctx_params != NULL) { in EVP_CIPHER_gettable_ctx_params()
1385 return cipher->gettable_ctx_params(NULL, provctx); in EVP_CIPHER_gettable_ctx_params()
1405 if (cctx != NULL && cctx->cipher->gettable_ctx_params != NULL) { in EVP_CIPHER_CTX_gettable_params()
1407 return cctx->cipher->gettable_ctx_params(cctx->algctx, provctx); in EVP_CIPHER_CTX_gettable_params()
1663 if (cipher->gettable_ctx_params != NULL) in evp_cipher_from_algorithm()
1665 cipher->gettable_ctx_params = in evp_cipher_from_algorithm()
H A Dpmeth_lib.c758 && ctx->op.kex.exchange->gettable_ctx_params != NULL) { in EVP_PKEY_CTX_gettable_params()
760 return ctx->op.kex.exchange->gettable_ctx_params(ctx->op.kex.algctx, in EVP_PKEY_CTX_gettable_params()
765 && ctx->op.sig.signature->gettable_ctx_params != NULL) { in EVP_PKEY_CTX_gettable_params()
768 return ctx->op.sig.signature->gettable_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_gettable_params()
773 && ctx->op.ciph.cipher->gettable_ctx_params != NULL) { in EVP_PKEY_CTX_gettable_params()
776 return ctx->op.ciph.cipher->gettable_ctx_params(ctx->op.ciph.algctx, in EVP_PKEY_CTX_gettable_params()
781 && ctx->op.encap.kem->gettable_ctx_params != NULL) { in EVP_PKEY_CTX_gettable_params()
783 return ctx->op.encap.kem->gettable_ctx_params(ctx->op.encap.algctx, in EVP_PKEY_CTX_gettable_params()
/openssl/include/crypto/
H A Devp.h224 OSSL_FUNC_mac_gettable_ctx_params_fn *gettable_ctx_params; member
244 OSSL_FUNC_kdf_gettable_ctx_params_fn *gettable_ctx_params; member
295 OSSL_FUNC_digest_gettable_ctx_params_fn *gettable_ctx_params; member
350 OSSL_FUNC_cipher_gettable_ctx_params_fn *gettable_ctx_params; member
/openssl/doc/designs/
H A Dfips_indicator.md246 This must be placed in the algorithms gettable_ctx_params table
253 and/or get_ctx_params()/gettable_ctx_params() to be added if required.

Completed in 52 milliseconds