18 lines
241 B
C
18 lines
241 B
C
|
// alph.h
|
||
|
|
||
|
#ifndef BLAKE3_H
|
||
|
#define BLAKE3_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void alph_hash(unsigned char *output, const unsigned char *input);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // BLAKE3_H
|