Searched refs:CSPRNG (Results 1 – 25 of 38) sorted by relevance
12
/third_party/openssl/doc/man7/ |
D | RAND.pod | 14 (CSPRNG). 34 In this case the CSPRNG enters an error state and ceases to provide output, 41 CSPRNG. 42 The intention behind using a dedicated CSPRNG exclusively for private 46 CSPRNG instance will not affect the secrecy of these private values. 62 number generator (CSPRNG), which is described in [NIST SP 800-90A Rev. 1].
|
/third_party/openssl/doc/man3/ |
D | RAND_bytes.pod | 29 secure pseudo random generator (CSPRNG) and stores them in B<buf>. 51 By default, the OpenSSL CSPRNG supports a security level of 256 bits, provided it 54 and Windows), OpenSSL is configured to automatically seed the CSPRNG on first use 57 If the entropy source fails or is not available, the CSPRNG will enter an
|
D | DSA_generate_key.pod | 27 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | RSA_sign_ASN1_OCTET_STRING.pod | 38 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | DSA_sign.pod | 49 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | EVP_SealInit.pod | 59 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | RSA_generate_key.pod | 43 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | EVP_SignInit.pod | 64 be seeded. If the automatic seeding or reseeding of the OpenSSL CSPRNG fails
|
D | BN_rand.pod | 79 randomness for granted: an error occurs if the CSPRNG has not been
|
D | RSA_padding_add_PKCS1_type_1.pod | 99 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | EVP_DigestVerifyInit.pod | 152 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | BN_generate_prime.pod | 116 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
D | EVP_DigestSignInit.pod | 163 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
|
/third_party/node/src/crypto/ |
D | crypto_random.cc | 63 return CSPRNG(params.buffer, params.size).is_ok(); in DeriveBits() 157 CHECK(CSPRNG(nullptr, 0).is_ok()); in DeriveBits()
|
D | crypto_keygen.cc | 79 if (CSPRNG(reinterpret_cast<unsigned char*>(params->out), in DoKeyGen()
|
D | crypto_context.cc | 550 if (CSPRNG(sc->ticket_key_name_, sizeof(sc->ticket_key_name_)).is_err() || in Init() 551 CSPRNG(sc->ticket_key_hmac_, sizeof(sc->ticket_key_hmac_)).is_err() || in Init() 552 CSPRNG(sc->ticket_key_aes_, sizeof(sc->ticket_key_aes_)).is_err()) { in Init() 1277 if (CSPRNG(iv, 16).is_err() || in TicketCompatibilityCallback()
|
D | crypto_util.cc | 63 MUST_USE_RESULT CSPRNGResult CSPRNG(void* buffer, size_t length) { in CSPRNG() function
|
D | crypto_util.h | 126 MUST_USE_RESULT CSPRNGResult CSPRNG(void* buffer, size_t length);
|
/third_party/openssl/doc/man1/ |
D | openssl-rand.pod.in | 22 secure pseudo random number generator (CSPRNG).
|
D | openssl-speed.pod.in | 103 Run benchmarks on I<num>-byte buffers. Affects ciphers, digests and the CSPRNG.
|
/third_party/node/src/ |
D | node.cc | 1068 CHECK(crypto::CSPRNG(nullptr, 0).is_ok()); in InitializeOncePerProcess() 1075 CHECK(crypto::CSPRNG(buffer, length).is_ok()); in InitializeOncePerProcess()
|
D | inspector_io.cc | 49 CHECK(crypto::CSPRNG(buffer, sizeof(buffer)).is_ok()); in GenerateID()
|
/third_party/node/src/quic/ |
D | packet.cc | 331 CHECK(crypto::CSPRNG(random, kRandlen).is_ok()); in CreateStatelessResetPacket()
|
/third_party/openssl/ |
D | INSTALL.md | 428 cryptographically secure random number generator (CSPRNG). 1746 internal CSPRNG. If not properly seeded, the internal CSPRNG will refuse 1758 available method to seed the CSPRNG from the operating system's 1764 the CSPRNG manually. Please check out the manual pages for `RAND_add()`,
|
/third_party/node/deps/openssl/openssl/ |
D | INSTALL.md | 428 cryptographically secure random number generator (CSPRNG). 1758 internal CSPRNG. If not properly seeded, the internal CSPRNG will refuse 1770 available method to seed the CSPRNG from the operating system's 1776 the CSPRNG manually. Please check out the manual pages for `RAND_add()`,
|
12