REDACTED-rig/src/crypto/flex/cryptonote/cryptonight_fast.h
2024-05-27 11:03:46 -07:00

17 lines
317 B
C

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