10 行
141 B
C
10 行
141 B
C
|
|
#ifndef RANDOMBYTES_H
|
||
|
|
#define RANDOMBYTES_H
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
void randombytes(uint8_t *out, size_t outlen);
|
||
|
|
|
||
|
|
#endif
|