#include "blake.h" #include #include #include #include #include "sha3/sph_blake.h" void blake_hash(const char* input, char* output, uint32_t len) { sph_blake256_context ctx_blake; sph_blake256_init(&ctx_blake); sph_blake256(&ctx_blake, input, len); sph_blake256_close(&ctx_blake, output); }