sntrup-sys 0.1.1

Streamlined NTRU Prime, extracted from SUPERCOP with a deduplicated vendor tree, compiled via the cc crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef randombytes_h
#define randombytes_h

#ifdef __cplusplus
extern "C" {
#endif

extern void randombytes(unsigned char *,unsigned long long);
extern unsigned long long randombytes_calls;
extern unsigned long long randombytes_bytes;

#ifdef __cplusplus
}
#endif

#endif