Symbol: OSSL_PARAM_set_utf8_string
crypto/openssl/crypto/evp/ctrl_params_translate.c
686
return OSSL_PARAM_set_utf8_string(ctx->params, ctx->p2);
crypto/openssl/crypto/param_build_set.c
51
return OSSL_PARAM_set_utf8_string(p, buf);
crypto/openssl/include/openssl/params.h
135
int OSSL_PARAM_set_utf8_string(OSSL_PARAM *p, const char *val);
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
398
if (!OSSL_PARAM_set_utf8_string(p, word))
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
409
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, prsactx->oaep_md == NULL ? "" : EVP_MD_get0_name(prsactx->oaep_md)))
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
417
if (!OSSL_PARAM_set_utf8_string(p, mgf1_md == NULL ? "" : EVP_MD_get0_name(mgf1_md)))
crypto/openssl/providers/implementations/asymciphers/sm2_enc.c
169
if (!OSSL_PARAM_set_utf8_string(p, md == NULL ? "" : EVP_MD_get0_name(md)))
crypto/openssl/providers/implementations/exchange/dh_exch.c
517
if (!OSSL_PARAM_set_utf8_string(p, kdf_type))
crypto/openssl/providers/implementations/exchange/dh_exch.c
523
&& !OSSL_PARAM_set_utf8_string(p, pdhctx->kdf_md == NULL ? "" : EVP_MD_get0_name(pdhctx->kdf_md))) {
crypto/openssl/providers/implementations/exchange/dh_exch.c
538
&& !OSSL_PARAM_set_utf8_string(p, pdhctx->kdf_cekalg == NULL ? "" : pdhctx->kdf_cekalg))
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
405
if (!OSSL_PARAM_set_utf8_string(p, kdf_type))
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
411
&& !OSSL_PARAM_set_utf8_string(p, pectx->kdf_md == NULL ? "" : EVP_MD_get0_name(pectx->kdf_md))) {
crypto/openssl/providers/implementations/kdfs/hmacdrbg_kdf.c
153
if (!OSSL_PARAM_set_utf8_string(p, name))
crypto/openssl/providers/implementations/kdfs/hmacdrbg_kdf.c
160
if (md == NULL || !OSSL_PARAM_set_utf8_string(p, EVP_MD_get0_name(md)))
crypto/openssl/providers/implementations/keymgmt/dsa_kmgmt.c
328
&& !OSSL_PARAM_set_utf8_string(p, DSA_DEFAULT_MD))
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
700
&& !OSSL_PARAM_set_utf8_string(p, EC_DEFAULT_MD))
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
704
&& !OSSL_PARAM_set_utf8_string(p, SM2_DEFAULT_MD))
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
338
&& !OSSL_PARAM_set_utf8_string(p, ""))
crypto/openssl/providers/implementations/keymgmt/ml_dsa_kmgmt.c
363
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, ""))
crypto/openssl/providers/implementations/keymgmt/rsa_kmgmt.c
349
if (!OSSL_PARAM_set_utf8_string(p, RSA_DEFAULT_MD))
crypto/openssl/providers/implementations/keymgmt/rsa_kmgmt.c
364
if (mdname == NULL || !OSSL_PARAM_set_utf8_string(p, mdname))
crypto/openssl/providers/implementations/keymgmt/slh_dsa_kmgmt.c
216
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, ""))
crypto/openssl/providers/implementations/rands/drbg_ctr.c
685
|| !OSSL_PARAM_set_utf8_string(p,
crypto/openssl/providers/implementations/rands/drbg_hash.c
485
if (md == NULL || !OSSL_PARAM_set_utf8_string(p, EVP_MD_get0_name(md)))
crypto/openssl/providers/implementations/rands/drbg_hmac.c
380
if (!OSSL_PARAM_set_utf8_string(p, name))
crypto/openssl/providers/implementations/rands/drbg_hmac.c
387
if (md == NULL || !OSSL_PARAM_set_utf8_string(p, EVP_MD_get0_name(md)))
crypto/openssl/providers/implementations/signature/dsa_sig.c
686
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, pdsactx->mdname))
crypto/openssl/providers/implementations/signature/ecdsa_sig.c
688
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, ctx->md == NULL ? ctx->mdname : EVP_MD_get0_name(ctx->md)))
crypto/openssl/providers/implementations/signature/rsa_sig.c
1425
if (!OSSL_PARAM_set_utf8_string(p, word))
crypto/openssl/providers/implementations/signature/rsa_sig.c
1436
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, prsactx->mdname))
crypto/openssl/providers/implementations/signature/rsa_sig.c
1440
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, prsactx->mgf1_mdname))
crypto/openssl/providers/implementations/signature/rsa_sig.c
1475
&& !OSSL_PARAM_set_utf8_string(p, value))
crypto/openssl/providers/implementations/signature/sm2_sig.c
422
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, psm2ctx->md == NULL ? psm2ctx->mdname : EVP_MD_get0_name(psm2ctx->md)))
crypto/openssl/test/params_api_test.c
693
|| !TEST_true(OSSL_PARAM_set_utf8_string(cp, "abcdef"))
crypto/openssl/test/params_test.c
259
&& !TEST_true(OSSL_PARAM_set_utf8_string(p, obj->p4)))
crypto/openssl/test/params_test.c
262
&& !TEST_true(OSSL_PARAM_set_utf8_string(p, obj->p5)))
crypto/openssl/test/tls-provider.c
2966
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, pxor_sigctx->mdname))