/external/oss-fuzz/projects/ecc-diff-fuzzer/ |
D | build.sh | 99 --without-os-features=getrandom,getentropy --cpu x86_32 103 --without-os-features=getrandom,getentropy
|
/external/rust/crates/getrandom/src/ |
D | openbsd.rs | 14 let ret = unsafe { libc::getentropy(chunk.as_mut_ptr() as *mut libc::c_void, chunk.len()) }; in getrandom_inner()
|
/external/oss-fuzz/projects/botan/ |
D | build.sh | 25 --without-os-features=getrandom,getentropy --with-fuzzer-lib='FuzzingEngine'
|
/external/python/cryptography/src/_cffi_src/openssl/src/ |
D | osrandom_engine.h | 18 extern int getentropy(void *buffer, size_t size) __attribute((weak_import));
|
D | osrandom_engine.c | 246 if (&getentropy != NULL) { in osrandom_init() 272 res = getentropy(buffer, (size_t)len); in osrandom_rand_bytes()
|
/external/python/cpython2/Python/ |
D | random.c | 124 res = getentropy(buffer, len); in py_getentropy() 133 res = getentropy(buffer, len); in py_getentropy()
|
/external/python/cpython3/Python/ |
D | bootstrap_hash.c | 250 res = getentropy(buffer, len); in py_getentropy() 254 res = getentropy(buffer, len); in py_getentropy()
|
/external/llvm-project/libcxx/src/ |
D | random.cpp | 56 int err = getentropy(&r, n); in operator ()()
|
/external/libcxx/src/ |
D | random.cpp | 57 int err = getentropy(&r, n); in operator ()()
|
/external/python/cryptography/docs/hazmat/backends/ |
D | openssl.rst | 112 | OpenBSD >= 5.6 | ``getentropy()`` | 114 | BSD family (including macOS 10.12+) with | ``getentropy()`` |
|
/external/angle/third_party/abseil-cpp/absl/random/internal/ |
D | seed_material.cc | 148 int result = getentropy(buffer, to_read);
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rand/ |
D | urandom.c | 322 if (getentropy(out, todo) != 0) { in fill_with_entropy()
|
/external/boringssl/src/crypto/fipsmodule/rand/ |
D | urandom.c | 322 if (getentropy(out, todo) != 0) { in fill_with_entropy()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b4.rst | 326 Prevent missing 'getentropy' declaration warning on macOS. Patch by Gareth
|
D | 3.5.1rc1.rst | 161 instead of the getentropy() function. The getentropy() function is blocking
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.11rc1.rst | 67 os.urandom() doesn't use getentropy() on Solaris because getentropy() is 68 blocking, whereas os.urandom() should not block. getentropy() is supported
|
D | 2.7.10rc1.rst | 628 On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), instead of
|
D | 2.7.15rc1.rst | 1142 Support glibc 2.24 on Linux: don't use getentropy() function but read from 1144 getentropy() is implemented which getrandom() is blocking mode, whereas
|
D | 2.7.13rc1.rst | 978 Prevent missing 'getentropy' declaration warning on macOS. Initial patch by
|
/external/boringssl/src/ |
D | SANDBOXING.md | 65 `RtlGenRandom` and, on POSIX systems, this uses `getrandom`, `getentropy`, or a
|
/external/rust/crates/getrandom/ |
D | CHANGELOG.md | 196 - Try `getentropy` and then fallback to `/dev/random` on macOS. [#38]
|
/external/rust/crates/libc/src/ |
D | wasi.rs | 603 pub fn getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int; in getentropy() function
|
/external/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ |
D | mod.rs | 1521 pub fn getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int; in getentropy() function
|
/external/rust/crates/rand/ |
D | CHANGELOG.md | 292 - Bitrig: use `getentropy` like OpenBSD. (#484)
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_linux.cpp | 2257 uptr rnd = getentropy(buffer, length); in GetRandom()
|