pool/stratum/algos/lyra2re.h
2015-08-18 05:09:47 +02:00

16 lines
201 B
C

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