pool/stratum/algos/lyra2v3.h
2019-02-02 17:56:17 +01:00

16 lines
201 B
C

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