blob: 291335fdfcb8cee96baeecf020b8d1d1ab6d2571 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
libblake_blake384_digest(struct libblake_blake384_state *state, void *data, size_t len, size_t bits,
const char *suffix, unsigned char output[static LIBBLAKE_BLAKE384_OUTPUT_SIZE])
{
libblake_internal_blakeb_digest(&state->b, data, len, bits, suffix, output, 385 / 64);
}
|