Add Flex algo (for KCN coin) algo support
This commit is contained in:
parent
7445870414
commit
bf3831c05b
43 changed files with 5160 additions and 23 deletions
17
src/crypto/flex/cryptonote/cryptonight_turtle_lite.h
Normal file
17
src/crypto/flex/cryptonote/cryptonight_turtle_lite.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue