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