mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-12-27 11:28:53 +00:00
19 lines
245 B
C
19 lines
245 B
C
|
#pragma once
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
#include <type_traits>
|
||
|
|
||
|
namespace crypto {
|
||
|
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void init_random(void);
|
||
|
void generate_random_bytes(size_t n, void *result);
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
}
|
||
|
}
|
||
|
#endif
|