2022-08-28 13:22:44 +05:30
|
|
|
// Copyright 2016-2022 Nicholas J. Kain <njkain at gmail dot com>
|
2022-02-07 06:35:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-20 16:14:31 +05:30
|
|
|
#ifndef NCMLIB_HWCRNG__
|
|
|
|
#define NCMLIB_HWCRNG__
|
|
|
|
|
|
|
|
#include <stddef.h>
|
2022-08-28 13:22:44 +05:30
|
|
|
void nk_hwrng_bytes(void *seed, size_t len);
|
2020-10-20 16:14:31 +05:30
|
|
|
|
|
|
|
#endif
|
|
|
|
|