#ifdef _MSC_VER #include #endif #include "password.h" #include "crypto/crypto.h" #include #include #include int bcrypt_workfactor = 8; bool password_is_implemented(cryptalgo_t algo) { if (algo == PASSWORD_BCRYPT) return true; return algo == PASSWORD_PLAINTEXT; } const char * password_hash(const char * passwd, cryptalgo_t algo) { if (algo == PASSWORD_BCRYPT) { char salt[BCRYPT_HASHSIZE]; static char hash[BCRYPT_HASHSIZE]; int ret; bcrypt_gensalt(bcrypt_workfactor, salt); ret = bcrypt_hashpw(passwd, salt, hash); assert(ret == 0); return hash; } return passwd; } int password_verify(const char * pwhash, const char * passwd) { if (pwhash[0] == '$') { if (pwhash[1] == '2') { int ret = bcrypt_checkpw(passwd, pwhash); assert(ret != -1); return (ret == 0) ? VERIFY_OK : VERIFY_FAIL; } } return (strcmp(passwd, pwhash) == 0) ? VERIFY_OK : VERIFY_FAIL; }