pool/stratum/algos/blake2b.h
2018-11-30 01:00:30 +01:00

16 lines
201 B
C

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