diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-08-22 01:12:47 -0700 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-08-22 01:12:47 -0700 |
commit | 5a3aabcff0e246c29f47c1dd65301712cd553308 (patch) | |
tree | 2245231ac0dcbeea7084a751f89699e3307133f2 /inc/phpseclib/Math_BigInteger.php | |
parent | ef0239a32ff44792b95819fe52398f3fc0dc4fae (diff) | |
parent | 7ef8e99fe605c5da36ab6b5d317b22fcd17f665b (diff) | |
download | rpg-5a3aabcff0e246c29f47c1dd65301712cd553308.tar.gz rpg-5a3aabcff0e246c29f47c1dd65301712cd553308.tar.bz2 |
Merge pull request #311 from mperry2/scopeindent
Fix CodeSniffer violations
Diffstat (limited to 'inc/phpseclib/Math_BigInteger.php')
-rw-r--r-- | inc/phpseclib/Math_BigInteger.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/phpseclib/Math_BigInteger.php b/inc/phpseclib/Math_BigInteger.php index 0bbedb207..55379770d 100644 --- a/inc/phpseclib/Math_BigInteger.php +++ b/inc/phpseclib/Math_BigInteger.php @@ -3246,7 +3246,7 @@ class Math_BigInteger { if (!$t) { // see HAC 4.49 "Note (controlling the error probability)" - if ($length >= 163) { $t = 2; } // floor(1300 / 8) + if ($length >= 163) { $t = 2; } // floor(1300 / 8) else if ($length >= 106) { $t = 3; } // floor( 850 / 8) else if ($length >= 81 ) { $t = 4; } // floor( 650 / 8) else if ($length >= 68 ) { $t = 5; } // floor( 550 / 8) |