Merge branch '2.0-phpdoc'

This commit is contained in:
terrafrost 2015-04-16 00:54:23 -05:00
commit 8936593317
18 changed files with 144 additions and 145 deletions

View File

@ -255,7 +255,7 @@ class Blowfish extends Base
/**
* P-Array consists of 18 32-bit subkeys
*
* @var array $parray
* @var array
* @access private
*/
var $parray = array(
@ -269,7 +269,7 @@ class Blowfish extends Base
*
* Holds the expanded key [p] and the key-depended s-boxes [sb]
*
* @var array $bctx
* @var array
* @access private
*/
var $bctx;

View File

@ -138,7 +138,6 @@ class Rijndael extends Base
* because the encryption / decryption / key schedule creation requires this number and not $block_size. We could
* derive this from $block_size or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu
* of that, we'll just precompute it once.
*
*/
var $Nb = 4;

View File

@ -16,8 +16,8 @@
* if (!$ssh->login('username', 'password')) {
* exit('bad login');
* }
* $scp = new \phpseclib\Net\SCP($ssh);
* $scp->put('abcd', str_repeat('x', 1024*1024));
* ?>
* </code>