Searched refs:getrandom (Results 1 – 25 of 26) sorted by relevance
12
/systemd-251/docs/ |
D | RANDOM_SEEDS.md | 28 * The [`getrandom()`](http://man7.org/linux/man-pages/man2/getrandom.2.html) 33 * The `getrandom()` system call with its `flags` parameter set to 148 opting instead for using `getrandom(GRND_INSECURE)`. After the pool is 149 initialized, this is identical to `getrandom(0)`, returning cryptographically 290 1. *Why don't you just use getrandom()? That's all you need!* 292 Did you read any of the above? getrandom() is hooked to the kernel entropy 300 Same story. That call is just a different name for `getrandom()` with 343 it gets that from `getrandom()`, and thus we have to wait for random pool 344 initialization the same way as calling `getrandom()` 348 throughput there's little it gets us over just using `getrandom()`. Also,
|
/systemd-251/src/random-seed/ |
D | random-seed.c | 270 k = getrandom(buf, buf_size, GRND_NONBLOCK); in run() 273 k = getrandom(buf, buf_size, 0); /* retry synchronously */ in run()
|
/systemd-251/src/basic/ |
D | random-util.c | 53 … ssize_t l = getrandom(p, n, FLAGS_SET(flags, RANDOM_BLOCK) ? 0 : GRND_INSECURE); in genuine_random_bytes()
|
D | syscall-list.txt | 139 getrandom
|
D | syscalls-alpha.txt | 139 getrandom 511
|
D | syscalls-arc.txt | 139 getrandom 278
|
D | syscalls-arm.txt | 139 getrandom 384
|
D | syscalls-arm64.txt | 139 getrandom 278
|
D | syscalls-i386.txt | 139 getrandom 355
|
D | syscalls-ia64.txt | 139 getrandom 1339
|
D | syscalls-loongarch64.txt | 139 getrandom 278
|
D | syscalls-m68k.txt | 139 getrandom 352
|
D | syscalls-mips64.txt | 139 getrandom 5313
|
D | syscalls-mips64n32.txt | 139 getrandom 6317
|
D | syscalls-mipso32.txt | 139 getrandom 4353
|
D | syscalls-powerpc.txt | 139 getrandom 359
|
D | syscalls-powerpc64.txt | 139 getrandom 359
|
D | syscalls-riscv32.txt | 139 getrandom 278
|
D | syscalls-riscv64.txt | 139 getrandom 278
|
D | syscalls-s390.txt | 139 getrandom 349
|
D | syscalls-s390x.txt | 139 getrandom 349
|
D | syscalls-sparc.txt | 139 getrandom 347
|
D | syscalls-x86_64.txt | 139 getrandom 318
|
D | missing_syscall.h | 91 # define getrandom missing_getrandom macro
|
/systemd-251/ |
D | meson.build | 571 if cc.has_function('getrandom', prefix : '''#include <sys/random.h>''', args : '-D_GNU_SOURCE') 575 have = cc.has_function('getrandom', prefix : '''#include <linux/random.h>''')
|
12