node-multi-hashing/keccak.h

17 lines
215 B
C
Raw Normal View History

2014-03-30 10:04:48 +02:00
#ifndef KECCAK_H
#define KECCAK_H
#ifdef __cplusplus
extern "C" {
#endif
2014-04-19 23:33:45 +02:00
#include <stdint.h>
void keccak_hash(const char* input, char* output, uint32_t size);
2014-03-30 10:04:48 +02:00
#ifdef __cplusplus
}
#endif
#endif