pool/stratum/algos/keccak.h
Tanguy Pruvot 6d6fd9337f stratum: new algos, attempt to allow old sha merkleroot
blake (SFR) and whirlpool (J) tested ok with a sha256d merkleroot

So add a stratum setting to allow single sha256 merkle root...
The shares are now valid on the pool side, but remains to find
an old wallet to test... like Whirlcoin or blakecoin

keccak not tested, could have the same problem about merkle/miners
2015-10-07 05:04:04 +02:00

16 lines
201 B
C

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