1
0
mirror of https://github.com/xmrig/xmrig.git synced 2026-06-22 12:12:36 -04:00
Files
xmrig/src/crypto/flex/cryptonote/cryptonight_fast.h
2024-05-27 11:03:46 -07:00

18 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