11 lines
174 B
C
11 lines
174 B
C
|
#ifndef __CRYPT__BLAKE2B_H__
|
||
|
#define __CRYPT__BLAKE2B_H__
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#define BLAKE2B_OUT_BYTES 64
|
||
|
|
||
|
void blake2b(void *out, const void *in, size_t in_len);
|
||
|
|
||
|
#endif
|