pool/stratum/algos/sha256t.h
2017-03-08 11:44:57 +01:00

16 lines
201 B
C

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