node-multi-hashing/qubit.h

17 lines
195 B
C
Raw Normal View History

2014-04-19 21:49:49 +02:00
#ifndef QUBIT_H
#define QUBIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
void qubit_hash(const char* input, char* output, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif