hash.c 165 Bytes
Newer Older
1 2 3 4 5 6 7 8

#include "sparkle-hash.h"

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