HomeSort by: relevance | last modified time | path
    Searched refs:settable_ctx_params (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/
encoder_local.h 38 OSSL_FUNC_encoder_settable_ctx_params_fn *settable_ctx_params; member in struct:ossl_encoder_st
52 OSSL_FUNC_decoder_settable_ctx_params_fn *settable_ctx_params; member in struct:ossl_decoder_st
decoder_meth.c 267 if (decoder->settable_ctx_params == NULL)
268 decoder->settable_ctx_params =
631 if (decoder != NULL && decoder->settable_ctx_params != NULL) {
634 return decoder->settable_ctx_params(provctx);
encoder_meth.c 269 if (encoder->settable_ctx_params == NULL)
270 encoder->settable_ctx_params =
639 if (encoder != NULL && encoder->settable_ctx_params != NULL) {
642 return encoder->settable_ctx_params(provctx);
  /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/
encoder_local.h 38 OSSL_FUNC_encoder_settable_ctx_params_fn *settable_ctx_params; member in struct:ossl_encoder_st
52 OSSL_FUNC_decoder_settable_ctx_params_fn *settable_ctx_params; member in struct:ossl_decoder_st
decoder_meth.c 254 if (decoder->settable_ctx_params == NULL)
255 decoder->settable_ctx_params = OSSL_FUNC_decoder_settable_ctx_params(fns);
610 if (decoder != NULL && decoder->settable_ctx_params != NULL) {
613 return decoder->settable_ctx_params(provctx);
encoder_meth.c 254 if (encoder->settable_ctx_params == NULL)
255 encoder->settable_ctx_params = OSSL_FUNC_encoder_settable_ctx_params(fns);
596 if (encoder != NULL && encoder->settable_ctx_params != NULL) {
599 return encoder->settable_ctx_params(provctx);
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
kdf_meth.c 117 if (kdf->settable_ctx_params != NULL)
119 kdf->settable_ctx_params = OSSL_FUNC_kdf_settable_ctx_params(fns);
198 if (kdf->settable_ctx_params == NULL)
201 return kdf->settable_ctx_params(NULL, alg);
218 if (ctx->meth->settable_ctx_params == NULL)
221 return ctx->meth->settable_ctx_params(ctx->algctx, alg);
mac_meth.c 124 if (mac->settable_ctx_params != NULL)
126 mac->settable_ctx_params = OSSL_FUNC_mac_settable_ctx_params(fns);
219 if (mac->settable_ctx_params == NULL)
222 return mac->settable_ctx_params(NULL, alg);
239 if (ctx->meth->settable_ctx_params == NULL)
242 return ctx->meth->settable_ctx_params(ctx->algctx, alg);
evp_local.h 155 OSSL_FUNC_keyexch_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_keyexch_st
193 OSSL_FUNC_signature_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_signature_st
243 OSSL_FUNC_asym_cipher_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_asym_cipher_st
263 OSSL_FUNC_kem_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_kem_st
evp_rand.c 44 OSSL_FUNC_rand_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_rand_st
210 if (rand->settable_ctx_params != NULL)
212 rand->settable_ctx_params = OSSL_FUNC_rand_settable_ctx_params(fns);
465 if (rand->settable_ctx_params == NULL)
468 return rand->settable_ctx_params(NULL, provctx);
485 if (ctx->meth->settable_ctx_params == NULL)
488 return ctx->meth->settable_ctx_params(ctx->algctx, provctx);
exchange.c 123 if (exchange->settable_ctx_params != NULL)
125 exchange->settable_ctx_params
137 * and freectx. The set_ctx_params and settable_ctx_params functions are
601 if (keyexch == NULL || keyexch->settable_ctx_params == NULL)
604 return keyexch->settable_ctx_params(NULL, provctx);
asymcipher.c 452 if (cipher->settable_ctx_params != NULL)
454 cipher->settable_ctx_params
470 * (decrypt_init decrypt). set_ctx_params and settable_ctx_params are
590 if (cip == NULL || cip->settable_ctx_params == NULL)
594 return cip->settable_ctx_params(NULL, provctx);
kem.c 398 if (kem->settable_ctx_params != NULL)
400 kem->settable_ctx_params
418 * set_ctx_params and settable_ctx_params are optional, but if one of
535 if (kem == NULL || kem->settable_ctx_params == NULL)
539 return kem->settable_ctx_params(NULL, provctx);
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
kdf_meth.c 121 if (kdf->settable_ctx_params != NULL)
123 kdf->settable_ctx_params =
199 if (kdf->settable_ctx_params == NULL)
202 return kdf->settable_ctx_params(NULL, alg);
219 if (ctx->meth->settable_ctx_params == NULL)
222 return ctx->meth->settable_ctx_params(ctx->algctx, alg);
mac_meth.c 129 if (mac->settable_ctx_params != NULL)
131 mac->settable_ctx_params =
213 if (mac->settable_ctx_params == NULL)
216 return mac->settable_ctx_params(NULL, alg);
233 if (ctx->meth->settable_ctx_params == NULL)
236 return ctx->meth->settable_ctx_params(ctx->algctx, alg);
evp_local.h 151 OSSL_FUNC_keyexch_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_keyexch_st
184 OSSL_FUNC_signature_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_signature_st
209 OSSL_FUNC_asym_cipher_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_asym_cipher_st
230 OSSL_FUNC_kem_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_kem_st
evp_rand.c 45 OSSL_FUNC_rand_settable_ctx_params_fn *settable_ctx_params; member in struct:evp_rand_st
210 if (rand->settable_ctx_params != NULL)
212 rand->settable_ctx_params =
455 if (rand->settable_ctx_params == NULL)
458 return rand->settable_ctx_params(NULL, provctx);
475 if (ctx->meth->settable_ctx_params == NULL)
478 return ctx->meth->settable_ctx_params(ctx->algctx, provctx);
asymcipher.c 408 if (cipher->settable_ctx_params != NULL)
410 cipher->settable_ctx_params
426 * (decrypt_init decrypt). set_ctx_params and settable_ctx_params are
547 if (cip == NULL || cip->settable_ctx_params == NULL)
551 return cip->settable_ctx_params(NULL, provctx);
exchange.c 117 if (exchange->settable_ctx_params != NULL)
119 exchange->settable_ctx_params
131 * and freectx. The set_ctx_params and settable_ctx_params functions are
593 if (keyexch == NULL || keyexch->settable_ctx_params == NULL)
596 return keyexch->settable_ctx_params(NULL, provctx);
kem.c 342 if (kem->settable_ctx_params != NULL)
344 kem->settable_ctx_params
360 * (decapsulate_init, decapsulate). set_ctx_params and settable_ctx_params are
477 if (kem == NULL || kem->settable_ctx_params == NULL)
481 return kem->settable_ctx_params(NULL, provctx);
signature.c 194 if (signature->settable_ctx_params != NULL)
196 signature->settable_ctx_params
265 * set_ctx_params and settable_ctx_params are optional, but if one of
387 if (sig == NULL || sig->settable_ctx_params == NULL)
391 return sig->settable_ctx_params(NULL, provctx);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/
digestcommon.h 114 settable_ctx_params, set_ctx_params) \
125 { OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS, (void (*)(void))settable_ctx_params }, \
  /src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/
digestcommon.h 102 settable_ctx_params, set_ctx_params) \
113 { OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS, (void (*)(void))settable_ctx_params }, \
  /src/crypto/external/apache2/openssl/dist/providers/implementations/signature/
ml_dsa_sig.c 290 static const OSSL_PARAM settable_ctx_params[] = { local
299 return settable_ctx_params;
slh_dsa_sig.c 304 static const OSSL_PARAM settable_ctx_params[] = { local
312 return settable_ctx_params;

Completed in 35 milliseconds

1 2