diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-02 18:02:13 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-02 18:02:13 +0200 |
commit | 6f2ccb15b1599700dc6c9c2388609eccca10a608 (patch) | |
tree | d84732290af6e0dfac683eaf2ceea4bd4f7f2493 /random_bytes.c | |
parent | Add TODO file (diff) | |
download | libsimple-6f2ccb15b1599700dc6c9c2388609eccca10a608.tar.gz libsimple-6f2ccb15b1599700dc6c9c2388609eccca10a608.tar.bz2 libsimple-6f2ccb15b1599700dc6c9c2388609eccca10a608.tar.xz |
m + add libsimple_random_bytes
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'random_bytes.c')
-rw-r--r-- | random_bytes.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/random_bytes.c b/random_bytes.c new file mode 100644 index 0000000..cd7416f --- /dev/null +++ b/random_bytes.c @@ -0,0 +1,39 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" +#ifndef TEST + + +void * +libsimple_random_bytes(uintmax_t (*rng)(size_t bits, void *user), void *user, void *buffer, size_t bytes) +{ + char *buf = buffer; + uintmax_t rnd; + + while (bytes >= sizeof(uintmax_t)) { + *(uintmax_t *)buf = (*rng)(sizeof(uintmax_t) * 8U, user); + bytes -= sizeof(uintmax_t); + buf = &buf[sizeof(uintmax_t)]; + } + + if (bytes) { + rnd = (*rng)(bytes * 8U, user); + while (bytes) { + *buf++ = (char)(rnd & 255U); + rnd >>= 8; + } + } + + return buf; +} + + +#else +#include "test.h" + +int +main(void) +{ + return 0; +} + +#endif |