pool/stratum/algos/x16r.h
Tanguy Pruvot 0019ca611d new x16r algo, with stratum factor 256, like timetravel algos
beware: this algo may have a variable hashrate, unlike timetravel

its ignored from benchs for this reason
2018-01-24 20:43:52 +01:00

16 lines
192 B
C

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