/freebsd/crypto/openssl/doc/man3/ |
H A D | RAND_bytes.pod | 5 RAND_bytes, RAND_priv_bytes, RAND_bytes_ex, RAND_priv_bytes_ex, 15 int RAND_bytes_ex(OSSL_LIB_CTX *ctx, unsigned char *buf, size_t num, 38 RAND_bytes_ex() and RAND_priv_bytes_ex() are the same as RAND_bytes() and 98 The RAND_bytes_ex() and RAND_priv_bytes_ex() functions were added in OpenSSL 3.0
|
/freebsd/crypto/openssl/test/ |
H A D | provfetchtest.c | 216 if (RAND_bytes_ex(libctx, buf, sizeof(buf), 0) <= 0) in dummy_provider_init() 274 || !TEST_int_ge(RAND_bytes_ex(libctx, buf, sizeof(buf), 0), 1)) in fetch_test()
|
H A D | cmp_msg_test.c | 153 if (!TEST_int_eq(1, RAND_bytes_ex(libctx, secret, sizeof(secret), 0)) in test_cmp_create_ir_protection_set() 570 || !TEST_int_eq(1, RAND_bytes_ex(libctx, ref, sizeof(ref), 0))) { in OPT_TEST_DECLARE_USAGE()
|
H A D | tls-provider.c | 649 if (RAND_bytes_ex(gctx->libctx, key->privkey, XOR_KEY_SIZE, 0) <= 0) { in xor_gen() 822 if (RAND_bytes_ex(libctx, (unsigned char *)&group_id, sizeof(group_id), 0) <= 0) in randomize_tls_group_id()
|
H A D | cmp_client_test.c | 516 || !TEST_int_eq(1, RAND_bytes_ex(libctx, ref, sizeof(ref), 0))) { in OPT_TEST_DECLARE_USAGE()
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | p5_pbev2.c | 73 else if (RAND_bytes_ex(libctx, iv, ivlen, 0) <= 0) 191 else if (RAND_bytes_ex(libctx, osalt->data, saltlen, 0) <= 0) in PKCS5_pbkdf2_set_ex()
|
H A D | p5_pbe.c | 58 else if (RAND_bytes_ex(ctx, sstr, saltlen, 0) <= 0)
|
/freebsd/crypto/openssl/crypto/rsa/ |
H A D | rsa_pk1.c | 144 if (RAND_bytes_ex(libctx, p, j, 0) <= 0) in ossl_rsa_padding_add_PKCS1_type_2_ex() 149 if (RAND_bytes_ex(libctx, p, 1, 0) <= 0) in ossl_rsa_padding_add_PKCS1_type_2_ex()
|
H A D | rsa_pss.c | 208 if (RAND_bytes_ex(rsa->libctx, salt, sLen, 0) <= 0) in RSA_padding_add_PKCS1_PSS_mgf1()
|
H A D | rsa_oaep.c | 110 if (RAND_bytes_ex(libctx, seed, mdlen, 0) <= 0) in ossl_rsa_padding_add_PKCS1_OAEP_mgf1_ex()
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_rand.c | 50 b = flag == NORMAL ? RAND_bytes_ex(libctx, buf, bytes, strength) in bnrand() 63 if (RAND_bytes_ex(libctx, &c, 1, strength) <= 0) in bnrand()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | rand.h | 75 int RAND_bytes_ex(OSSL_LIB_CTX *ctx, unsigned char *buf, size_t num,
|
/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_pwri.c | 105 if (RAND_bytes_ex(ossl_cms_ctx_get0_libctx(cms_ctx), iv, ivlen, 0) <= 0) in CMS_add0_recipient_password() 274 && RAND_bytes_ex(ossl_cms_ctx_get0_libctx(cms_ctx), out + 4 + inlen, in kek_wrap_key()
|
H A D | cms_enc.c | 97 if (RAND_bytes_ex(libctx, iv, ivlen, 0) <= 0) in ossl_cms_EncryptedContent_init_bio()
|
H A D | cms_ess.c | 131 if (RAND_bytes_ex(libctx, rr->signedContentIdentifier->data, 32, in CMS_ReceiptRequest_create0_ex()
|
/freebsd/crypto/openssl/crypto/crmf/ |
H A D | crmf_pbm.c | 58 if (RAND_bytes_ex(libctx, salt, slen, 0) <= 0) { in OSSL_CRMF_pbmp_new()
|
/freebsd/crypto/openssl/providers/implementations/ciphers/ |
H A D | cipher_tdes_wrap.c | 100 if (RAND_bytes_ex(ctx->libctx, ctx->iv, ivlen, 0) <= 0) in des_ede3_wrap()
|
H A D | ciphercommon_gcm.c | 386 if (RAND_bytes_ex(ctx->libctx, ctx->iv + offset, sz, 0) <= 0) in gcm_iv_generate() 499 && RAND_bytes_ex(ctx->libctx, ctx->iv + len, ctx->ivlen - len, 0) <= 0) in gcm_tls_iv_set_fixed()
|
/freebsd/crypto/openssl/ssl/record/ |
H A D | tls_pad.c | 255 if (RAND_bytes_ex(libctx, randmac, mac_size, 0) <= 0) in ssl3_cbc_copy_mac()
|
/freebsd/crypto/openssl/crypto/rand/ |
H A D | rand_lib.c | 354 int RAND_bytes_ex(OSSL_LIB_CTX *ctx, unsigned char *buf, size_t num, in RAND_bytes_ex() function 380 return RAND_bytes_ex(NULL, buf, (size_t)num, 0); in RAND_bytes()
|
/freebsd/crypto/openssl/crypto/srp/ |
H A D | srp_vfy.c | 649 if (RAND_bytes_ex(libctx, tmp2, SRP_RANDOM_SALT_LEN, 0) <= 0) in SRP_create_verifier_ex() 732 if (RAND_bytes_ex(libctx, tmp2, SRP_RANDOM_SALT_LEN, 0) <= 0) in SRP_create_verifier_BN_ex()
|
/freebsd/crypto/openssl/crypto/cmp/ |
H A D | cmp_hdr.c | 145 if (bytes == NULL || RAND_bytes_ex(ctx->libctx, bytes, len, 0) <= 0) in set_random()
|
/freebsd/crypto/openssl/crypto/pkcs12/ |
H A D | p12_mutl.c | 272 if (RAND_bytes_ex(p12->authsafes->ctx.libctx, p12->mac->salt->data, in PKCS12_setup_mac()
|
/freebsd/crypto/openssl/crypto/ffc/ |
H A D | ffc_params_generate.c | 332 && RAND_bytes_ex(libctx, seed, seedlen, 0) <= 0) in generate_q_fips186_4() 402 if (generate_seed && RAND_bytes_ex(libctx, seed, qsize, 0) <= 0) in generate_q_fips186_2()
|
/freebsd/crypto/openssl/ssl/statem/ |
H A D | statem_clnt.c | 1195 && RAND_bytes_ex(s->ctx->libctx, s->tmp_session_id, in tls_construct_client_hello() 2857 if (RAND_bytes_ex(s->ctx->libctx, pms + 2, pmslen - 2, 0) <= 0) { in tls_construct_cke_rsa() 3063 || RAND_bytes_ex(s->ctx->libctx, pms, pmslen, 0) <= 0) { in tls_construct_cke_gost() 3189 if (RAND_bytes_ex(s->ctx->libctx, pms, pmslen, 0) <= 0) { in tls_construct_cke_gost18()
|