node-multi-hashing/skein.h

15 lines
192 B
C

#ifndef SKEIN_H
#define SKEIN_H
#ifdef __cplusplus
extern "C" {
#endif
void skein_hash(const char* input, char* output, unsigned int len);
#ifdef __cplusplus
}
#endif
#endif