summaryrefslogtreecommitdiff
path: root/source/kit/secure_random.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/kit/secure_random.h')
-rw-r--r--source/kit/secure_random.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/kit/secure_random.h b/source/kit/secure_random.h
new file mode 100644
index 0000000..c894bd1
--- /dev/null
+++ b/source/kit/secure_random.h
@@ -0,0 +1,20 @@
+#ifndef KIT_SECURE_RANDOM_H
+#define KIT_SECURE_RANDOM_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void kit_secure_random(i64 size, void *data);
+
+#ifdef __cplusplus
+}
+#endif
+
+#ifndef KIT_DISABLE_SHORT_NAMES
+# define secure_random kit_secure_random
+#endif
+
+#endif