pool/stratum/algos/keccak.h
2015-07-02 20:58:24 +02:00

16 lines
215 B
C

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