Symbol: RAND_priv_bytes_ex
crypto/openssl/crypto/bn/bn_rand.c
345
if (RAND_priv_bytes_ex(libctx, random_bytes, sizeof(random_bytes),
crypto/openssl/crypto/bn/bn_rand.c
51
: RAND_priv_bytes_ex(libctx, buf, bytes, strength);
crypto/openssl/crypto/ec/ecp_s390x_nistp.c
191
if (RAND_priv_bytes_ex(eckey->libctx, param + S390X_OFF_RN(len),
crypto/openssl/crypto/ec/ecx_backend.c
201
if (RAND_priv_bytes_ex(libctx, privkey, KEYLENID(id), 0) <= 0)
crypto/openssl/crypto/ec/ecx_meth.c
1008
if (RAND_priv_bytes_ex(ctx->libctx, privkey, X448_KEYLEN, 0) <= 0)
crypto/openssl/crypto/ec/ecx_meth.c
1086
if (RAND_priv_bytes_ex(ctx->libctx, privkey, ED25519_KEYLEN, 0) <= 0)
crypto/openssl/crypto/ec/ecx_meth.c
1153
if (RAND_priv_bytes_ex(ctx->libctx, privkey, ED448_KEYLEN, 0) <= 0)
crypto/openssl/crypto/ec/ecx_meth.c
965
if (RAND_priv_bytes_ex(ctx->libctx, privkey, X25519_KEYLEN, 0) <= 0)
crypto/openssl/crypto/evp/evp_enc.c
1762
if (kl <= 0 || RAND_priv_bytes_ex(libctx, key, kl, 0) <= 0)
crypto/openssl/crypto/evp/p_seal.c
46
if (len < 0 || RAND_priv_bytes_ex(libctx, iv, len, 0) <= 0)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
472
if (RAND_priv_bytes_ex(out->libctx, out->seed, seed_len, 0) <= 0) {
crypto/openssl/crypto/ml_kem/ml_kem.c
2175
} else if (RAND_priv_bytes_ex(key->libctx, seed, sizeof(seed),
crypto/openssl/crypto/rand/rand_lib.c
475
return RAND_priv_bytes_ex(NULL, buf, (size_t)num, 0);
crypto/openssl/crypto/rsa/rsa_pk1.c
569
if (RAND_priv_bytes_ex(libctx, rand_premaster_secret,
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
383
if (RAND_priv_bytes_ex(lib_ctx, priv, secret_key_len, 0) <= 0
crypto/openssl/include/openssl/rand.h
70
int RAND_priv_bytes_ex(OSSL_LIB_CTX *ctx, unsigned char *buf, size_t num,
crypto/openssl/providers/fips/fipsprov.c
137
return RAND_priv_bytes_ex(libctx, buf, n, strength);
crypto/openssl/providers/implementations/ciphers/cipher_des.c
124
if (kl == 0 || RAND_priv_bytes_ex(ctx->libctx, ptr, kl, 0) <= 0)
crypto/openssl/providers/implementations/ciphers/cipher_tdes_common.c
141
if (kl == 0 || RAND_priv_bytes_ex(ctx->libctx, ptr, kl, 0) <= 0)
crypto/openssl/providers/implementations/kem/ec_kem.c
477
if (RAND_priv_bytes_ex(ctx->libctx, tmpbuf, seedlen, 0) <= 0)
crypto/openssl/providers/implementations/kem/ecx_kem.c
409
if (RAND_priv_bytes_ex(ctx->libctx, tmpbuf, info->Nsk, 0) <= 0)
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
1082
if (RAND_priv_bytes_ex(gctx->libctx, privkey, X25519_KEYLEN, 0) <= 0)
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
1139
if (RAND_priv_bytes_ex(gctx->libctx, privkey, X448_KEYLEN, 0) <= 0)
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
1221
if (RAND_priv_bytes_ex(gctx->libctx, privkey, ED25519_KEYLEN, 0) <= 0)
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
1292
if (RAND_priv_bytes_ex(gctx->libctx, privkey, ED448_KEYLEN, 0) <= 0)
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
726
if (RAND_priv_bytes_ex(gctx->libctx, privkey, key->keylen, 0) <= 0)
crypto/openssl/providers/implementations/signature/ml_dsa_sig.c
195
else if (RAND_priv_bytes_ex(ctx->libctx, rnd, sizeof(rand_tmp), 0) <= 0)
crypto/openssl/providers/implementations/signature/slh_dsa_sig.c
216
if (RAND_priv_bytes_ex(ctx->libctx, add_rand, n, 0) <= 0)
crypto/openssl/ssl/quic/quic_srtm.c
116
if (RAND_priv_bytes_ex(libctx, key, sizeof(key), sizeof(key) * 8) != 1)
crypto/openssl/ssl/ssl_lib.c
4151
|| (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_hmac_key,
crypto/openssl/ssl/ssl_lib.c
4154
|| (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_aes_key,
crypto/openssl/ssl/ssl_lib.c
4159
if (RAND_priv_bytes_ex(libctx, ret->ext.cookie_hmac_key,
crypto/openssl/ssl/tls_srp.c
188
if (RAND_priv_bytes_ex(SSL_CONNECTION_GET_CTX(s)->libctx, b, sizeof(b),
crypto/openssl/ssl/tls_srp.c
431
if (RAND_priv_bytes_ex(SSL_CONNECTION_GET_CTX(s)->libctx,
crypto/openssl/test/rand_test.c
234
|| !RAND_priv_bytes_ex(ctx, privbuf, sizeof(privbuf), 256)