mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-11 21:53:29 +01: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
|