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 CRYPTONIGHTTURTLELITE_H
#define CRYPTONIGHTTURTLELITE_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
void cryptonightturtlelite_hash(const char* input, char* output, uint32_t len, int variant);
void cryptonightturtlelite_fast_hash(const char* input, char* output, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif