bcrypt.h (206B)
1 #pragma once 2 3 #include <stddef.h> 4 5 #define _PASSWORD_LEN 128 6 7 int bcrypt_newhash(const char *, int, char *, size_t); 8 int bcrypt_checkpass(const char *, const char *);
lua-bcryptSecure password hashing for Lua | |
Log | Files | Refs | README | LICENSE |