summaryrefslogtreecommitdiff
path: root/kit/secure_random.h
blob: 435fe88cddd1ce7381bb9ba542da58d990fcdd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef KIT_SECURE_RANDOM_H
#define KIT_SECURE_RANDOM_H

#include "types.h"
#include "status.h"

#ifdef __cplusplus
extern "C" {
#endif

s32 kit_secure_random(i64 size, void *data);

#ifdef __cplusplus
}
#endif

#define secure_random kit_secure_random

#endif