Authenticator: pbkd5(): Mark as const
Dieser Commit ist enthalten in:
Ursprung
ac56b2f61d
Commit
250e4a94a6
@ -37,7 +37,7 @@ void Authenticator::incFailureCount(std::string ip)
|
||||
fl.lastfail = time(nullptr);
|
||||
}
|
||||
|
||||
std::vector<char> Authenticator::pbkdf5(std::string password, const std::vector<char> &salt)
|
||||
std::vector<char> Authenticator::pbkdf5(std::string password, const std::vector<char> &salt) const
|
||||
{
|
||||
unsigned char hash[32];
|
||||
const EVP_MD *sha256 = EVP_sha256();
|
||||
|
@ -18,7 +18,7 @@ class Authenticator
|
||||
UserDao *userDao;
|
||||
bool isBanned(std::string ip);
|
||||
void incFailureCount(std::string ip);
|
||||
std::vector<char> pbkdf5(std::string password, const std::vector<char> &salt);
|
||||
std::vector<char> pbkdf5(std::string password, const std::vector<char> &salt) const;
|
||||
|
||||
public:
|
||||
Authenticator(UserDao &userDao);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren