/* * SPDX-License-Identifier: CC0-1.0 * * Copyright (C) 2025 W. Kosior */ #ifndef PQCRYPTO_PRNG_H #define PQCRYPTO_PRNG_H #include typedef void (*prng_t) (void * buf, size_t buflen, void * state); #endif /* PQCRYPTO_PRNG_H */