pqc/common/randombytes.h
Thom Wiggers fe46514836
Include full clangformat config.
Hopefully stabilizes behaviour between versions.
2019-02-11 10:05:54 +01:00

14 rivejä
186 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 xlen);
#endif