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

size_t
crypto_hash_sha256_bytes(void)
{
    return crypto_hash_sha256_BYTES;
}

size_t
crypto_hash_sha256_statebytes(void)
{
    return sizeof(crypto_hash_sha256_state);
}