1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-26 09:21:28 +00:00
pqcrypto/src/common/randombytes.h
2021-03-24 21:02:51 +00:00

14 lines
183 B
C

#ifndef RANDOMBYTES_H
#define RANDOMBYTES_H
#include <stdint.h>
#ifdef _WIN32
#include <CRTDEFS.H>
#else
#include <unistd.h>
#endif
int randombytes(uint8_t *buf, size_t n);
#endif