#ifndef PASSWORDENCRYPTION_H_ #define PASSWORDENCRYPTION_H_ #include #include "model/Models.h" namespace utility { class PasswordEncryption { public: model::PassSec hashPassword(const model::User&); bool isPasswordValid(const model::User&, const model::PassSec&); private: int saltSize(); }; } #endif