node-multi-hashing/cryptonight.h

18 lines
288 B
C
Raw Normal View History

2014-05-10 21:07:49 +02:00
#ifndef CRYPTONIGHT_H
#define CRYPTONIGHT_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
void cryptonight_hash(const char* input, char* output, uint32_t len);
2014-05-14 17:56:17 +02:00
void cryptonight_fast_hash(const char* input, char* output, uint32_t len);
2014-05-10 21:07:49 +02:00
#ifdef __cplusplus
}
#endif
#endif