| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| evp_utils.c | 76 evp_do_ciph_ctx_setparams, set_ctx_params) 81 evp_do_md_ctx_setparams, set_ctx_params)
|
| kdf_lib.c | 169 if (ctx->meth->set_ctx_params != NULL) 170 return ctx->meth->set_ctx_params(ctx->algctx, params);
|
| evp_local.h | 154 OSSL_FUNC_keyexch_set_ctx_params_fn *set_ctx_params; member in struct:evp_keyexch_st 192 OSSL_FUNC_signature_set_ctx_params_fn *set_ctx_params; member in struct:evp_signature_st 242 OSSL_FUNC_asym_cipher_set_ctx_params_fn *set_ctx_params; member in struct:evp_asym_cipher_st 262 OSSL_FUNC_kem_set_ctx_params_fn *set_ctx_params; member in struct:evp_kem_st
|
| kdf_meth.c | 132 if (kdf->set_ctx_params != NULL) 134 kdf->set_ctx_params = OSSL_FUNC_kdf_set_ctx_params(fns);
|
| mac_meth.c | 139 if (mac->set_ctx_params != NULL) 141 mac->set_ctx_params = OSSL_FUNC_mac_set_ctx_params(fns);
|
| evp_rand.c | 47 OSSL_FUNC_rand_set_ctx_params_fn *set_ctx_params; member in struct:evp_rand_st 226 if (rand->set_ctx_params != NULL) 228 rand->set_ctx_params = OSSL_FUNC_rand_set_ctx_params(fns); 428 if (ctx->meth->set_ctx_params != NULL) 429 return ctx->meth->set_ctx_params(ctx->algctx, params);
|
| mac_lib.c | 219 if (ctx->meth->set_ctx_params != NULL) 220 return ctx->meth->set_ctx_params(ctx->algctx, params);
|
| asymcipher.c | 443 if (cipher->set_ctx_params != NULL) 445 cipher->set_ctx_params 468 * (decrypt_init decrypt). set_ctx_params and settable_ctx_params are
|
| exchange.c | 117 if (exchange->set_ctx_params != NULL) 119 exchange->set_ctx_params = OSSL_FUNC_keyexch_set_ctx_params(fns); 137 * and freectx. The set_ctx_params and settable_ctx_params functions are
|
| kem.c | 389 if (kem->set_ctx_params != NULL) 391 kem->set_ctx_params 416 * set_ctx_params and settable_ctx_params are optional, but if one of
|
| /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/ |
| encoder_local.h | 37 OSSL_FUNC_encoder_set_ctx_params_fn *set_ctx_params; member in struct:ossl_encoder_st 51 OSSL_FUNC_decoder_set_ctx_params_fn *set_ctx_params; member in struct:ossl_decoder_st
|
| decoder_meth.c | 262 if (decoder->set_ctx_params == NULL) 263 decoder->set_ctx_params = 683 if (decoderctx == NULL || decoder->set_ctx_params == NULL) 685 if (!decoder->set_ctx_params(decoderctx, params))
|
| encoder_meth.c | 264 if (encoder->set_ctx_params == NULL) 265 encoder->set_ctx_params = 683 if (encoderctx == NULL || encoder->set_ctx_params == NULL) 685 if (!encoder->set_ctx_params(encoderctx, params))
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| evp_utils.c | 76 evp_do_ciph_ctx_setparams, set_ctx_params) 81 evp_do_md_ctx_setparams, set_ctx_params)
|
| kdf_lib.c | 171 if (ctx->meth->set_ctx_params != NULL) 172 return ctx->meth->set_ctx_params(ctx->algctx, params);
|
| evp_local.h | 150 OSSL_FUNC_keyexch_set_ctx_params_fn *set_ctx_params; member in struct:evp_keyexch_st 183 OSSL_FUNC_signature_set_ctx_params_fn *set_ctx_params; member in struct:evp_signature_st 208 OSSL_FUNC_asym_cipher_set_ctx_params_fn *set_ctx_params; member in struct:evp_asym_cipher_st 229 OSSL_FUNC_kem_set_ctx_params_fn *set_ctx_params; member in struct:evp_kem_st
|
| kdf_meth.c | 137 if (kdf->set_ctx_params != NULL) 139 kdf->set_ctx_params = OSSL_FUNC_kdf_set_ctx_params(fns);
|
| mac_meth.c | 145 if (mac->set_ctx_params != NULL) 147 mac->set_ctx_params = OSSL_FUNC_mac_set_ctx_params(fns);
|
| evp_rand.c | 48 OSSL_FUNC_rand_set_ctx_params_fn *set_ctx_params; member in struct:evp_rand_st 227 if (rand->set_ctx_params != NULL) 229 rand->set_ctx_params = OSSL_FUNC_rand_set_ctx_params(fns); 418 if (ctx->meth->set_ctx_params != NULL) 419 return ctx->meth->set_ctx_params(ctx->algctx, params);
|
| mac_lib.c | 207 if (ctx->meth->set_ctx_params != NULL) 208 return ctx->meth->set_ctx_params(ctx->algctx, params);
|
| /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/ |
| encoder_local.h | 37 OSSL_FUNC_encoder_set_ctx_params_fn *set_ctx_params; member in struct:ossl_encoder_st 51 OSSL_FUNC_decoder_set_ctx_params_fn *set_ctx_params; member in struct:ossl_decoder_st
|
| decoder_meth.c | 250 if (decoder->set_ctx_params == NULL) 251 decoder->set_ctx_params = OSSL_FUNC_decoder_set_ctx_params(fns); 657 if (decoderctx == NULL || decoder->set_ctx_params == NULL) 659 if (!decoder->set_ctx_params(decoderctx, params))
|
| encoder_meth.c | 250 if (encoder->set_ctx_params == NULL) 251 encoder->set_ctx_params = OSSL_FUNC_encoder_set_ctx_params(fns); 637 if (encoderctx == NULL || encoder->set_ctx_params == NULL) 639 if (!encoder->set_ctx_params(encoderctx, params))
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/ |
| digestcommon.h | 114 settable_ctx_params, set_ctx_params) \ 120 && set_ctx_params(ctx, params); \ 126 { OSSL_FUNC_DIGEST_SET_CTX_PARAMS, (void (*)(void))set_ctx_params }, \
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ |
| digestcommon.h | 102 settable_ctx_params, set_ctx_params) \ 108 && set_ctx_params(ctx, params); \ 114 { OSSL_FUNC_DIGEST_SET_CTX_PARAMS, (void (*)(void))set_ctx_params }, \
|