node-multi-hashing/sha1.h

17 lines
200 B
C

#ifndef SHA1COIN_H
#define SHA1COIN_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
void sha1_hash(const char* input, char* output, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif