summaryrefslogtreecommitdiff
path: root/libs/libsodium/src/crypto_hash/sha512/hash_sha512.c
blob: ba842b8bd4feb1b6b0e8fd5b7a5ca0fe1e05d604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "crypto_hash_sha512.h"

size_t
crypto_hash_sha512_bytes(void)
{
    return crypto_hash_sha512_BYTES;
}

size_t
crypto_hash_sha512_statebytes(void)
{
    return sizeof(crypto_hash_sha512_state);
}