Files
plural_plus_plus/include/hashing.hpp
2026-03-11 00:10:34 +00:00

7 lines
274 B
C++

#include <string>
namespace hashing {
std::string GenerateSetting(unsigned long cost = 0);
std::string HashPassword(const std::string& password, const std::string& setting);
bool VerifyPassword(const std::string& password, const std::string& stored_password);
}