pool/stratum/algos/blake2s.h
Tanguy Pruvot 8c1964d0d9 lyra2z: prevent filenames with different cases
+ rename blake2 to blake2s and reorder algo makefile
2018-05-18 13:09:07 +02:00

16 lines
201 B
C

#ifndef BLAKE2S_H
#define BLAKE2S_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
void blake2s_hash(const char* input, char* output, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif