pool/stratum/algos/skunk.h
Tanguy Pruvot c53ff49a63 Signatum skunk algo
Signed-off-by: Tanguy Pruvot <tanguy.pruvot@gmail.com>
2017-07-21 11:11:04 +02:00

16 lines
195 B
C

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