pool/stratum/algos/argon2a.h
2016-01-24 17:15:40 +01:00

16 lines
200 B
C

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