1
0
mirror of https://github.com/xmrig/xmrig.git synced 2026-06-23 04:13:31 -04:00

Add Flex algo (for KCN coin) algo support

This commit is contained in:
MoneroOcean
2024-05-27 11:03:46 -07:00
parent 7445870414
commit bf3831c05b
43 changed files with 5160 additions and 23 deletions

View File

@@ -0,0 +1,17 @@
#ifndef CRYPTONIGHTTURTLE_H
#define CRYPTONIGHTTURTLE_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
void cryptonightturtle_hash(const char* input, char* output, uint32_t len, int variant);
void cryptonightturtle_fast_hash(const char* input, char* output, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif