pool/stratum/algos/phi2.h
2018-06-06 18:30:37 +02:00

16 lines
192 B
C

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