blob: a08509ae395f8943b0bb51b75f5fbf393421a9a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
libblake_blake384_init(struct libblake_blake384_state *state)
{
libblake_blake384_init2(state, NULL);
}
|