mirror of
https://github.com/xmrig/xmrig.git
synced 2026-06-22 12:12:36 -04:00
18 lines
317 B
C
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
|