Welcome to little lamb

Code » test-hashes » next » tree

[next] / src / blake3-lila.c

#include <limb/blake3.h>

blake3_ctx ctx;

void init(void)
{
    blake3_init(&ctx);
}

void update(const char *msg, size_t size)
{
    blake3_update(&ctx, msg, size);
}

void final(unsigned char *md)
{
    blake3_final(&ctx, md);
}

int hashlen(void)
{
    return 32;
}