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;
$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;
}