1f0a8f29de
Before these were generated from a freshly seeded PRNG which reduces the state space of possible DUIDs and skews the distribution of both DUIDs and IAIDs as a function of the PRNG choice. None of this really matters much in practice, but do things right.
11 lines
221 B
C
11 lines
221 B
C
// Copyright 2016-2022 Nicholas J. Kain <njkain at gmail dot com>
|
|
// SPDX-License-Identifier: MIT
|
|
#ifndef NCMLIB_HWCRNG__
|
|
#define NCMLIB_HWCRNG__
|
|
|
|
#include <stddef.h>
|
|
void nk_hwrng_bytes(void *seed, size_t len);
|
|
|
|
#endif
|
|
|