diff options
author | Matt Perry <matt@mattperry.com> | 2013-08-22 01:01:41 -0700 |
---|---|---|
committer | Matt Perry <matt@mattperry.com> | 2013-08-22 01:01:41 -0700 |
commit | 7ef8e99fe605c5da36ab6b5d317b22fcd17f665b (patch) | |
tree | 2245231ac0dcbeea7084a751f89699e3307133f2 /inc/phpseclib/Math_BigInteger.php | |
parent | 104262381eb89124eb900397f5054fde8e3d5658 (diff) | |
download | rpg-7ef8e99fe605c5da36ab6b5d317b22fcd17f665b.tar.gz rpg-7ef8e99fe605c5da36ab6b5d317b22fcd17f665b.tar.bz2 |
Fix CodeSniffer violations
Change indentation to ensure code confirms to CodeSniffer rules.
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) |