hash.c 161 Bytes
Newer Older
Rhys Weatherley committed
1

2
#include "ascon-hash.h"
Rhys Weatherley committed
3 4 5 6 7 8

int crypto_hash
    (unsigned char *out, const unsigned char *in, unsigned long long inlen)
{
    return ascon_hash(out, in, inlen);
}