Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1402 → Rev 1403

/trunk/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP32.php
80,10 → 80,10
}
$step = count($vals) & 3;
if ($step) {
$digit = floor($digit / pow(2, 2 * $step));
$digit = (int) floor($digit / pow(2, 2 * $step));
}
if ($step != 3) {
$digit &= static::MAX_DIGIT;
$digit = (int) fmod($digit, static::BASE_FULL);
$i++;
}
$vals[] = $digit;