Symbol: OSSL_PARAM_set_uint
crypto/openssl/crypto/evp/ctrl_params_translate.c
681
return OSSL_PARAM_set_uint(ctx->params,
crypto/openssl/include/openssl/params.h
118
int OSSL_PARAM_set_uint(OSSL_PARAM *p, unsigned int val);
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
426
if (p != NULL && !OSSL_PARAM_set_uint(p, prsactx->client_version))
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
430
if (p != NULL && !OSSL_PARAM_set_uint(p, prsactx->alt_version))
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
434
if (p != NULL && !OSSL_PARAM_set_uint(p, prsactx->implicit_rejection))
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
237
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->multiblock_interleave)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
243
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->multiblock_aad_packlen)) {
crypto/openssl/providers/implementations/ciphers/cipher_rc5.c
122
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->rounds)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
50
if (p != NULL && !OSSL_PARAM_set_uint(p, md)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
607
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->pad)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
626
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->num)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
237
if (!OSSL_PARAM_set_uint(p, ctx->iv_gen_rand))
crypto/openssl/providers/implementations/digests/blake2_prov.c
50
&& !OSSL_PARAM_set_uint(p, (unsigned int)mdctx->params.digest_length)) { \
crypto/openssl/providers/implementations/macs/siphash_prov.c
173
&& !OSSL_PARAM_set_uint(p, crounds(ctx)))
crypto/openssl/providers/implementations/macs/siphash_prov.c
176
&& !OSSL_PARAM_set_uint(p, drounds(ctx)))
crypto/openssl/providers/implementations/rands/drbg.c
914
if (p != NULL && !OSSL_PARAM_set_uint(p, drbg->reseed_interval))
crypto/openssl/providers/implementations/rands/drbg.c
953
if (!OSSL_PARAM_set_uint(p, tsan_load(&drbg->reseed_counter)))
crypto/openssl/providers/implementations/rands/test_rng.c
201
if (p != NULL && !OSSL_PARAM_set_uint(p, t->generate))
crypto/openssl/providers/implementations/signature/dsa_sig.c
690
if (p != NULL && !OSSL_PARAM_set_uint(p, pdsactx->nonce_type))
crypto/openssl/providers/implementations/signature/ecdsa_sig.c
692
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->nonce_type))
crypto/openssl/providers/implementations/signature/ecdsa_sig.c
697
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->verify_message))
crypto/openssl/providers/implementations/signature/rsa_sig.c
1482
if (p != NULL && !OSSL_PARAM_set_uint(p, prsactx->verify_message))
crypto/openssl/test/evp_kdf_test.c
892
&& TEST_true(OSSL_PARAM_set_uint(p - 1, 10 * 1024 * 1024))
crypto/openssl/test/params_api_test.c
271
if (!TEST_true(OSSL_PARAM_set_uint(&param, in)))