node-multi-hashing/bcrypt.h

14 lines
175 B
C
Raw Normal View History

2014-03-30 10:04:48 +02:00
#ifndef BCRYPT_H
#define BCRYPT_H
#ifdef __cplusplus
extern "C" {
#endif
void bcrypt_hash(const char *input, char *output);
#ifdef __cplusplus
}
#endif
#endif