Merge pull request 'fix verify password methode ssha' (#11) from themeConfig into develop
Cadoles/hydra-sql/pipeline/head This commit is unstable Details

Reviewed-on: #11
This commit is contained in:
Rudy Masson 2023-01-11 10:32:41 +01:00
commit 8d52721172
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ class PasswordEncoder implements LegacyPasswordHasherInterface
$completedPassword = $this->getPasswordToHash($plainPassword, $salt);
foreach ($this->hashAlgoLegacy as $algo) {
if ('ssha' === $algo) {
return $this->compareSsha($hashedPassword, $completedPassword);
if ('ssha' === $algo && $this->compareSsha($hashedPassword, $completedPassword)) {
return true;
}
if ($this->isObsoleteAlgo($algo)) {
if (hash_equals(hash($algo, $completedPassword), $hashedPassword)) {