Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 711 → Rev 712

/trunk/includes/classes/OIDplusAuthUtils.class.php
64,7 → 64,7
} else {
$hmac = hash_hmac($algo, $password, $pepper);
}
if ($hmac === false) throw new OIDplusException(_L('HMAC failed')); /** @phpstan-ignore-line */
if ($hmac === false) throw new OIDplusException(_L('HMAC failed'));
return $hmac;
} else {
return $password;