summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/randombytes/randombytes.c
diff options
context:
space:
mode:
Diffstat (limited to 'external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/randombytes/randombytes.c')
-rw-r--r--external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/randombytes/randombytes.c65
1 files changed, 0 insertions, 65 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/randombytes/randombytes.c b/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/randombytes/randombytes.c
deleted file mode 100644
index 07e23410..00000000
--- a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/randombytes/randombytes.c
+++ /dev/null
@@ -1,65 +0,0 @@
-
-#include <sys/types.h>
-
-#include <assert.h>
-#include <limits.h>
-#include <stdint.h>
-
-#include "randombytes.h"
-#include "randombytes_sysrandom.h"
-
-static const randombytes_implementation *implementation =
- &randombytes_sysrandom_implementation;
-
-int
-randombytes_set_implementation(randombytes_implementation *impl)
-{
- implementation = impl;
-
- return 0;
-}
-
-const char *
-randombytes_implementation_name(void)
-{
- return implementation->implementation_name();
-}
-
-uint32_t
-randombytes_random(void)
-{
- return implementation->random();
-}
-
-void
-randombytes_stir(void)
-{
- implementation->stir();
-}
-
-uint32_t
-randombytes_uniform(const uint32_t upper_bound)
-{
- return implementation->uniform(upper_bound);
-}
-
-void
-randombytes_buf(void * const buf, const size_t size)
-{
- if (size > (size_t) 0U) {
- implementation->buf(buf, size);
- }
-}
-
-int
-randombytes_close(void)
-{
- return implementation->close();
-}
-
-void
-randombytes(unsigned char * const buf, const unsigned long long buf_len)
-{
- assert(buf_len <= SIZE_MAX);
- randombytes_buf(buf, (size_t) buf_len);
-}