Revision 964469d5506f3068c5afb504e3406f3291f6c336 authored by Thom Wiggers on 02 August 2021, 07:12:04 UTC, committed by GitHub on 02 August 2021, 07:12:04 UTC
Add sntrup{953,1013,1277} and ntrulpr{953,1013,1277}
2 parent s 6c1ea92 + 81a0bf9
Raw File
randombytes.h
#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
back to top