mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 23:48:58 +00:00
8 lines
118 B
C
8 lines
118 B
C
#include <stdint.h>
|
|
#ifndef RANDOMBYTES_H
|
|
#define RANDOMBYTES_H
|
|
|
|
void randombytes(uint8_t *x, uint64_t xlen);
|
|
|
|
#endif
|