pqcrypto-internals 0.2.11

bindings to common cryptography
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef RANDOMBYTES_H
#define RANDOMBYTES_H
#include <stdint.h>

#ifdef _WIN32
#include <crtdefs.h>
#else
#include <unistd.h>
#endif

#define randombytes PQCRYPTO_RUST_randombytes
int randombytes(uint8_t *buf, size_t n);

#endif