pool/stratum/algos/blake2.h
2016-03-10 08:07:08 +01: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