16 lines
232 B
C
16 lines
232 B
C
|
#ifndef CRYPTONIGHT_H
|
||
|
#define CRYPTONIGHT_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void cryptonight(void *output, const void *input, size_t len, int lite, int variant);
|
||
|
struct cryptonight_ctx;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|