mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
Merge pull request #359 from bantu/ticket/301
Adjust documentation to coding guidelines: No () around include. * bantu/ticket/301: Adjust documentation to coding guidelines: No () around include.
This commit is contained in:
commit
8b7a605c0f
@ -19,7 +19,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/AES.php');
|
* include 'Crypt/AES.php';
|
||||||
*
|
*
|
||||||
* $aes = new Crypt_AES();
|
* $aes = new Crypt_AES();
|
||||||
*
|
*
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/Blowfish.php');
|
* include 'Crypt/Blowfish.php';
|
||||||
*
|
*
|
||||||
* $blowfish = new Crypt_Blowfish();
|
* $blowfish = new Crypt_Blowfish();
|
||||||
*
|
*
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/DES.php');
|
* include 'Crypt/DES.php';
|
||||||
*
|
*
|
||||||
* $des = new Crypt_DES();
|
* $des = new Crypt_DES();
|
||||||
*
|
*
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/Hash.php');
|
* include 'Crypt/Hash.php';
|
||||||
*
|
*
|
||||||
* $hash = new Crypt_Hash('sha1');
|
* $hash = new Crypt_Hash('sha1');
|
||||||
*
|
*
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/RC2.php');
|
* include 'Crypt/RC2.php';
|
||||||
*
|
*
|
||||||
* $rc2 = new Crypt_RC2();
|
* $rc2 = new Crypt_RC2();
|
||||||
*
|
*
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/RC4.php');
|
* include 'Crypt/RC4.php';
|
||||||
*
|
*
|
||||||
* $rc4 = new Crypt_RC4();
|
* $rc4 = new Crypt_RC4();
|
||||||
*
|
*
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* Here's an example of how to encrypt and decrypt text with this library:
|
* Here's an example of how to encrypt and decrypt text with this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/RSA.php');
|
* include 'Crypt/RSA.php';
|
||||||
*
|
*
|
||||||
* $rsa = new Crypt_RSA();
|
* $rsa = new Crypt_RSA();
|
||||||
* extract($rsa->createKey());
|
* extract($rsa->createKey());
|
||||||
@ -26,7 +26,7 @@
|
|||||||
* Here's an example of how to create signatures and verify signatures with this library:
|
* Here's an example of how to create signatures and verify signatures with this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/RSA.php');
|
* include 'Crypt/RSA.php';
|
||||||
*
|
*
|
||||||
* $rsa = new Crypt_RSA();
|
* $rsa = new Crypt_RSA();
|
||||||
* extract($rsa->createKey());
|
* extract($rsa->createKey());
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/Random.php');
|
* include 'Crypt/Random.php';
|
||||||
*
|
*
|
||||||
* echo bin2hex(crypt_random_string(8));
|
* echo bin2hex(crypt_random_string(8));
|
||||||
* ?>
|
* ?>
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/Rijndael.php');
|
* include 'Crypt/Rijndael.php';
|
||||||
*
|
*
|
||||||
* $rijndael = new Crypt_Rijndael();
|
* $rijndael = new Crypt_Rijndael();
|
||||||
*
|
*
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/TripleDES.php');
|
* include 'Crypt/TripleDES.php';
|
||||||
*
|
*
|
||||||
* $des = new Crypt_TripleDES();
|
* $des = new Crypt_TripleDES();
|
||||||
*
|
*
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/Twofish.php');
|
* include 'Crypt/Twofish.php';
|
||||||
*
|
*
|
||||||
* $twofish = new Crypt_Twofish();
|
* $twofish = new Crypt_Twofish();
|
||||||
*
|
*
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
* Here's an example of how to use this library:
|
* Here's an example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger(2);
|
* $a = new Math_BigInteger(2);
|
||||||
* $b = new Math_BigInteger(3);
|
* $b = new Math_BigInteger(3);
|
||||||
@ -238,7 +238,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('0x32', 16); // 50 in base-16
|
* $a = new Math_BigInteger('0x32', 16); // 50 in base-16
|
||||||
*
|
*
|
||||||
@ -506,7 +506,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('65');
|
* $a = new Math_BigInteger('65');
|
||||||
*
|
*
|
||||||
@ -603,7 +603,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('65');
|
* $a = new Math_BigInteger('65');
|
||||||
*
|
*
|
||||||
@ -630,7 +630,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('65');
|
* $a = new Math_BigInteger('65');
|
||||||
*
|
*
|
||||||
@ -668,7 +668,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('50');
|
* $a = new Math_BigInteger('50');
|
||||||
*
|
*
|
||||||
@ -821,7 +821,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('10');
|
* $a = new Math_BigInteger('10');
|
||||||
* $b = new Math_BigInteger('20');
|
* $b = new Math_BigInteger('20');
|
||||||
@ -952,7 +952,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('10');
|
* $a = new Math_BigInteger('10');
|
||||||
* $b = new Math_BigInteger('20');
|
* $b = new Math_BigInteger('20');
|
||||||
@ -1088,7 +1088,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('10');
|
* $a = new Math_BigInteger('10');
|
||||||
* $b = new Math_BigInteger('20');
|
* $b = new Math_BigInteger('20');
|
||||||
@ -1372,7 +1372,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('10');
|
* $a = new Math_BigInteger('10');
|
||||||
* $b = new Math_BigInteger('20');
|
* $b = new Math_BigInteger('20');
|
||||||
@ -1591,7 +1591,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger('10');
|
* $a = new Math_BigInteger('10');
|
||||||
* $b = new Math_BigInteger('20');
|
* $b = new Math_BigInteger('20');
|
||||||
@ -2396,7 +2396,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger(30);
|
* $a = new Math_BigInteger(30);
|
||||||
* $b = new Math_BigInteger(17);
|
* $b = new Math_BigInteger(17);
|
||||||
@ -2464,7 +2464,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger(693);
|
* $a = new Math_BigInteger(693);
|
||||||
* $b = new Math_BigInteger(609);
|
* $b = new Math_BigInteger(609);
|
||||||
@ -2599,7 +2599,7 @@ class Math_BigInteger
|
|||||||
* Here's an example:
|
* Here's an example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Math/BigInteger.php');
|
* include 'Math/BigInteger.php';
|
||||||
*
|
*
|
||||||
* $a = new Math_BigInteger(693);
|
* $a = new Math_BigInteger(693);
|
||||||
* $b = new Math_BigInteger(609);
|
* $b = new Math_BigInteger(609);
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Net/SCP.php');
|
* include 'Net/SCP.php';
|
||||||
* include('Net/SSH2.php');
|
* include 'Net/SSH2.php';
|
||||||
*
|
*
|
||||||
* $ssh = new Net_SSH2('www.domain.tld');
|
* $ssh = new Net_SSH2('www.domain.tld');
|
||||||
* if (!$ssh->login('username', 'password')) {
|
* if (!$ssh->login('username', 'password')) {
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Net/SFTP.php');
|
* include 'Net/SFTP.php';
|
||||||
*
|
*
|
||||||
* $sftp = new Net_SFTP('www.domain.tld');
|
* $sftp = new Net_SFTP('www.domain.tld');
|
||||||
* if (!$sftp->login('username', 'password')) {
|
* if (!$sftp->login('username', 'password')) {
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* Here's a short example of how to use this library:
|
* Here's a short example of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Net/SSH1.php');
|
* include 'Net/SSH1.php';
|
||||||
*
|
*
|
||||||
* $ssh = new Net_SSH1('www.domain.tld');
|
* $ssh = new Net_SSH1('www.domain.tld');
|
||||||
* if (!$ssh->login('username', 'password')) {
|
* if (!$ssh->login('username', 'password')) {
|
||||||
@ -22,7 +22,7 @@
|
|||||||
* Here's another short example:
|
* Here's another short example:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Net/SSH1.php');
|
* include 'Net/SSH1.php';
|
||||||
*
|
*
|
||||||
* $ssh = new Net_SSH1('www.domain.tld');
|
* $ssh = new Net_SSH1('www.domain.tld');
|
||||||
* if (!$ssh->login('username', 'password')) {
|
* if (!$ssh->login('username', 'password')) {
|
||||||
@ -704,7 +704,7 @@ class Net_SSH1
|
|||||||
break;
|
break;
|
||||||
//case NET_SSH1_CIPHER_RC4:
|
//case NET_SSH1_CIPHER_RC4:
|
||||||
// if (!class_exists('Crypt_RC4')) {
|
// if (!class_exists('Crypt_RC4')) {
|
||||||
// include_once('Crypt/RC4.php');
|
// include_once 'Crypt/RC4.php';
|
||||||
// }
|
// }
|
||||||
// $this->crypto = new Crypt_RC4();
|
// $this->crypto = new Crypt_RC4();
|
||||||
// $this->crypto->enableContinuousBuffer();
|
// $this->crypto->enableContinuousBuffer();
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* Here are some examples of how to use this library:
|
* Here are some examples of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Net/SSH2.php');
|
* include 'Net/SSH2.php';
|
||||||
*
|
*
|
||||||
* $ssh = new Net_SSH2('www.domain.tld');
|
* $ssh = new Net_SSH2('www.domain.tld');
|
||||||
* if (!$ssh->login('username', 'password')) {
|
* if (!$ssh->login('username', 'password')) {
|
||||||
@ -22,8 +22,8 @@
|
|||||||
*
|
*
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('Crypt/RSA.php');
|
* include 'Crypt/RSA.php';
|
||||||
* include('Net/SSH2.php');
|
* include 'Net/SSH2.php';
|
||||||
*
|
*
|
||||||
* $key = new Crypt_RSA();
|
* $key = new Crypt_RSA();
|
||||||
* //$key->setPassword('whatever');
|
* //$key->setPassword('whatever');
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
* Here are some examples of how to use this library:
|
* Here are some examples of how to use this library:
|
||||||
* <code>
|
* <code>
|
||||||
* <?php
|
* <?php
|
||||||
* include('System/SSH/Agent.php');
|
* include 'System/SSH/Agent.php';
|
||||||
* include('Net/SSH2.php');
|
* include 'Net/SSH2.php';
|
||||||
*
|
*
|
||||||
* $agent = new System_SSH_Agent();
|
* $agent = new System_SSH_Agent();
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user