34bool verify_password(
const string& hashed_password,
const string& password);
std::vector< std::string > hash_recovery_codes(const std::vector< std::string > &codes)
복구 코드를 해싱합니다.
Definition hash.cpp:65
bool verify_password(const string &hashed_password, const string &password)
Argon2id를 사용하여 비밀번호를 검증합니다.
Definition hash.cpp:50
string hash_password(const string &password)
Argon2id를 사용하여 비밀번호를 해싱합니다.
Definition hash.cpp:31
std::vector< std::string > generate_recovery_codes()
복구 코드를 생성합니다.
Definition hash.cpp:78