mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-12 17:47:19 +03:00
13 lines
215 B
C
13 lines
215 B
C
#ifndef __CRYPT__BLAKE2B_H__
|
|
#define __CRYPT__BLAKE2B_H__
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#define BLAKE2B_OUT_BYTES 64
|
|
|
|
void blake2b(void *out, const void *in, size_t in_len);
|
|
|
|
#endif
|