blob: fd51c4e5afa45ef281c1aa48ffe8632d4cfde46b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* SPDX-License-Identifier: CC0-1.0
*
* Copyright (C) 2025 W. Kosior <koszko@koszko.org>
*/
#ifndef PQCRYPTO_PRNG_GETRANDOM_H
#define PQCRYPTO_PRNG_GETRANDOM_H
#include <stdlib.h>
void prng_getrandom(void * buf, size_t buf_len, void * state);
#endif /* PQCRYPTO_PRNG_GETRANDOM_H */
|