aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/libsodium/src/libsodium/crypto_hash/crypto_hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/libsodium/src/libsodium/crypto_hash/crypto_hash.c')
-rw-r--r--sys/contrib/libsodium/src/libsodium/crypto_hash/crypto_hash.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/contrib/libsodium/src/libsodium/crypto_hash/crypto_hash.c b/sys/contrib/libsodium/src/libsodium/crypto_hash/crypto_hash.c
new file mode 100644
index 000000000000..855c560ba5ee
--- /dev/null
+++ b/sys/contrib/libsodium/src/libsodium/crypto_hash/crypto_hash.c
@@ -0,0 +1,20 @@
+
+#include "crypto_hash.h"
+
+size_t
+crypto_hash_bytes(void)
+{
+ return crypto_hash_BYTES;
+}
+
+int
+crypto_hash(unsigned char *out, const unsigned char *in,
+ unsigned long long inlen)
+{
+ return crypto_hash_sha512(out, in, inlen);
+}
+
+const char *
+crypto_hash_primitive(void) {
+ return crypto_hash_PRIMITIVE;
+}