summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c
diff options
context:
space:
mode:
Diffstat (limited to 'external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c')
-rw-r--r--external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c b/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c
deleted file mode 100644
index b68b58a4..00000000
--- a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#include "crypto_shorthash.h"
-
-size_t
-crypto_shorthash_bytes(void)
-{
- return crypto_shorthash_BYTES;
-}
-
-size_t
-crypto_shorthash_keybytes(void)
-{
- return crypto_shorthash_KEYBYTES;
-}
-
-const char *
-crypto_shorthash_primitive(void)
-{
- return crypto_shorthash_PRIMITIVE;
-}
-
-int
-crypto_shorthash(unsigned char *out, const unsigned char *in,
- unsigned long long inlen, const unsigned char *k)
-{
- return crypto_shorthash_siphash24(out, in, inlen, k);
-}