mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-12-03 12:33:13 +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
|