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

16 lines
201 B
C

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