Home
last modified time | relevance | path

Searched refs:RAND_pseudo_bytes (Results 1 – 14 of 14) sorted by relevance

/external/boringssl/src/crypto/rand_extra/
Drand_extra.c58 RAND_pseudo_bytes,
/external/boringssl/src/include/openssl/
Drand.h75 OPENSSL_EXPORT int RAND_pseudo_bytes(uint8_t *buf, size_t len);
/external/boringssl/src/crypto/fipsmodule/rand/
Drand.c349 int RAND_pseudo_bytes(uint8_t *buf, size_t len) { in RAND_pseudo_bytes() function
/external/python/cpython2/Python/
Drandom.c151 if (RAND_pseudo_bytes(buffer, size) < 0) { in vms_urandom()
/external/python/cpython3/Lib/
Dssl.py107 from _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes
/external/python/cpython3/Lib/test/
Dtest_ssl.py299 data, is_cryptographic = ssl.RAND_pseudo_bytes(16)
310 self.assertRaises(ValueError, ssl.RAND_pseudo_bytes, -5)
330 child_random = ssl.RAND_pseudo_bytes(16)[0]
346 parent_random = ssl.RAND_pseudo_bytes(16)[0]
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list1060 RAND_pseudo_bytes
DBoringSSL-GRPC.podspec2612 '#define RAND_pseudo_bytes GRPC_SHADOW_RAND_pseudo_bytes',
/external/python/cpython3/Doc/library/
Dssl.rst292 .. function:: RAND_pseudo_bytes(num)
310 OpenSSL has deprecated :func:`ssl.RAND_pseudo_bytes`, use
2648 :func:`~ssl.RAND_pseudo_bytes` is sufficient.
/external/python/cpython2/Doc/library/
Dssl.rst346 OpenSSL has deprecated :func:`ssl.RAND_pseudo_bytes`, use
1811 :func:`~ssl.RAND_pseudo_bytes` is sufficient.
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h1088 #define RAND_pseudo_bytes GRPC_SHADOW_RAND_pseudo_bytes macro
/external/python/cpython3/Modules/
D_ssl.c5102 ok = RAND_pseudo_bytes((unsigned char*)PyBytes_AS_STRING(bytes), len); in PySSL_RAND()
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1931 * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
/external/python/cpython3/Misc/
DHISTORY9602 - Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl