summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_hash/crypto_hash.c
blob: 855c560ba5ee5b575c149707ba2b4d905f9687a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}