pool/stratum/algos/lbry.h
Tanguy Pruvot a88c1e0b43 handle lbry algo and protocol
Signed-off-by: Tanguy Pruvot <tanguy.pruvot@gmail.com>
2016-07-19 23:14:34 +02:00

16 lines
192 B
C

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