mirror of
https://github.com/danog/tgseclib.git
synced 2024-11-27 04:34:45 +01:00
RSA: replace != with !$this->_equals
This commit is contained in:
parent
aeb8a98a25
commit
29fabaaa18
@ -2512,7 +2512,7 @@ class Crypt_RSA
|
||||
$db = $maskedDB ^ $dbMask;
|
||||
$lHash2 = substr($db, 0, $this->hLen);
|
||||
$m = substr($db, $this->hLen);
|
||||
if ($lHash != $lHash2) {
|
||||
if (!$this->_equals($lHash, $lHash2)) {
|
||||
user_error('Decryption error');
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user