RSA: replace != with !$this->_equals

This commit is contained in:
terrafrost 2017-10-05 05:31:19 -05:00
parent aeb8a98a25
commit 29fabaaa18

View File

@ -2512,7 +2512,7 @@ class Crypt_RSA
$db = $maskedDB ^ $dbMask; $db = $maskedDB ^ $dbMask;
$lHash2 = substr($db, 0, $this->hLen); $lHash2 = substr($db, 0, $this->hLen);
$m = substr($db, $this->hLen); $m = substr($db, $this->hLen);
if ($lHash != $lHash2) { if (!$this->_equals($lHash, $lHash2)) {
user_error('Decryption error'); user_error('Decryption error');
return false; return false;
} }