pool/stratum/algos/pentablake.h
2015-09-19 10:36:21 +02:00

16 lines
205 B
C

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