HomeSort by: relevance | last modified time | path
    Searched refs:gettable_ctx_params (Results 1 - 24 of 24) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/evp/
kdf_meth.c 112 if (kdf->gettable_ctx_params != NULL)
114 kdf->gettable_ctx_params = OSSL_FUNC_kdf_gettable_ctx_params(fns);
188 if (kdf->gettable_ctx_params == NULL)
191 return kdf->gettable_ctx_params(NULL, alg);
208 if (ctx->meth->gettable_ctx_params == NULL)
211 return ctx->meth->gettable_ctx_params(ctx->algctx, alg);
mac_meth.c 119 if (mac->gettable_ctx_params != NULL)
121 mac->gettable_ctx_params = OSSL_FUNC_mac_gettable_ctx_params(fns);
209 if (mac->gettable_ctx_params == NULL)
212 return mac->gettable_ctx_params(NULL, alg);
229 if (ctx->meth->gettable_ctx_params == NULL)
232 return ctx->meth->gettable_ctx_params(ctx->algctx, alg);
evp_local.h 157 OSSL_FUNC_keyexch_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_keyexch_st
191 OSSL_FUNC_signature_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_signature_st
241 OSSL_FUNC_asym_cipher_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_asym_cipher_st
261 OSSL_FUNC_kem_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_kem_st
evp_rand.c 43 OSSL_FUNC_rand_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_rand_st
205 if (rand->gettable_ctx_params != NULL)
207 rand->gettable_ctx_params = OSSL_FUNC_rand_gettable_ctx_params(fns);
455 if (rand->gettable_ctx_params == NULL)
458 return rand->gettable_ctx_params(NULL, provctx);
475 if (ctx->meth->gettable_ctx_params == NULL)
478 return ctx->meth->gettable_ctx_params(ctx->algctx, provctx);
asymcipher.c 436 if (cipher->gettable_ctx_params != NULL)
438 cipher->gettable_ctx_params
471 * gettable_ctx_params. The dupctx function is optional.
577 if (cip == NULL || cip->gettable_ctx_params == NULL)
581 return cip->gettable_ctx_params(NULL, provctx);
exchange.c 110 if (exchange->gettable_ctx_params != NULL)
112 exchange->gettable_ctx_params
139 * be present. Same goes for get_ctx_params and gettable_ctx_params.
590 if (keyexch == NULL || keyexch->gettable_ctx_params == NULL)
594 return keyexch->gettable_ctx_params(NULL, provctx);
kem.c 382 if (kem->gettable_ctx_params != NULL)
384 kem->gettable_ctx_params
418 * applies to get_ctx_params and gettable_ctx_params.
522 if (kem == NULL || kem->gettable_ctx_params == NULL)
526 return kem->gettable_ctx_params(NULL, provctx);
digest.c 855 if (md != NULL && md->gettable_ctx_params != NULL) {
857 return md->gettable_ctx_params(NULL, provctx);
880 if (ctx->digest != NULL && ctx->digest->gettable_ctx_params != NULL) {
882 return ctx->digest->gettable_ctx_params(ctx->algctx, provctx);
1111 if (md->gettable_ctx_params == NULL)
1112 md->gettable_ctx_params = OSSL_FUNC_digest_gettable_ctx_params(fns);
signature.c 228 if (signature->gettable_ctx_params != NULL)
230 signature->gettable_ctx_params
550 if (sig == NULL || sig->gettable_ctx_params == NULL)
554 return sig->gettable_ctx_params(NULL, provctx);
evp_enc.c 1696 if (cipher != NULL && cipher->gettable_ctx_params != NULL) {
1698 return cipher->gettable_ctx_params(NULL, provctx);
1718 if (cctx != NULL && cctx->cipher->gettable_ctx_params != NULL) {
1720 return cctx->cipher->gettable_ctx_params(cctx->algctx, provctx);
2010 if (cipher->gettable_ctx_params != NULL)
2012 cipher->gettable_ctx_params = OSSL_FUNC_cipher_gettable_ctx_params(fns);
pmeth_lib.c 764 && ctx->op.kex.exchange->gettable_ctx_params != NULL) {
766 return ctx->op.kex.exchange->gettable_ctx_params(ctx->op.kex.algctx,
771 && ctx->op.sig.signature->gettable_ctx_params != NULL) {
774 return ctx->op.sig.signature->gettable_ctx_params(ctx->op.sig.algctx,
779 && ctx->op.ciph.cipher->gettable_ctx_params != NULL) {
782 return ctx->op.ciph.cipher->gettable_ctx_params(ctx->op.ciph.algctx,
787 && ctx->op.encap.kem->gettable_ctx_params != NULL) {
789 return ctx->op.encap.kem->gettable_ctx_params(ctx->op.encap.algctx,
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
kdf_meth.c 115 if (kdf->gettable_ctx_params != NULL)
117 kdf->gettable_ctx_params =
189 if (kdf->gettable_ctx_params == NULL)
192 return kdf->gettable_ctx_params(NULL, alg);
209 if (ctx->meth->gettable_ctx_params == NULL)
212 return ctx->meth->gettable_ctx_params(ctx->algctx, alg);
mac_meth.c 123 if (mac->gettable_ctx_params != NULL)
125 mac->gettable_ctx_params =
203 if (mac->gettable_ctx_params == NULL)
206 return mac->gettable_ctx_params(NULL, alg);
223 if (ctx->meth->gettable_ctx_params == NULL)
226 return ctx->meth->gettable_ctx_params(ctx->algctx, alg);
evp_local.h 153 OSSL_FUNC_keyexch_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_keyexch_st
182 OSSL_FUNC_signature_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_signature_st
207 OSSL_FUNC_asym_cipher_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_asym_cipher_st
228 OSSL_FUNC_kem_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_kem_st
evp_rand.c 44 OSSL_FUNC_rand_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_rand_st
204 if (rand->gettable_ctx_params != NULL)
206 rand->gettable_ctx_params =
445 if (rand->gettable_ctx_params == NULL)
448 return rand->gettable_ctx_params(NULL, provctx);
465 if (ctx->meth->gettable_ctx_params == NULL)
468 return ctx->meth->gettable_ctx_params(ctx->algctx, provctx);
asymcipher.c 394 if (cipher->gettable_ctx_params != NULL)
396 cipher->gettable_ctx_params
429 * gettable_ctx_params. The dupctx function is optional.
536 if (cip == NULL || cip->gettable_ctx_params == NULL)
540 return cip->gettable_ctx_params(NULL, provctx);
exchange.c 104 if (exchange->gettable_ctx_params != NULL)
106 exchange->gettable_ctx_params
133 * be present. Same goes for get_ctx_params and gettable_ctx_params.
582 if (keyexch == NULL || keyexch->gettable_ctx_params == NULL)
586 return keyexch->gettable_ctx_params(NULL, provctx);
kem.c 328 if (kem->gettable_ctx_params != NULL)
330 kem->gettable_ctx_params
363 * gettable_ctx_params. The dupctx function is optional.
466 if (kem == NULL || kem->gettable_ctx_params == NULL)
470 return kem->gettable_ctx_params(NULL, provctx);
signature.c 180 if (signature->gettable_ctx_params != NULL)
182 signature->gettable_ctx_params
267 * applies to get_ctx_params and gettable_ctx_params. The same rules
376 if (sig == NULL || sig->gettable_ctx_params == NULL)
380 return sig->gettable_ctx_params(NULL, provctx);
digest.c 775 if (md != NULL && md->gettable_ctx_params != NULL) {
777 return md->gettable_ctx_params(NULL, provctx);
800 if (ctx->digest != NULL && ctx->digest->gettable_ctx_params != NULL) {
802 return ctx->digest->gettable_ctx_params(ctx->algctx, provctx);
1028 if (md->gettable_ctx_params == NULL)
1029 md->gettable_ctx_params =
evp_enc.c 1346 if (cipher != NULL && cipher->gettable_ctx_params != NULL) {
1348 return cipher->gettable_ctx_params(NULL, provctx);
1368 if (cctx != NULL && cctx->cipher->gettable_ctx_params != NULL) {
1370 return cctx->cipher->gettable_ctx_params(cctx->algctx, provctx);
1620 if (cipher->gettable_ctx_params != NULL)
1622 cipher->gettable_ctx_params =
pmeth_lib.c 778 && ctx->op.kex.exchange->gettable_ctx_params != NULL) {
780 return ctx->op.kex.exchange->gettable_ctx_params(ctx->op.kex.algctx,
785 && ctx->op.sig.signature->gettable_ctx_params != NULL) {
788 return ctx->op.sig.signature->gettable_ctx_params(ctx->op.sig.algctx,
793 && ctx->op.ciph.cipher->gettable_ctx_params != NULL) {
796 return ctx->op.ciph.cipher->gettable_ctx_params(ctx->op.ciph.algctx,
801 && ctx->op.encap.kem->gettable_ctx_params != NULL) {
803 return ctx->op.encap.kem->gettable_ctx_params(ctx->op.encap.algctx,
  /src/crypto/external/apache2/openssl/dist/include/crypto/
evp.h 224 OSSL_FUNC_mac_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_mac_st
245 OSSL_FUNC_kdf_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_kdf_st
296 OSSL_FUNC_digest_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_md_st
355 OSSL_FUNC_cipher_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_cipher_st
  /src/crypto/external/bsd/openssl/dist/include/crypto/
evp.h 215 OSSL_FUNC_mac_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_mac_st
236 OSSL_FUNC_kdf_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_kdf_st
286 OSSL_FUNC_digest_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_md_st
342 OSSL_FUNC_cipher_gettable_ctx_params_fn *gettable_ctx_params; member in struct:evp_cipher_st

Completed in 54 milliseconds