[Security] Add a separator in the remember me cookie hash

This commit is contained in:
Pascal Borreli 2019-04-06 11:40:18 +01:00 committed by MichaelC
parent 3e0b2354db
commit a29ce2817c
1 changed files with 1 additions and 1 deletions

View File

@ -120,6 +120,6 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices
*/
protected function generateCookieHash($class, $username, $expires, $password)
{
return hash_hmac('sha256', $class.$username.$expires.$password, $this->getSecret());
return hash_hmac('sha256', $class.self::COOKIE_DELIMITER.$username.self::COOKIE_DELIMITER.$expires.self::COOKIE_DELIMITER.$password, $this->getSecret());
}
}