diff --git a/phpseclib/Math/BigInteger/Engines/Engine.php b/phpseclib/Math/BigInteger/Engines/Engine.php index 751e5c34..ff58e08d 100644 --- a/phpseclib/Math/BigInteger/Engines/Engine.php +++ b/phpseclib/Math/BigInteger/Engines/Engine.php @@ -617,7 +617,7 @@ abstract class Engine implements \JsonSerializable } if ($this->compare($n) > 0) { - list(, $temp) = $this->divide($n); + [, $temp] = $this->divide($n); return $temp->powModInner($e, $n); }