pool/stratum/algos/blake.h
Tanguy Pruvot 5ef293e938 decred stratum hack with extranonce field
override the coinbase field with the static part of the decred header...
2016-02-12 14:49:18 +01:00

17 lines
260 B
C

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