pool/stratum/algos/m7m.h
Tanguy Pruvot e34da61806 stratum: add support for m7m algo (XMG)
Signed-off-by: Tanguy Pruvot <tanguy.pruvot@gmail.com>
2015-10-05 23:56:29 +02:00

16 lines
190 B
C

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