node-multi-hashing/skein.h

15 lines
174 B
C

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