Searched refs:arc4random_buf (Results 1 – 25 of 38) sorted by relevance
12
/external/libevent/ |
D | evutil_rand.c | 75 arc4random_buf(buf, n); in ev_arc4random_buf() 89 (void (*)(void*,size_t))arc4random_buf; in ev_arc4random_buf() 91 arc4random_buf(buf, n); in ev_arc4random_buf() 184 arc4random_buf(buf, n); in ev_arc4random_buf()
|
D | arc4random.c | 498 arc4random_buf(void *buf_, size_t n) in arc4random_buf() function
|
D | ChangeLog | 693 o We should return after arc4random_buf() (1ea1f26 Makoto Kato) 697 o Fix another arc4random_buf-related warning (e64a2b0) 720 o Fix a compiler warning when checking for arc4random_buf linker 1087 o Fix a compiler warning when checking for arc4random_buf linker breakage. (5cb3865) 1088 o Fix another arc4random_buf-related warning (e64a2b0) 1147 o check for arc4random_buf at runtime, on OS X (bff5f94 Greg Hazel) 1148 o Correctly check for arc4random_buf (fcec3e8 Sebastian Hahn) 1342 …o Allow OS-neutral builds for platforms where some versions have arc4random_buf (b442302 Mitchell …
|
D | config.h.in | 18 /* Define to 1 if you have the `arc4random_buf' function. */
|
/external/expat/ |
D | configure.ac | 114 AS_HELP_STRING([--with-libbsd], [utilize libbsd (for arc4random_buf)]) 117 AC_CHECK_LIB([bsd], [arc4random_buf], [], [ 123 AC_MSG_CHECKING([for arc4random_buf (BSD or libbsd)]) 125 #include <stdlib.h> /* for arc4random_buf on BSD, for NULL */ 130 arc4random_buf(NULL, 0U); 135 [Define to 1 if you have the `arc4random_buf' function.])
|
D | ConfigureChecks.cmake | 32 check_symbol_exists("arc4random_buf" "${_bsd}stdlib.h" HAVE_ARC4RANDOM_BUF)
|
D | expat_config.h.cmake | 9 /* Define to 1 if you have the `arc4random_buf' function. */
|
D | expat_config.h.in | 9 /* Define to 1 if you have the `arc4random_buf' function. */
|
D | CMakeLists.txt | 36 option(USE_libbsd "utilize libbsd (for arc4random_buf)" OFF)
|
D | Changes | 109 option USE_libbsd=ON to use arc4random_buf of libbsd 236 * arc4random_buf on BSD, systems with libbsd
|
/external/openssh/ |
D | crypto_api.h | 19 #define randombytes(buf, buf_len) arc4random_buf((buf), (buf_len))
|
D | kexc25519.c | 58 arc4random_buf(key, CURVE25519_SIZE); in kexc25519_keygen()
|
D | ssh-keysign.c | 233 arc4random_buf(rnd, sizeof(rnd)); in main()
|
D | sshconnect1.c | 572 arc4random_buf(session_key, sizeof(session_key)); in ssh_kex()
|
D | sshd.c | 528 arc4random_buf(rnd, sizeof(rnd)); /* let arc4random notice PID change */ in reseed_prngs() 1346 arc4random_buf(rnd, sizeof(rnd));
|
D | hostfile.c | 132 arc4random_buf(salt, len); in host_hash()
|
D | kex.c | 465 arc4random_buf(cookie, KEX_COOKIE_LEN); in kex_send_kexinit()
|
D | sshkey.c | 2406 arc4random_buf(&nonce, sizeof(nonce)); in sshkey_certify() 3084 arc4random_buf(salt, SALT_LEN); in sshkey_private_to_blob2() 3441 arc4random_buf(cp, 2); in sshkey_private_rsa1_to_blob()
|
D | ssh-agent.c | 715 arc4random_buf(lock_salt, sizeof(lock_salt)); in process_lock_agent()
|
D | packet.c | 889 arc4random_buf(cp + 8 - padding, padding); in ssh_packet_send1() 1230 arc4random_buf(cp, padlen); in ssh_packet_send2_wrapped()
|
/external/openssh/openbsd-compat/ |
D | arc4random.c | 242 arc4random_buf(void *buf, size_t n) in arc4random_buf() function 254 arc4random_buf(void *_buf, size_t n) in arc4random_buf() function
|
D | openbsd-compat.h | 192 void arc4random_buf(void *, size_t);
|
/external/expat/patches/ |
D | config.diff | 14 /* Define to 1 if you have the `arc4random_buf' function. */
|
/external/openssh/regress/unittests/sshbuf/ |
D | test_sshbuf_fuzz.c | 112 arc4random_buf(&r, sizeof(r)); in sshbuf_fuzz_tests()
|
/external/android-clat/ |
D | config.c | 209 arc4random_buf(&myaddr->s6_addr[8], 8); in gen_random_iid()
|
12