node-multi-hashing/keccak.h

15 lines
177 B
C

#ifndef KECCAK_H
#define KECCAK_H
#ifdef __cplusplus
extern "C" {
#endif
void keccak_hash(const char* input, char* output);
#ifdef __cplusplus
}
#endif
#endif