xref: /freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/crypto_hash.c (revision da5069e1f7daaef1e7157876d6044de6f3a08ce2)
1 
2 #include "crypto_hash.h"
3 
4 size_t
5 crypto_hash_bytes(void)
6 {
7     return crypto_hash_BYTES;
8 }
9 
10 int
11 crypto_hash(unsigned char *out, const unsigned char *in,
12             unsigned long long inlen)
13 {
14     return crypto_hash_sha512(out, in, inlen);
15 }
16 
17 const char *
18 crypto_hash_primitive(void) {
19     return crypto_hash_PRIMITIVE;
20 }
21