#include #include static struct blake2s_state hash[2] = { {.outlen = 32 /* TODO: other constants */ }, {.outlen = 32 /* TODO: other constants */ } }; void mix_dblblake2s(const void *in, int nbytes) { blake2s_update(&hash[0], in, nbytes); blake2s_update(&hash[1], in, nbytes); }