node-multi-hashing/sha1.h

17 lines
192 B
C
Raw Permalink Normal View History

2014-06-15 01:29:39 +02:00
#ifndef SHA1_H
#define SHA1_H
2014-05-01 10:37:03 +02:00
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
2014-06-13 12:08:50 +02:00
void sha1_hash(const char* input, char* output, uint32_t len);
2014-05-01 10:37:03 +02:00
#ifdef __cplusplus
}
#endif
#endif