From 27034825f367fd1bdb155d410c479f2aebcc014e Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sun, 4 Oct 2015 16:29:48 -0500 Subject: [PATCH] cs changes per bantu --- phpseclib/Crypt/Base.php | 4 ++-- phpseclib/Crypt/Blowfish.php | 2 +- phpseclib/Crypt/RC2.php | 2 +- phpseclib/Crypt/TripleDES.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/phpseclib/Crypt/Base.php b/phpseclib/Crypt/Base.php index 7087c6ce..3e99a6b7 100644 --- a/phpseclib/Crypt/Base.php +++ b/phpseclib/Crypt/Base.php @@ -473,7 +473,7 @@ class Crypt_Base /** * Has the key length explicitly been set or should it be derived from the key, itself? * - * @see setKeyLength() + * @see Crypt_Base::setKeyLength() * @var bool * @access private */ @@ -482,7 +482,7 @@ class Crypt_Base /** * Don't truncate / null pad key * - * @see Crypt_Base::_clearBuffers + * @see Crypt_Base::_clearBuffers() * @var bool * @access private */ diff --git a/phpseclib/Crypt/Blowfish.php b/phpseclib/Crypt/Blowfish.php index c5db8484..8af33d40 100644 --- a/phpseclib/Crypt/Blowfish.php +++ b/phpseclib/Crypt/Blowfish.php @@ -346,7 +346,7 @@ class Crypt_Blowfish extends Crypt_Base /** * The Key Length * - * @see setKeyLength() + * @see Crypt_Base::setKeyLength() * @var int * @access private * @internal The max value is 256 / 8 = 32, the min value is 128 / 8 = 16. Exists in conjunction with $Nk diff --git a/phpseclib/Crypt/RC2.php b/phpseclib/Crypt/RC2.php index cda4f0d7..121a426a 100644 --- a/phpseclib/Crypt/RC2.php +++ b/phpseclib/Crypt/RC2.php @@ -141,7 +141,7 @@ class Crypt_RC2 extends Crypt_Base /** * Don't truncate / null pad key * - * @see Crypt_Base::_clearBuffers + * @see Crypt_Base::_clearBuffers() * @var bool * @access private */ diff --git a/phpseclib/Crypt/TripleDES.php b/phpseclib/Crypt/TripleDES.php index 0bd68361..70c5f250 100644 --- a/phpseclib/Crypt/TripleDES.php +++ b/phpseclib/Crypt/TripleDES.php @@ -269,7 +269,7 @@ class Crypt_TripleDES extends Crypt_DES * * Valid key lengths are 64, 128 and 192 * - * @see Crypt_Rijndael:setKeyLength() + * @see Crypt_Base:setKeyLength() * @access public * @param int $length */