#pragma once #include // Password encryption via crypt(3) namespace Auth { std::string generate(const std::string& pw); bool validate(const std::string& crypted, const std::string& pw); }