mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
Merge branch '2.0'
* 2.0: Fix indentation phpcbf did not fix. Remove PSR2.Methods.FunctionCallSignature.SpaceAfterOpenBracket exception. Use phpcbf to fix PHP code to ruleset. Ignore coding guidelines in ANSI switch block. Base code sniffer ruleset on PSR2 rather than PEAR. Update PHP Code Sniffer to 2.3.3
This commit is contained in:
commit
f0d653a8f3
@ -7,18 +7,10 @@
|
|||||||
<rule ref="./code-sniffer-ruleset.xml">
|
<rule ref="./code-sniffer-ruleset.xml">
|
||||||
<!-- Exceptions to the library coding standard follow. -->
|
<!-- Exceptions to the library coding standard follow. -->
|
||||||
|
|
||||||
<!-- We do not care too much about method, class and file documentation,
|
<!-- Test classes do not have to be namespaced but may use pseudo-namespacing
|
||||||
but having @author, @copyright and @license tags would be nice.
|
using underscore. -->
|
||||||
The following configuration does not check for these tags, but
|
|
||||||
complains if the file doc block is missing completely. -->
|
|
||||||
<exclude name="PEAR.Commenting.ClassComment" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment" />
|
|
||||||
<exclude name="PEAR.Commenting.FileComment.MissingTag" />
|
|
||||||
<exclude name="PEAR.Commenting.FileComment.MissingVersion" />
|
|
||||||
<exclude name="PEAR.Commenting.FileComment.SpacingBeforeTags" />
|
|
||||||
|
|
||||||
<!-- Test classes do not have to be namespaced. -->
|
|
||||||
<exclude name="PSR1.Classes.ClassDeclaration.MissingNamespace" />
|
<exclude name="PSR1.Classes.ClassDeclaration.MissingNamespace" />
|
||||||
|
<exclude name="Squiz.Classes.ValidClassName.NotCamelCaps" />
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
</ruleset>
|
</ruleset>
|
||||||
|
@ -3,35 +3,25 @@
|
|||||||
|
|
||||||
<description>phpseclib coding standard</description>
|
<description>phpseclib coding standard</description>
|
||||||
|
|
||||||
<!-- We are using the PEAR standard as a base -->
|
<!-- We are using the PSR2 standard as a base -->
|
||||||
<rule ref="PEAR">
|
<rule ref="PSR2">
|
||||||
<!-- Temporary exceptions to the PEAR standard follow -->
|
<!-- Exceptions due to legacy code with PHP4 compatibility -->
|
||||||
<exclude name="Generic.ControlStructures.InlineControlStructure.Discouraged" />
|
<exclude name="PSR2.Classes.PropertyDeclaration.ScopeMissing" />
|
||||||
|
<exclude name="PSR2.Classes.PropertyDeclaration.VarUsed" />
|
||||||
|
<exclude name="Squiz.Scope.MethodScope.Missing" />
|
||||||
|
|
||||||
|
<!-- Exceptions for backward compatibility -->
|
||||||
|
<exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps" />
|
||||||
|
<exclude name="PSR2.Methods.MethodDeclaration.Underscore" />
|
||||||
|
|
||||||
|
<!-- Exceptions for whitespacing -->
|
||||||
|
<exclude name="Generic.Functions.FunctionCallArgumentSpacing.TooMuchSpaceAfterComma" />
|
||||||
|
<exclude name="PSR2.ControlStructures.SwitchDeclaration.SpaceBeforeColonCASE" />
|
||||||
|
<exclude name="PSR2.ControlStructures.SwitchDeclaration.SpaceBeforeColonDEFAULT" />
|
||||||
|
|
||||||
|
<!-- Other Exceptions -->
|
||||||
<exclude name="Generic.Files.LineLength.TooLong" />
|
<exclude name="Generic.Files.LineLength.TooLong" />
|
||||||
<exclude name="PEAR.NamingConventions.ValidFunctionName.FunctionNoCapital" />
|
<exclude name="PSR2.ControlStructures.SwitchDeclaration.TerminatingComment" />
|
||||||
<exclude name="PEAR.NamingConventions.ValidFunctionName.NotCamelCaps" />
|
|
||||||
<exclude name="PEAR.Commenting.ClassComment.InvalidVersion" />
|
|
||||||
<exclude name="PEAR.Commenting.ClassComment.MissingTag" />
|
|
||||||
<exclude name="PEAR.Commenting.FileComment.EmptyCopyright" />
|
|
||||||
<exclude name="PEAR.Commenting.FileComment.InvalidVersion" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.ExtraParamComment" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.MissingReturn" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.MissingParamComment" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.MissingParamName" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.MissingParamTag" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.ParameterCommentsNotAligned" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.ParameterNamesNotAligned" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.ParamNameNoMatch" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.SpacingAfterParams" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.SpacingBeforeParams" />
|
|
||||||
<exclude name="PEAR.Commenting.FunctionComment.SpacingBeforeTags" />
|
|
||||||
<exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket" />
|
|
||||||
<exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine" />
|
|
||||||
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket" />
|
|
||||||
<exclude name="PEAR.WhiteSpace.ScopeClosingBrace.BreakIdent" />
|
|
||||||
<exclude name="PEAR.WhiteSpace.ScopeClosingBrace.Indent" />
|
|
||||||
<exclude name="PEAR.WhiteSpace.ScopeClosingBrace.Line" />
|
|
||||||
<exclude name="PEAR.WhiteSpace.ScopeIndent.Incorrect" />
|
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
<!-- Useful additional rules follow -->
|
<!-- Useful additional rules follow -->
|
||||||
@ -42,46 +32,4 @@
|
|||||||
<!-- A method MUST not only call its parent -->
|
<!-- A method MUST not only call its parent -->
|
||||||
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod" />
|
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod" />
|
||||||
|
|
||||||
<!-- All code files MUST use only UTF-8 without BOM. -->
|
|
||||||
<rule ref="Generic.Files.ByteOrderMark" />
|
|
||||||
|
|
||||||
<!-- Constructors MUST be called __construct() instead of after the class. -->
|
|
||||||
<rule ref="Generic.NamingConventions.ConstructorName" />
|
|
||||||
|
|
||||||
<!-- Classes etc. MUST be namespaced -->
|
|
||||||
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace" />
|
|
||||||
|
|
||||||
<!-- A file MUST not contain more than one class/interface -->
|
|
||||||
<rule ref="PSR1.Classes.ClassDeclaration.MultipleClasses" />
|
|
||||||
|
|
||||||
<!-- Files containing classes MUST not have any side-effects -->
|
|
||||||
<rule ref="PSR1.Files.SideEffects.FoundWithSymbols" />
|
|
||||||
|
|
||||||
<!-- Each file MUST end with exactly one newline character -->
|
|
||||||
<rule ref="PSR2.Files.EndFileNewline" />
|
|
||||||
|
|
||||||
<!-- In the argument list, there MUST NOT be a space before each comma,
|
|
||||||
and there MUST be one space after each comma. -->
|
|
||||||
<rule ref="Squiz.Functions.FunctionDeclarationArgumentSpacing">
|
|
||||||
<properties>
|
|
||||||
<property name="equalsSpacing" value="1"/>
|
|
||||||
</properties>
|
|
||||||
</rule>
|
|
||||||
<rule ref="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingAfterHint" />
|
|
||||||
|
|
||||||
<!-- There MUST NOT be trailing whitespace at the end of lines. -->
|
|
||||||
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace" />
|
|
||||||
|
|
||||||
<!-- There MUST NOT be whitespace before the first content of a file -->
|
|
||||||
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.StartFile" />
|
|
||||||
|
|
||||||
<!-- There MUST NOT be whitespace after the last content of a file -->
|
|
||||||
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.EndFile" />
|
|
||||||
|
|
||||||
<!-- Functions MUST NOT contain multiple empty lines in a row -->
|
|
||||||
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines" />
|
|
||||||
|
|
||||||
<!-- The ?> closing tag MUST be omitted from files containing only PHP. -->
|
|
||||||
<rule ref="Zend.Files.ClosingTag" />
|
|
||||||
|
|
||||||
</ruleset>
|
</ruleset>
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
"phing/phing": "~2.7",
|
"phing/phing": "~2.7",
|
||||||
"phpunit/phpunit": "~4.0",
|
"phpunit/phpunit": "~4.0",
|
||||||
"sami/sami": "~2.0",
|
"sami/sami": "~2.0",
|
||||||
"squizlabs/php_codesniffer": "~1.5"
|
"squizlabs/php_codesniffer": "~2.0"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"ext-mcrypt": "Install the Mcrypt extension in order to speed up a wide variety of cryptographic operations.",
|
"ext-mcrypt": "Install the Mcrypt extension in order to speed up a wide variety of cryptographic operations.",
|
||||||
|
27
composer.lock
generated
27
composer.lock
generated
@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"_readme": [
|
"_readme": [
|
||||||
"This file locks the dependencies of your project to a known state",
|
"This file locks the dependencies of your project to a known state",
|
||||||
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"hash": "1973a3fc1c8f678a9cd0ff646f7a8bee",
|
"hash": "a8adabfa04c250bbec41c87f79a59b31",
|
||||||
"packages": [],
|
"packages": [],
|
||||||
"packages-dev": [
|
"packages-dev": [
|
||||||
{
|
{
|
||||||
@ -1201,32 +1201,31 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "squizlabs/php_codesniffer",
|
"name": "squizlabs/php_codesniffer",
|
||||||
"version": "1.5.6",
|
"version": "2.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
|
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
|
||||||
"reference": "6f3e42d311b882b25b4d409d23a289f4d3b803d5"
|
"reference": "c1a26c729508f73560c1a4f767f60b8ab6b4a666"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6f3e42d311b882b25b4d409d23a289f4d3b803d5",
|
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/c1a26c729508f73560c1a4f767f60b8ab6b4a666",
|
||||||
"reference": "6f3e42d311b882b25b4d409d23a289f4d3b803d5",
|
"reference": "c1a26c729508f73560c1a4f767f60b8ab6b4a666",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-tokenizer": "*",
|
"ext-tokenizer": "*",
|
||||||
|
"ext-xmlwriter": "*",
|
||||||
"php": ">=5.1.2"
|
"php": ">=5.1.2"
|
||||||
},
|
},
|
||||||
"suggest": {
|
|
||||||
"phpunit/php-timer": "dev-master"
|
|
||||||
},
|
|
||||||
"bin": [
|
"bin": [
|
||||||
"scripts/phpcs"
|
"scripts/phpcs",
|
||||||
|
"scripts/phpcbf"
|
||||||
],
|
],
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-phpcs-fixer": "2.0.x-dev"
|
"dev-master": "2.0.x-dev"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -1235,12 +1234,12 @@
|
|||||||
"CodeSniffer/CLI.php",
|
"CodeSniffer/CLI.php",
|
||||||
"CodeSniffer/Exception.php",
|
"CodeSniffer/Exception.php",
|
||||||
"CodeSniffer/File.php",
|
"CodeSniffer/File.php",
|
||||||
|
"CodeSniffer/Fixer.php",
|
||||||
"CodeSniffer/Report.php",
|
"CodeSniffer/Report.php",
|
||||||
"CodeSniffer/Reporting.php",
|
"CodeSniffer/Reporting.php",
|
||||||
"CodeSniffer/Sniff.php",
|
"CodeSniffer/Sniff.php",
|
||||||
"CodeSniffer/Tokens.php",
|
"CodeSniffer/Tokens.php",
|
||||||
"CodeSniffer/Reports/",
|
"CodeSniffer/Reports/",
|
||||||
"CodeSniffer/CommentParser/",
|
|
||||||
"CodeSniffer/Tokenizers/",
|
"CodeSniffer/Tokenizers/",
|
||||||
"CodeSniffer/DocGenerators/",
|
"CodeSniffer/DocGenerators/",
|
||||||
"CodeSniffer/Standards/AbstractPatternSniff.php",
|
"CodeSniffer/Standards/AbstractPatternSniff.php",
|
||||||
@ -1266,13 +1265,13 @@
|
|||||||
"role": "lead"
|
"role": "lead"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
|
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
|
||||||
"homepage": "http://www.squizlabs.com/php-codesniffer",
|
"homepage": "http://www.squizlabs.com/php-codesniffer",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"phpcs",
|
"phpcs",
|
||||||
"standards"
|
"standards"
|
||||||
],
|
],
|
||||||
"time": "2014-12-04 22:32:15"
|
"time": "2015-06-24 03:16:23"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/console",
|
"name": "symfony/console",
|
||||||
|
@ -1378,7 +1378,6 @@ class DES extends Base
|
|||||||
// Creating code for en- and decryption.
|
// Creating code for en- and decryption.
|
||||||
$crypt_block = array();
|
$crypt_block = array();
|
||||||
foreach (array(self::ENCRYPT, self::DECRYPT) as $c) {
|
foreach (array(self::ENCRYPT, self::DECRYPT) as $c) {
|
||||||
|
|
||||||
/* Do the initial IP permutation. */
|
/* Do the initial IP permutation. */
|
||||||
$crypt_block[$c] = '
|
$crypt_block[$c] = '
|
||||||
$in = unpack("N*", $in);
|
$in = unpack("N*", $in);
|
||||||
|
@ -497,12 +497,14 @@ class Hash
|
|||||||
|
|
||||||
// Extend the sixteen 32-bit words into sixty-four 32-bit words
|
// Extend the sixteen 32-bit words into sixty-four 32-bit words
|
||||||
for ($i = 16; $i < 64; $i++) {
|
for ($i = 16; $i < 64; $i++) {
|
||||||
|
// @codingStandardsIgnoreStart
|
||||||
$s0 = $this->_rightRotate($w[$i - 15], 7) ^
|
$s0 = $this->_rightRotate($w[$i - 15], 7) ^
|
||||||
$this->_rightRotate($w[$i - 15], 18) ^
|
$this->_rightRotate($w[$i - 15], 18) ^
|
||||||
$this->_rightShift( $w[$i - 15], 3);
|
$this->_rightShift( $w[$i - 15], 3);
|
||||||
$s1 = $this->_rightRotate($w[$i - 2], 17) ^
|
$s1 = $this->_rightRotate($w[$i - 2], 17) ^
|
||||||
$this->_rightRotate($w[$i - 2], 19) ^
|
$this->_rightRotate($w[$i - 2], 19) ^
|
||||||
$this->_rightShift( $w[$i - 2], 10);
|
$this->_rightShift( $w[$i - 2], 10);
|
||||||
|
// @codingStandardsIgnoreEnd
|
||||||
$w[$i] = $this->_add($w[$i - 16], $s0, $w[$i - 7], $s1);
|
$w[$i] = $this->_add($w[$i - 16], $s0, $w[$i - 7], $s1);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -572,7 +572,8 @@ class RSA
|
|||||||
$publickey = call_user_func_array(array($this, '_convertPublicKey'), array_values($this->_parseKey($publickey, self::PUBLIC_FORMAT_PKCS1)));
|
$publickey = call_user_func_array(array($this, '_convertPublicKey'), array_values($this->_parseKey($publickey, self::PUBLIC_FORMAT_PKCS1)));
|
||||||
|
|
||||||
// clear the buffer of error strings stemming from a minimalistic openssl.cnf
|
// clear the buffer of error strings stemming from a minimalistic openssl.cnf
|
||||||
while (openssl_error_string() !== false);
|
while (openssl_error_string() !== false) {
|
||||||
|
}
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'privatekey' => $privatekey,
|
'privatekey' => $privatekey,
|
||||||
@ -762,19 +763,39 @@ class RSA
|
|||||||
$encryption = (!empty($this->password) || is_string($this->password)) ? 'aes256-cbc' : 'none';
|
$encryption = (!empty($this->password) || is_string($this->password)) ? 'aes256-cbc' : 'none';
|
||||||
$key.= $encryption;
|
$key.= $encryption;
|
||||||
$key.= "\r\nComment: " . $this->comment . "\r\n";
|
$key.= "\r\nComment: " . $this->comment . "\r\n";
|
||||||
$public = pack('Na*Na*Na*',
|
$public = pack(
|
||||||
strlen('ssh-rsa'), 'ssh-rsa', strlen($raw['publicExponent']), $raw['publicExponent'], strlen($raw['modulus']), $raw['modulus']
|
'Na*Na*Na*',
|
||||||
|
strlen('ssh-rsa'),
|
||||||
|
'ssh-rsa',
|
||||||
|
strlen($raw['publicExponent']),
|
||||||
|
$raw['publicExponent'],
|
||||||
|
strlen($raw['modulus']),
|
||||||
|
$raw['modulus']
|
||||||
);
|
);
|
||||||
$source = pack('Na*Na*Na*Na*',
|
$source = pack(
|
||||||
strlen('ssh-rsa'), 'ssh-rsa', strlen($encryption), $encryption,
|
'Na*Na*Na*Na*',
|
||||||
strlen($this->comment), $this->comment, strlen($public), $public
|
strlen('ssh-rsa'),
|
||||||
|
'ssh-rsa',
|
||||||
|
strlen($encryption),
|
||||||
|
$encryption,
|
||||||
|
strlen($this->comment),
|
||||||
|
$this->comment,
|
||||||
|
strlen($public),
|
||||||
|
$public
|
||||||
);
|
);
|
||||||
$public = base64_encode($public);
|
$public = base64_encode($public);
|
||||||
$key.= "Public-Lines: " . ((strlen($public) + 63) >> 6) . "\r\n";
|
$key.= "Public-Lines: " . ((strlen($public) + 63) >> 6) . "\r\n";
|
||||||
$key.= chunk_split($public, 64);
|
$key.= chunk_split($public, 64);
|
||||||
$private = pack('Na*Na*Na*Na*',
|
$private = pack(
|
||||||
strlen($raw['privateExponent']), $raw['privateExponent'], strlen($raw['prime1']), $raw['prime1'],
|
'Na*Na*Na*Na*',
|
||||||
strlen($raw['prime2']), $raw['prime2'], strlen($raw['coefficient']), $raw['coefficient']
|
strlen($raw['privateExponent']),
|
||||||
|
$raw['privateExponent'],
|
||||||
|
strlen($raw['prime1']),
|
||||||
|
$raw['prime1'],
|
||||||
|
strlen($raw['prime2']),
|
||||||
|
$raw['prime2'],
|
||||||
|
strlen($raw['coefficient']),
|
||||||
|
$raw['coefficient']
|
||||||
);
|
);
|
||||||
if (empty($this->password) && !is_string($this->password)) {
|
if (empty($this->password) && !is_string($this->password)) {
|
||||||
$source.= pack('Na*', strlen($private), $private);
|
$source.= pack('Na*', strlen($private), $private);
|
||||||
@ -835,8 +856,14 @@ class RSA
|
|||||||
|
|
||||||
if ($this->privateKeyFormat == self::PRIVATE_FORMAT_PKCS8) {
|
if ($this->privateKeyFormat == self::PRIVATE_FORMAT_PKCS8) {
|
||||||
$rsaOID = pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA
|
$rsaOID = pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA
|
||||||
$RSAPrivateKey = pack('Ca*a*Ca*a*',
|
$RSAPrivateKey = pack(
|
||||||
self::ASN1_INTEGER, "\01\00", $rsaOID, 4, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey
|
'Ca*a*Ca*a*',
|
||||||
|
self::ASN1_INTEGER,
|
||||||
|
"\01\00",
|
||||||
|
$rsaOID,
|
||||||
|
4,
|
||||||
|
$this->_encodeLength(strlen($RSAPrivateKey)),
|
||||||
|
$RSAPrivateKey
|
||||||
);
|
);
|
||||||
$RSAPrivateKey = pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey);
|
$RSAPrivateKey = pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey);
|
||||||
if (!empty($this->password) || is_string($this->password)) {
|
if (!empty($this->password) || is_string($this->password)) {
|
||||||
@ -847,20 +874,35 @@ class RSA
|
|||||||
$crypto->setPassword($this->password, 'pbkdf1', 'md5', $salt, $iterationCount);
|
$crypto->setPassword($this->password, 'pbkdf1', 'md5', $salt, $iterationCount);
|
||||||
$RSAPrivateKey = $crypto->encrypt($RSAPrivateKey);
|
$RSAPrivateKey = $crypto->encrypt($RSAPrivateKey);
|
||||||
|
|
||||||
$parameters = pack('Ca*a*Ca*N',
|
$parameters = pack(
|
||||||
self::ASN1_OCTETSTRING, $this->_encodeLength(strlen($salt)), $salt,
|
'Ca*a*Ca*N',
|
||||||
self::ASN1_INTEGER, $this->_encodeLength(4), $iterationCount
|
self::ASN1_OCTETSTRING,
|
||||||
|
$this->_encodeLength(strlen($salt)),
|
||||||
|
$salt,
|
||||||
|
self::ASN1_INTEGER,
|
||||||
|
$this->_encodeLength(4),
|
||||||
|
$iterationCount
|
||||||
);
|
);
|
||||||
$pbeWithMD5AndDES_CBC = "\x2a\x86\x48\x86\xf7\x0d\x01\x05\x03";
|
$pbeWithMD5AndDES_CBC = "\x2a\x86\x48\x86\xf7\x0d\x01\x05\x03";
|
||||||
|
|
||||||
$encryptionAlgorithm = pack('Ca*a*Ca*a*',
|
$encryptionAlgorithm = pack(
|
||||||
self::ASN1_OBJECT, $this->_encodeLength(strlen($pbeWithMD5AndDES_CBC)), $pbeWithMD5AndDES_CBC,
|
'Ca*a*Ca*a*',
|
||||||
self::ASN1_SEQUENCE, $this->_encodeLength(strlen($parameters)), $parameters
|
self::ASN1_OBJECT,
|
||||||
|
$this->_encodeLength(strlen($pbeWithMD5AndDES_CBC)),
|
||||||
|
$pbeWithMD5AndDES_CBC,
|
||||||
|
self::ASN1_SEQUENCE,
|
||||||
|
$this->_encodeLength(strlen($parameters)),
|
||||||
|
$parameters
|
||||||
);
|
);
|
||||||
|
|
||||||
$RSAPrivateKey = pack('Ca*a*Ca*a*',
|
$RSAPrivateKey = pack(
|
||||||
self::ASN1_SEQUENCE, $this->_encodeLength(strlen($encryptionAlgorithm)), $encryptionAlgorithm,
|
'Ca*a*Ca*a*',
|
||||||
self::ASN1_OCTETSTRING, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey
|
self::ASN1_SEQUENCE,
|
||||||
|
$this->_encodeLength(strlen($encryptionAlgorithm)),
|
||||||
|
$encryptionAlgorithm,
|
||||||
|
self::ASN1_OCTETSTRING,
|
||||||
|
$this->_encodeLength(strlen($RSAPrivateKey)),
|
||||||
|
$RSAPrivateKey
|
||||||
);
|
);
|
||||||
|
|
||||||
$RSAPrivateKey = pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey);
|
$RSAPrivateKey = pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey);
|
||||||
@ -944,9 +986,12 @@ class RSA
|
|||||||
'publicExponent' => pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($publicExponent)), $publicExponent)
|
'publicExponent' => pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($publicExponent)), $publicExponent)
|
||||||
);
|
);
|
||||||
|
|
||||||
$RSAPublicKey = pack('Ca*a*a*',
|
$RSAPublicKey = pack(
|
||||||
self::ASN1_SEQUENCE, $this->_encodeLength(strlen($components['modulus']) + strlen($components['publicExponent'])),
|
'Ca*a*a*',
|
||||||
$components['modulus'], $components['publicExponent']
|
self::ASN1_SEQUENCE,
|
||||||
|
$this->_encodeLength(strlen($components['modulus']) + strlen($components['publicExponent'])),
|
||||||
|
$components['modulus'],
|
||||||
|
$components['publicExponent']
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($this->publicKeyFormat == self::PUBLIC_FORMAT_PKCS1_RAW) {
|
if ($this->publicKeyFormat == self::PUBLIC_FORMAT_PKCS1_RAW) {
|
||||||
@ -959,8 +1004,11 @@ class RSA
|
|||||||
$RSAPublicKey = chr(0) . $RSAPublicKey;
|
$RSAPublicKey = chr(0) . $RSAPublicKey;
|
||||||
$RSAPublicKey = chr(3) . $this->_encodeLength(strlen($RSAPublicKey)) . $RSAPublicKey;
|
$RSAPublicKey = chr(3) . $this->_encodeLength(strlen($RSAPublicKey)) . $RSAPublicKey;
|
||||||
|
|
||||||
$RSAPublicKey = pack('Ca*a*',
|
$RSAPublicKey = pack(
|
||||||
self::ASN1_SEQUENCE, $this->_encodeLength(strlen($rsaOID . $RSAPublicKey)), $rsaOID . $RSAPublicKey
|
'Ca*a*',
|
||||||
|
self::ASN1_SEQUENCE,
|
||||||
|
$this->_encodeLength(strlen($rsaOID . $RSAPublicKey)),
|
||||||
|
$rsaOID . $RSAPublicKey
|
||||||
);
|
);
|
||||||
|
|
||||||
$RSAPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" .
|
$RSAPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" .
|
||||||
@ -1734,8 +1782,7 @@ class RSA
|
|||||||
|
|
||||||
$RSAPublicKey = pack('Na*Na*Na*', strlen('ssh-rsa'), 'ssh-rsa', strlen($publicExponent), $publicExponent, strlen($modulus), $modulus);
|
$RSAPublicKey = pack('Na*Na*Na*', strlen('ssh-rsa'), 'ssh-rsa', strlen($publicExponent), $publicExponent, strlen($modulus), $modulus);
|
||||||
|
|
||||||
switch($algorithm)
|
switch ($algorithm) {
|
||||||
{
|
|
||||||
case 'sha256':
|
case 'sha256':
|
||||||
$hash = new Hash('sha256');
|
$hash = new Hash('sha256');
|
||||||
$base = base64_encode($hash->hash($RSAPublicKey));
|
$base = base64_encode($hash->hash($RSAPublicKey));
|
||||||
|
@ -533,7 +533,9 @@ class Twofish extends Base
|
|||||||
$u^= 0x7fffffff & ($t >> 1);
|
$u^= 0x7fffffff & ($t >> 1);
|
||||||
|
|
||||||
// Add the modular polynomial on underflow.
|
// Add the modular polynomial on underflow.
|
||||||
if ($t & 0x01) $u^= 0xa6 ;
|
if ($t & 0x01) {
|
||||||
|
$u^= 0xa6 ;
|
||||||
|
}
|
||||||
|
|
||||||
// Remove t * (a + 1/a) * (x^3 + x).
|
// Remove t * (a + 1/a) * (x^3 + x).
|
||||||
$B^= ($u << 24) | ($u << 8);
|
$B^= ($u << 24) | ($u << 8);
|
||||||
|
@ -337,6 +337,7 @@ class ANSI
|
|||||||
//$back = $attr_cell->reverse ? &$attr_cell->foreground : &$attr_cell->background;
|
//$back = $attr_cell->reverse ? &$attr_cell->foreground : &$attr_cell->background;
|
||||||
$back = &$attr_cell->{ $attr_cell->reverse ? 'foreground' : 'background' };
|
$back = &$attr_cell->{ $attr_cell->reverse ? 'foreground' : 'background' };
|
||||||
switch ($mod) {
|
switch ($mod) {
|
||||||
|
// @codingStandardsIgnoreStart
|
||||||
case 30: $front = 'black'; break;
|
case 30: $front = 'black'; break;
|
||||||
case 31: $front = 'red'; break;
|
case 31: $front = 'red'; break;
|
||||||
case 32: $front = 'green'; break;
|
case 32: $front = 'green'; break;
|
||||||
@ -354,6 +355,7 @@ class ANSI
|
|||||||
case 45: $back = 'magenta'; break;
|
case 45: $back = 'magenta'; break;
|
||||||
case 46: $back = 'cyan'; break;
|
case 46: $back = 'cyan'; break;
|
||||||
case 47: $back = 'white'; break;
|
case 47: $back = 'white'; break;
|
||||||
|
// @codingStandardsIgnoreEnd
|
||||||
|
|
||||||
default:
|
default:
|
||||||
//user_error('Unsupported attribute: ' . $mod);
|
//user_error('Unsupported attribute: ' . $mod);
|
||||||
|
@ -3289,8 +3289,7 @@ class X509
|
|||||||
// )
|
// )
|
||||||
//),
|
//),
|
||||||
'keyIdentifier' => $issuer->currentKeyIdentifier
|
'keyIdentifier' => $issuer->currentKeyIdentifier
|
||||||
)
|
));
|
||||||
);
|
|
||||||
//$extensions = &$this->currentCert['tbsCertificate']['extensions'];
|
//$extensions = &$this->currentCert['tbsCertificate']['extensions'];
|
||||||
//if (isset($issuer->serialNumber)) {
|
//if (isset($issuer->serialNumber)) {
|
||||||
// $extensions[count($extensions) - 1]['authorityCertSerialNumber'] = $issuer->serialNumber;
|
// $extensions[count($extensions) - 1]['authorityCertSerialNumber'] = $issuer->serialNumber;
|
||||||
@ -3333,7 +3332,8 @@ class X509
|
|||||||
$keyUsage = array();
|
$keyUsage = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->setExtension('id-ce-keyUsage',
|
$this->setExtension(
|
||||||
|
'id-ce-keyUsage',
|
||||||
array_values(array_unique(array_merge($keyUsage, array('cRLSign', 'keyCertSign'))))
|
array_values(array_unique(array_merge($keyUsage, array('cRLSign', 'keyCertSign'))))
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -3342,8 +3342,11 @@ class X509
|
|||||||
$basicConstraints = array();
|
$basicConstraints = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->setExtension('id-ce-basicConstraints',
|
$this->setExtension(
|
||||||
array_unique(array_merge(array('cA' => true), $basicConstraints)), true);
|
'id-ce-basicConstraints',
|
||||||
|
array_unique(array_merge(array('cA' => true), $basicConstraints)),
|
||||||
|
true
|
||||||
|
);
|
||||||
|
|
||||||
if (!isset($subject->currentKeyIdentifier)) {
|
if (!isset($subject->currentKeyIdentifier)) {
|
||||||
$this->setExtension('id-ce-subjectKeyIdentifier', base64_encode($this->computeKeyIdentifier($this->currentCert)), false, false);
|
$this->setExtension('id-ce-subjectKeyIdentifier', base64_encode($this->computeKeyIdentifier($this->currentCert)), false, false);
|
||||||
@ -3583,8 +3586,7 @@ class X509
|
|||||||
// )
|
// )
|
||||||
//),
|
//),
|
||||||
'keyIdentifier' => $issuer->currentKeyIdentifier
|
'keyIdentifier' => $issuer->currentKeyIdentifier
|
||||||
)
|
));
|
||||||
);
|
|
||||||
//$extensions = &$tbsCertList['crlExtensions'];
|
//$extensions = &$tbsCertList['crlExtensions'];
|
||||||
//if (isset($issuer->serialNumber)) {
|
//if (isset($issuer->serialNumber)) {
|
||||||
// $extensions[count($extensions) - 1]['authorityCertSerialNumber'] = $issuer->serialNumber;
|
// $extensions[count($extensions) - 1]['authorityCertSerialNumber'] = $issuer->serialNumber;
|
||||||
@ -4363,7 +4365,6 @@ class X509
|
|||||||
if (is_array($rclist = &$this->_subArray($this->currentCert, 'tbsCertList/revokedCertificates', true))) {
|
if (is_array($rclist = &$this->_subArray($this->currentCert, 'tbsCertList/revokedCertificates', true))) {
|
||||||
if ($this->_revokedCertificate($rclist, $serial) === false) { // If not yet revoked
|
if ($this->_revokedCertificate($rclist, $serial) === false) { // If not yet revoked
|
||||||
if (($i = $this->_revokedCertificate($rclist, $serial, true)) !== false) {
|
if (($i = $this->_revokedCertificate($rclist, $serial, true)) !== false) {
|
||||||
|
|
||||||
if (!empty($date)) {
|
if (!empty($date)) {
|
||||||
$rclist[$i]['revocationDate'] = $this->_timeField($date);
|
$rclist[$i]['revocationDate'] = $this->_timeField($date);
|
||||||
}
|
}
|
||||||
|
@ -1656,17 +1656,23 @@ class BigInteger
|
|||||||
'publicExponent' => pack('Ca*a*', 2, $this->_encodeASN1Length(strlen($components['publicExponent'])), $components['publicExponent'])
|
'publicExponent' => pack('Ca*a*', 2, $this->_encodeASN1Length(strlen($components['publicExponent'])), $components['publicExponent'])
|
||||||
);
|
);
|
||||||
|
|
||||||
$RSAPublicKey = pack('Ca*a*a*',
|
$RSAPublicKey = pack(
|
||||||
48, $this->_encodeASN1Length(strlen($components['modulus']) + strlen($components['publicExponent'])),
|
'Ca*a*a*',
|
||||||
$components['modulus'], $components['publicExponent']
|
48,
|
||||||
|
$this->_encodeASN1Length(strlen($components['modulus']) + strlen($components['publicExponent'])),
|
||||||
|
$components['modulus'],
|
||||||
|
$components['publicExponent']
|
||||||
);
|
);
|
||||||
|
|
||||||
$rsaOID = pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA
|
$rsaOID = pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA
|
||||||
$RSAPublicKey = chr(0) . $RSAPublicKey;
|
$RSAPublicKey = chr(0) . $RSAPublicKey;
|
||||||
$RSAPublicKey = chr(3) . $this->_encodeASN1Length(strlen($RSAPublicKey)) . $RSAPublicKey;
|
$RSAPublicKey = chr(3) . $this->_encodeASN1Length(strlen($RSAPublicKey)) . $RSAPublicKey;
|
||||||
|
|
||||||
$encapsulated = pack('Ca*a*',
|
$encapsulated = pack(
|
||||||
48, $this->_encodeASN1Length(strlen($rsaOID . $RSAPublicKey)), $rsaOID . $RSAPublicKey
|
'Ca*a*',
|
||||||
|
48,
|
||||||
|
$this->_encodeASN1Length(strlen($rsaOID . $RSAPublicKey)),
|
||||||
|
$rsaOID . $RSAPublicKey
|
||||||
);
|
);
|
||||||
|
|
||||||
$RSAPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" .
|
$RSAPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" .
|
||||||
@ -1798,7 +1804,8 @@ class BigInteger
|
|||||||
|
|
||||||
// calculate the appropriate window size.
|
// calculate the appropriate window size.
|
||||||
// $window_size == 3 if $window_ranges is between 25 and 81, for example.
|
// $window_size == 3 if $window_ranges is between 25 and 81, for example.
|
||||||
for ($i = 0, $window_size = 1; $e_length > $window_ranges[$i] && $i < count($window_ranges); ++$window_size, ++$i);
|
for ($i = 0, $window_size = 1; $e_length > $window_ranges[$i] && $i < count($window_ranges); ++$window_size, ++$i) {
|
||||||
|
}
|
||||||
|
|
||||||
$n_value = $n->value;
|
$n_value = $n->value;
|
||||||
|
|
||||||
@ -2993,7 +3000,8 @@ class BigInteger
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$temp = ord($bits[0]);
|
$temp = ord($bits[0]);
|
||||||
for ($i = 0; $temp >> $i; ++$i);
|
for ($i = 0; $temp >> $i; ++$i) {
|
||||||
|
}
|
||||||
$precision = 8 * strlen($bits) - 8 + $i;
|
$precision = 8 * strlen($bits) - 8 + $i;
|
||||||
$mask = chr((1 << ($precision & 0x7)) - 1) . str_repeat(chr(0xFF), $precision >> 3);
|
$mask = chr((1 << ($precision & 0x7)) - 1) . str_repeat(chr(0xFF), $precision >> 3);
|
||||||
}
|
}
|
||||||
@ -3396,7 +3404,8 @@ class BigInteger
|
|||||||
} else {
|
} else {
|
||||||
for ($i = 0, $r_length = count($r_value); $i < $r_length; ++$i) {
|
for ($i = 0, $r_length = count($r_value); $i < $r_length; ++$i) {
|
||||||
$temp = ~$r_value[$i] & 0xFFFFFF;
|
$temp = ~$r_value[$i] & 0xFFFFFF;
|
||||||
for ($j = 1; ($temp >> $j) & 1; ++$j);
|
for ($j = 1; ($temp >> $j) & 1; ++$j) {
|
||||||
|
}
|
||||||
if ($j != 25) {
|
if ($j != 25) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -395,8 +395,15 @@ class SFTP extends SSH2
|
|||||||
|
|
||||||
$this->window_size_server_to_client[self::CHANNEL] = $this->window_size;
|
$this->window_size_server_to_client[self::CHANNEL] = $this->window_size;
|
||||||
|
|
||||||
$packet = pack('CNa*N3',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_OPEN, strlen('session'), 'session', self::CHANNEL, $this->window_size, 0x4000);
|
'CNa*N3',
|
||||||
|
NET_SSH2_MSG_CHANNEL_OPEN,
|
||||||
|
strlen('session'),
|
||||||
|
'session',
|
||||||
|
self::CHANNEL,
|
||||||
|
$this->window_size,
|
||||||
|
0x4000
|
||||||
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
@ -409,8 +416,16 @@ class SFTP extends SSH2
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$packet = pack('CNNa*CNa*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $this->server_channels[self::CHANNEL], strlen('subsystem'), 'subsystem', 1, strlen('sftp'), 'sftp');
|
'CNNa*CNa*',
|
||||||
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$this->server_channels[self::CHANNEL],
|
||||||
|
strlen('subsystem'),
|
||||||
|
'subsystem',
|
||||||
|
1,
|
||||||
|
strlen('sftp'),
|
||||||
|
'sftp'
|
||||||
|
);
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -425,8 +440,16 @@ class SFTP extends SSH2
|
|||||||
"exec sftp-server";
|
"exec sftp-server";
|
||||||
// we don't do $this->exec($command, false) because exec() operates on a different channel and plus the SSH_MSG_CHANNEL_OPEN that exec() does
|
// we don't do $this->exec($command, false) because exec() operates on a different channel and plus the SSH_MSG_CHANNEL_OPEN that exec() does
|
||||||
// is redundant
|
// is redundant
|
||||||
$packet = pack('CNNa*CNa*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $this->server_channels[self::CHANNEL], strlen('exec'), 'exec', 1, strlen($command), $command);
|
'CNNa*CNa*',
|
||||||
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$this->server_channels[self::CHANNEL],
|
||||||
|
strlen('exec'),
|
||||||
|
'exec',
|
||||||
|
1,
|
||||||
|
strlen($command),
|
||||||
|
$command
|
||||||
|
);
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -2375,13 +2398,20 @@ class SFTP extends SSH2
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
case NET_SFTP_TYPE_BLOCK_DEVICE: return 'block';
|
case NET_SFTP_TYPE_BLOCK_DEVICE:
|
||||||
case NET_SFTP_TYPE_CHAR_DEVICE: return 'char';
|
return 'block';
|
||||||
case NET_SFTP_TYPE_DIRECTORY: return 'dir';
|
case NET_SFTP_TYPE_CHAR_DEVICE:
|
||||||
case NET_SFTP_TYPE_FIFO: return 'fifo';
|
return 'char';
|
||||||
case NET_SFTP_TYPE_REGULAR: return 'file';
|
case NET_SFTP_TYPE_DIRECTORY:
|
||||||
case NET_SFTP_TYPE_SYMLINK: return 'link';
|
return 'dir';
|
||||||
default: return false;
|
case NET_SFTP_TYPE_FIFO:
|
||||||
|
return 'fifo';
|
||||||
|
case NET_SFTP_TYPE_REGULAR:
|
||||||
|
return 'file';
|
||||||
|
case NET_SFTP_TYPE_SYMLINK:
|
||||||
|
return 'link';
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1299,14 +1299,32 @@ class SSH2
|
|||||||
$first_kex_packet_follows = $first_kex_packet_follows != 0;
|
$first_kex_packet_follows = $first_kex_packet_follows != 0;
|
||||||
|
|
||||||
// the sending of SSH2_MSG_KEXINIT could go in one of two places. this is the second place.
|
// the sending of SSH2_MSG_KEXINIT could go in one of two places. this is the second place.
|
||||||
$kexinit_payload_client = pack('Ca*Na*Na*Na*Na*Na*Na*Na*Na*Na*Na*CN',
|
$kexinit_payload_client = pack(
|
||||||
NET_SSH2_MSG_KEXINIT, $client_cookie, strlen($str_kex_algorithms), $str_kex_algorithms,
|
'Ca*Na*Na*Na*Na*Na*Na*Na*Na*Na*Na*CN',
|
||||||
strlen($str_server_host_key_algorithms), $str_server_host_key_algorithms, strlen($encryption_algorithms_client_to_server),
|
NET_SSH2_MSG_KEXINIT,
|
||||||
$encryption_algorithms_client_to_server, strlen($encryption_algorithms_server_to_client), $encryption_algorithms_server_to_client,
|
$client_cookie,
|
||||||
strlen($mac_algorithms_client_to_server), $mac_algorithms_client_to_server, strlen($mac_algorithms_server_to_client),
|
strlen($str_kex_algorithms),
|
||||||
$mac_algorithms_server_to_client, strlen($compression_algorithms_client_to_server), $compression_algorithms_client_to_server,
|
$str_kex_algorithms,
|
||||||
strlen($compression_algorithms_server_to_client), $compression_algorithms_server_to_client, 0, '', 0, '',
|
strlen($str_server_host_key_algorithms),
|
||||||
0, 0
|
$str_server_host_key_algorithms,
|
||||||
|
strlen($encryption_algorithms_client_to_server),
|
||||||
|
$encryption_algorithms_client_to_server,
|
||||||
|
strlen($encryption_algorithms_server_to_client),
|
||||||
|
$encryption_algorithms_server_to_client,
|
||||||
|
strlen($mac_algorithms_client_to_server),
|
||||||
|
$mac_algorithms_client_to_server,
|
||||||
|
strlen($mac_algorithms_server_to_client),
|
||||||
|
$mac_algorithms_server_to_client,
|
||||||
|
strlen($compression_algorithms_client_to_server),
|
||||||
|
$compression_algorithms_client_to_server,
|
||||||
|
strlen($compression_algorithms_server_to_client),
|
||||||
|
$compression_algorithms_server_to_client,
|
||||||
|
0,
|
||||||
|
'',
|
||||||
|
0,
|
||||||
|
'',
|
||||||
|
0,
|
||||||
|
0
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($kexinit_payload_client)) {
|
if (!$this->_send_binary_packet($kexinit_payload_client)) {
|
||||||
@ -1315,7 +1333,8 @@ class SSH2
|
|||||||
// here ends the second place.
|
// here ends the second place.
|
||||||
|
|
||||||
// we need to decide upon the symmetric encryption algorithms before we do the diffie-hellman key exchange
|
// we need to decide upon the symmetric encryption algorithms before we do the diffie-hellman key exchange
|
||||||
for ($i = 0; $i < count($encryption_algorithms) && !in_array($encryption_algorithms[$i], $this->encryption_algorithms_server_to_client); $i++);
|
for ($i = 0; $i < count($encryption_algorithms) && !in_array($encryption_algorithms[$i], $this->encryption_algorithms_server_to_client); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($encryption_algorithms)) {
|
if ($i == count($encryption_algorithms)) {
|
||||||
user_error('No compatible server to client encryption algorithms found');
|
user_error('No compatible server to client encryption algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
@ -1361,7 +1380,8 @@ class SSH2
|
|||||||
$decryptKeyLength = 0;
|
$decryptKeyLength = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i = 0; $i < count($encryption_algorithms) && !in_array($encryption_algorithms[$i], $this->encryption_algorithms_client_to_server); $i++);
|
for ($i = 0; $i < count($encryption_algorithms) && !in_array($encryption_algorithms[$i], $this->encryption_algorithms_client_to_server); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($encryption_algorithms)) {
|
if ($i == count($encryption_algorithms)) {
|
||||||
user_error('No compatible client to server encryption algorithms found');
|
user_error('No compatible client to server encryption algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
@ -1408,19 +1428,22 @@ class SSH2
|
|||||||
$keyLength = $decryptKeyLength > $encryptKeyLength ? $decryptKeyLength : $encryptKeyLength;
|
$keyLength = $decryptKeyLength > $encryptKeyLength ? $decryptKeyLength : $encryptKeyLength;
|
||||||
|
|
||||||
// through diffie-hellman key exchange a symmetric key is obtained
|
// through diffie-hellman key exchange a symmetric key is obtained
|
||||||
for ($i = 0; $i < count($kex_algorithms) && !in_array($kex_algorithms[$i], $this->kex_algorithms); $i++);
|
for ($i = 0; $i < count($kex_algorithms) && !in_array($kex_algorithms[$i], $this->kex_algorithms); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($kex_algorithms)) {
|
if ($i == count($kex_algorithms)) {
|
||||||
user_error('No compatible key exchange algorithms found');
|
user_error('No compatible key exchange algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strpos($kex_algorithms[$i], 'diffie-hellman-group-exchange') === 0) {
|
if (strpos($kex_algorithms[$i], 'diffie-hellman-group-exchange') === 0) {
|
||||||
$dh_group_sizes_packed = pack('NNN',
|
$dh_group_sizes_packed = pack(
|
||||||
|
'NNN',
|
||||||
$this->kex_dh_group_size_min,
|
$this->kex_dh_group_size_min,
|
||||||
$this->kex_dh_group_size_preferred,
|
$this->kex_dh_group_size_preferred,
|
||||||
$this->kex_dh_group_size_max
|
$this->kex_dh_group_size_max
|
||||||
);
|
);
|
||||||
$packet = pack('Ca*',
|
$packet = pack(
|
||||||
|
'Ca*',
|
||||||
NET_SSH2_MSG_KEXDH_GEX_REQUEST,
|
NET_SSH2_MSG_KEXDH_GEX_REQUEST,
|
||||||
$dh_group_sizes_packed
|
$dh_group_sizes_packed
|
||||||
);
|
);
|
||||||
@ -1447,10 +1470,13 @@ class SSH2
|
|||||||
$gBytes = $this->_string_shift($response, $gLength);
|
$gBytes = $this->_string_shift($response, $gLength);
|
||||||
$g = new BigInteger($gBytes, -256);
|
$g = new BigInteger($gBytes, -256);
|
||||||
|
|
||||||
$exchange_hash_rfc4419 = pack('a*Na*Na*',
|
$exchange_hash_rfc4419 = pack(
|
||||||
|
'a*Na*Na*',
|
||||||
$dh_group_sizes_packed,
|
$dh_group_sizes_packed,
|
||||||
$primeLength, $primeBytes,
|
$primeLength,
|
||||||
$gLength, $gBytes
|
$primeBytes,
|
||||||
|
$gLength,
|
||||||
|
$gBytes
|
||||||
);
|
);
|
||||||
|
|
||||||
$clientKexInitMessage = NET_SSH2_MSG_KEXDH_GEX_INIT;
|
$clientKexInitMessage = NET_SSH2_MSG_KEXDH_GEX_INIT;
|
||||||
@ -1548,16 +1574,25 @@ class SSH2
|
|||||||
$key = $f->modPow($x, $prime);
|
$key = $f->modPow($x, $prime);
|
||||||
$keyBytes = $key->toBytes(true);
|
$keyBytes = $key->toBytes(true);
|
||||||
|
|
||||||
$this->exchange_hash = pack('Na*Na*Na*Na*Na*a*Na*Na*Na*',
|
$this->exchange_hash = pack(
|
||||||
strlen($this->identifier), $this->identifier,
|
'Na*Na*Na*Na*Na*a*Na*Na*Na*',
|
||||||
strlen($this->server_identifier), $this->server_identifier,
|
strlen($this->identifier),
|
||||||
strlen($kexinit_payload_client), $kexinit_payload_client,
|
$this->identifier,
|
||||||
strlen($kexinit_payload_server), $kexinit_payload_server,
|
strlen($this->server_identifier),
|
||||||
strlen($this->server_public_host_key), $this->server_public_host_key,
|
$this->server_identifier,
|
||||||
|
strlen($kexinit_payload_client),
|
||||||
|
$kexinit_payload_client,
|
||||||
|
strlen($kexinit_payload_server),
|
||||||
|
$kexinit_payload_server,
|
||||||
|
strlen($this->server_public_host_key),
|
||||||
|
$this->server_public_host_key,
|
||||||
$exchange_hash_rfc4419,
|
$exchange_hash_rfc4419,
|
||||||
strlen($eBytes), $eBytes,
|
strlen($eBytes),
|
||||||
strlen($fBytes), $fBytes,
|
$eBytes,
|
||||||
strlen($keyBytes), $keyBytes
|
strlen($fBytes),
|
||||||
|
$fBytes,
|
||||||
|
strlen($keyBytes),
|
||||||
|
$keyBytes
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->exchange_hash = $kexHash->hash($this->exchange_hash);
|
$this->exchange_hash = $kexHash->hash($this->exchange_hash);
|
||||||
@ -1566,7 +1601,8 @@ class SSH2
|
|||||||
$this->session_id = $this->exchange_hash;
|
$this->session_id = $this->exchange_hash;
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i = 0; $i < count($server_host_key_algorithms) && !in_array($server_host_key_algorithms[$i], $this->server_host_key_algorithms); $i++);
|
for ($i = 0; $i < count($server_host_key_algorithms) && !in_array($server_host_key_algorithms[$i], $this->server_host_key_algorithms); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($server_host_key_algorithms)) {
|
if ($i == count($server_host_key_algorithms)) {
|
||||||
user_error('No compatible server host key algorithms found');
|
user_error('No compatible server host key algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
@ -1577,7 +1613,8 @@ class SSH2
|
|||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
}
|
}
|
||||||
|
|
||||||
$packet = pack('C',
|
$packet = pack(
|
||||||
|
'C',
|
||||||
NET_SSH2_MSG_NEWKEYS
|
NET_SSH2_MSG_NEWKEYS
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -1755,7 +1792,8 @@ class SSH2
|
|||||||
$this->decrypt->decrypt(str_repeat("\0", 1536));
|
$this->decrypt->decrypt(str_repeat("\0", 1536));
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i = 0; $i < count($mac_algorithms) && !in_array($mac_algorithms[$i], $this->mac_algorithms_client_to_server); $i++);
|
for ($i = 0; $i < count($mac_algorithms) && !in_array($mac_algorithms[$i], $this->mac_algorithms_client_to_server); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($mac_algorithms)) {
|
if ($i == count($mac_algorithms)) {
|
||||||
user_error('No compatible client to server message authentication algorithms found');
|
user_error('No compatible client to server message authentication algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
@ -1784,7 +1822,8 @@ class SSH2
|
|||||||
$createKeyLength = 16;
|
$createKeyLength = 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i = 0; $i < count($mac_algorithms) && !in_array($mac_algorithms[$i], $this->mac_algorithms_server_to_client); $i++);
|
for ($i = 0; $i < count($mac_algorithms) && !in_array($mac_algorithms[$i], $this->mac_algorithms_server_to_client); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($mac_algorithms)) {
|
if ($i == count($mac_algorithms)) {
|
||||||
user_error('No compatible server to client message authentication algorithms found');
|
user_error('No compatible server to client message authentication algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
@ -1831,14 +1870,16 @@ class SSH2
|
|||||||
}
|
}
|
||||||
$this->hmac_check->setKey(substr($key, 0, $checkKeyLength));
|
$this->hmac_check->setKey(substr($key, 0, $checkKeyLength));
|
||||||
|
|
||||||
for ($i = 0; $i < count($compression_algorithms) && !in_array($compression_algorithms[$i], $this->compression_algorithms_server_to_client); $i++);
|
for ($i = 0; $i < count($compression_algorithms) && !in_array($compression_algorithms[$i], $this->compression_algorithms_server_to_client); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($compression_algorithms)) {
|
if ($i == count($compression_algorithms)) {
|
||||||
user_error('No compatible server to client compression algorithms found');
|
user_error('No compatible server to client compression algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
}
|
}
|
||||||
$this->decompress = $compression_algorithms[$i] == 'zlib';
|
$this->decompress = $compression_algorithms[$i] == 'zlib';
|
||||||
|
|
||||||
for ($i = 0; $i < count($compression_algorithms) && !in_array($compression_algorithms[$i], $this->compression_algorithms_client_to_server); $i++);
|
for ($i = 0; $i < count($compression_algorithms) && !in_array($compression_algorithms[$i], $this->compression_algorithms_client_to_server); $i++) {
|
||||||
|
}
|
||||||
if ($i == count($compression_algorithms)) {
|
if ($i == count($compression_algorithms)) {
|
||||||
user_error('No compatible client to server compression algorithms found');
|
user_error('No compatible client to server compression algorithms found');
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED);
|
||||||
@ -1914,8 +1955,11 @@ class SSH2
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!($this->bitmap & self::MASK_LOGIN_REQ)) {
|
if (!($this->bitmap & self::MASK_LOGIN_REQ)) {
|
||||||
$packet = pack('CNa*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_SERVICE_REQUEST, strlen('ssh-userauth'), 'ssh-userauth'
|
'CNa*',
|
||||||
|
NET_SSH2_MSG_SERVICE_REQUEST,
|
||||||
|
strlen('ssh-userauth'),
|
||||||
|
'ssh-userauth'
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
@ -1956,9 +2000,15 @@ class SSH2
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($password)) {
|
if (!isset($password)) {
|
||||||
$packet = pack('CNa*Na*Na*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_USERAUTH_REQUEST, strlen($username), $username, strlen('ssh-connection'), 'ssh-connection',
|
'CNa*Na*Na*',
|
||||||
strlen('none'), 'none'
|
NET_SSH2_MSG_USERAUTH_REQUEST,
|
||||||
|
strlen($username),
|
||||||
|
$username,
|
||||||
|
strlen('ssh-connection'),
|
||||||
|
'ssh-connection',
|
||||||
|
strlen('none'),
|
||||||
|
'none'
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
@ -1983,18 +2033,36 @@ class SSH2
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$packet = pack('CNa*Na*Na*CNa*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_USERAUTH_REQUEST, strlen($username), $username, strlen('ssh-connection'), 'ssh-connection',
|
'CNa*Na*Na*CNa*',
|
||||||
strlen('password'), 'password', 0, strlen($password), $password
|
NET_SSH2_MSG_USERAUTH_REQUEST,
|
||||||
|
strlen($username),
|
||||||
|
$username,
|
||||||
|
strlen('ssh-connection'),
|
||||||
|
'ssh-connection',
|
||||||
|
strlen('password'),
|
||||||
|
'password',
|
||||||
|
0,
|
||||||
|
strlen($password),
|
||||||
|
$password
|
||||||
);
|
);
|
||||||
|
|
||||||
// remove the username and password from the logged packet
|
// remove the username and password from the logged packet
|
||||||
if (!defined('NET_SSH2_LOGGING')) {
|
if (!defined('NET_SSH2_LOGGING')) {
|
||||||
$logged = null;
|
$logged = null;
|
||||||
} else {
|
} else {
|
||||||
$logged = pack('CNa*Na*Na*CNa*',
|
$logged = pack(
|
||||||
NET_SSH2_MSG_USERAUTH_REQUEST, strlen('username'), 'username', strlen('ssh-connection'), 'ssh-connection',
|
'CNa*Na*Na*CNa*',
|
||||||
strlen('password'), 'password', 0, strlen('password'), 'password'
|
NET_SSH2_MSG_USERAUTH_REQUEST,
|
||||||
|
strlen('username'),
|
||||||
|
'username',
|
||||||
|
strlen('ssh-connection'),
|
||||||
|
'ssh-connection',
|
||||||
|
strlen('password'),
|
||||||
|
'password',
|
||||||
|
0,
|
||||||
|
strlen('password'),
|
||||||
|
'password'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2054,9 +2122,19 @@ class SSH2
|
|||||||
*/
|
*/
|
||||||
function _keyboard_interactive_login($username, $password)
|
function _keyboard_interactive_login($username, $password)
|
||||||
{
|
{
|
||||||
$packet = pack('CNa*Na*Na*Na*Na*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_USERAUTH_REQUEST, strlen($username), $username, strlen('ssh-connection'), 'ssh-connection',
|
'CNa*Na*Na*Na*Na*',
|
||||||
strlen('keyboard-interactive'), 'keyboard-interactive', 0, '', 0, ''
|
NET_SSH2_MSG_USERAUTH_REQUEST,
|
||||||
|
strlen($username),
|
||||||
|
$username,
|
||||||
|
strlen('ssh-connection'),
|
||||||
|
'ssh-connection',
|
||||||
|
strlen('keyboard-interactive'),
|
||||||
|
'keyboard-interactive',
|
||||||
|
0,
|
||||||
|
'',
|
||||||
|
0,
|
||||||
|
''
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
@ -2223,13 +2301,25 @@ class SSH2
|
|||||||
'e' => $publickey['e']->toBytes(true),
|
'e' => $publickey['e']->toBytes(true),
|
||||||
'n' => $publickey['n']->toBytes(true)
|
'n' => $publickey['n']->toBytes(true)
|
||||||
);
|
);
|
||||||
$publickey = pack('Na*Na*Na*',
|
$publickey = pack(
|
||||||
strlen('ssh-rsa'), 'ssh-rsa', strlen($publickey['e']), $publickey['e'], strlen($publickey['n']), $publickey['n']
|
'Na*Na*Na*',
|
||||||
|
strlen('ssh-rsa'),
|
||||||
|
'ssh-rsa',
|
||||||
|
strlen($publickey['e']),
|
||||||
|
$publickey['e'],
|
||||||
|
strlen($publickey['n']),
|
||||||
|
$publickey['n']
|
||||||
);
|
);
|
||||||
|
|
||||||
$part1 = pack('CNa*Na*Na*',
|
$part1 = pack(
|
||||||
NET_SSH2_MSG_USERAUTH_REQUEST, strlen($username), $username, strlen('ssh-connection'), 'ssh-connection',
|
'CNa*Na*Na*',
|
||||||
strlen('publickey'), 'publickey'
|
NET_SSH2_MSG_USERAUTH_REQUEST,
|
||||||
|
strlen($username),
|
||||||
|
$username,
|
||||||
|
strlen('ssh-connection'),
|
||||||
|
'ssh-connection',
|
||||||
|
strlen('publickey'),
|
||||||
|
'publickey'
|
||||||
);
|
);
|
||||||
$part2 = pack('Na*Na*', strlen('ssh-rsa'), 'ssh-rsa', strlen($publickey), $publickey);
|
$part2 = pack('Na*Na*', strlen('ssh-rsa'), 'ssh-rsa', strlen($publickey), $publickey);
|
||||||
|
|
||||||
@ -2347,8 +2437,15 @@ class SSH2
|
|||||||
// uses 0x4000, that's what will be used here, as well.
|
// uses 0x4000, that's what will be used here, as well.
|
||||||
$packet_size = 0x4000;
|
$packet_size = 0x4000;
|
||||||
|
|
||||||
$packet = pack('CNa*N3',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_OPEN, strlen('session'), 'session', self::CHANNEL_EXEC, $this->window_size_server_to_client[self::CHANNEL_EXEC], $packet_size);
|
'CNa*N3',
|
||||||
|
NET_SSH2_MSG_CHANNEL_OPEN,
|
||||||
|
strlen('session'),
|
||||||
|
'session',
|
||||||
|
self::CHANNEL_EXEC,
|
||||||
|
$this->window_size_server_to_client[self::CHANNEL_EXEC],
|
||||||
|
$packet_size
|
||||||
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
@ -2363,9 +2460,22 @@ class SSH2
|
|||||||
|
|
||||||
if ($this->request_pty === true) {
|
if ($this->request_pty === true) {
|
||||||
$terminal_modes = pack('C', NET_SSH2_TTY_OP_END);
|
$terminal_modes = pack('C', NET_SSH2_TTY_OP_END);
|
||||||
$packet = pack('CNNa*CNa*N5a*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $this->server_channels[self::CHANNEL_EXEC], strlen('pty-req'), 'pty-req', 1, strlen('vt100'), 'vt100',
|
'CNNa*CNa*N5a*',
|
||||||
$this->windowColumns, $this->windowRows, 0, 0, strlen($terminal_modes), $terminal_modes);
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$this->server_channels[self::CHANNEL_EXEC],
|
||||||
|
strlen('pty-req'),
|
||||||
|
'pty-req',
|
||||||
|
1,
|
||||||
|
strlen('vt100'),
|
||||||
|
'vt100',
|
||||||
|
$this->windowColumns,
|
||||||
|
$this->windowRows,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
strlen($terminal_modes),
|
||||||
|
$terminal_modes
|
||||||
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
@ -2399,8 +2509,16 @@ class SSH2
|
|||||||
// although, in theory, the size of SSH_MSG_CHANNEL_REQUEST could exceed the maximum packet size established by
|
// although, in theory, the size of SSH_MSG_CHANNEL_REQUEST could exceed the maximum packet size established by
|
||||||
// SSH_MSG_CHANNEL_OPEN_CONFIRMATION, RFC4254#section-5.1 states that the "maximum packet size" refers to the
|
// SSH_MSG_CHANNEL_OPEN_CONFIRMATION, RFC4254#section-5.1 states that the "maximum packet size" refers to the
|
||||||
// "maximum size of an individual data packet". ie. SSH_MSG_CHANNEL_DATA. RFC4254#section-5.2 corroborates.
|
// "maximum size of an individual data packet". ie. SSH_MSG_CHANNEL_DATA. RFC4254#section-5.2 corroborates.
|
||||||
$packet = pack('CNNa*CNa*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $this->server_channels[self::CHANNEL_EXEC], strlen('exec'), 'exec', 1, strlen($command), $command);
|
'CNNa*CNa*',
|
||||||
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$this->server_channels[self::CHANNEL_EXEC],
|
||||||
|
strlen('exec'),
|
||||||
|
'exec',
|
||||||
|
1,
|
||||||
|
strlen($command),
|
||||||
|
$command
|
||||||
|
);
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -2456,8 +2574,15 @@ class SSH2
|
|||||||
$this->window_size_server_to_client[self::CHANNEL_SHELL] = $this->window_size;
|
$this->window_size_server_to_client[self::CHANNEL_SHELL] = $this->window_size;
|
||||||
$packet_size = 0x4000;
|
$packet_size = 0x4000;
|
||||||
|
|
||||||
$packet = pack('CNa*N3',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_OPEN, strlen('session'), 'session', self::CHANNEL_SHELL, $this->window_size_server_to_client[self::CHANNEL_SHELL], $packet_size);
|
'CNa*N3',
|
||||||
|
NET_SSH2_MSG_CHANNEL_OPEN,
|
||||||
|
strlen('session'),
|
||||||
|
'session',
|
||||||
|
self::CHANNEL_SHELL,
|
||||||
|
$this->window_size_server_to_client[self::CHANNEL_SHELL],
|
||||||
|
$packet_size
|
||||||
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
@ -2471,9 +2596,22 @@ class SSH2
|
|||||||
}
|
}
|
||||||
|
|
||||||
$terminal_modes = pack('C', NET_SSH2_TTY_OP_END);
|
$terminal_modes = pack('C', NET_SSH2_TTY_OP_END);
|
||||||
$packet = pack('CNNa*CNa*N5a*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $this->server_channels[self::CHANNEL_SHELL], strlen('pty-req'), 'pty-req', 1, strlen('vt100'), 'vt100',
|
'CNNa*CNa*N5a*',
|
||||||
$this->windowColumns, $this->windowRows, 0, 0, strlen($terminal_modes), $terminal_modes);
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$this->server_channels[self::CHANNEL_SHELL],
|
||||||
|
strlen('pty-req'),
|
||||||
|
'pty-req',
|
||||||
|
1,
|
||||||
|
strlen('vt100'),
|
||||||
|
'vt100',
|
||||||
|
$this->windowColumns,
|
||||||
|
$this->windowRows,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
strlen($terminal_modes),
|
||||||
|
$terminal_modes
|
||||||
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
@ -2497,8 +2635,14 @@ class SSH2
|
|||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION);
|
||||||
}
|
}
|
||||||
|
|
||||||
$packet = pack('CNNa*C',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $this->server_channels[self::CHANNEL_SHELL], strlen('shell'), 'shell', 1);
|
'CNNa*C',
|
||||||
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$this->server_channels[self::CHANNEL_SHELL],
|
||||||
|
strlen('shell'),
|
||||||
|
'shell',
|
||||||
|
1
|
||||||
|
);
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -2645,8 +2789,15 @@ class SSH2
|
|||||||
{
|
{
|
||||||
$this->window_size_server_to_client[self::CHANNEL_SUBSYSTEM] = $this->window_size;
|
$this->window_size_server_to_client[self::CHANNEL_SUBSYSTEM] = $this->window_size;
|
||||||
|
|
||||||
$packet = pack('CNa*N3',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_OPEN, strlen('session'), 'session', self::CHANNEL_SUBSYSTEM, $this->window_size, 0x4000);
|
'CNa*N3',
|
||||||
|
NET_SSH2_MSG_CHANNEL_OPEN,
|
||||||
|
strlen('session'),
|
||||||
|
'session',
|
||||||
|
self::CHANNEL_SUBSYSTEM,
|
||||||
|
$this->window_size,
|
||||||
|
0x4000
|
||||||
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
@ -2659,8 +2810,16 @@ class SSH2
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$packet = pack('CNNa*CNa*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $this->server_channels[self::CHANNEL_SUBSYSTEM], strlen('subsystem'), 'subsystem', 1, strlen($subsystem), $subsystem);
|
'CNNa*CNa*',
|
||||||
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$this->server_channels[self::CHANNEL_SUBSYSTEM],
|
||||||
|
strlen('subsystem'),
|
||||||
|
'subsystem',
|
||||||
|
1,
|
||||||
|
strlen($subsystem),
|
||||||
|
$subsystem
|
||||||
|
);
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -2929,8 +3088,14 @@ class SSH2
|
|||||||
|
|
||||||
$packet_size = 0x4000;
|
$packet_size = 0x4000;
|
||||||
|
|
||||||
$packet = pack('CN4',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, $server_channel, $new_channel, $packet_size, $packet_size);
|
'CN4',
|
||||||
|
NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
|
||||||
|
$server_channel,
|
||||||
|
$new_channel,
|
||||||
|
$packet_size,
|
||||||
|
$packet_size
|
||||||
|
);
|
||||||
|
|
||||||
$this->server_channels[$new_channel] = $server_channel;
|
$this->server_channels[$new_channel] = $server_channel;
|
||||||
$this->channel_status[$new_channel] = NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION;
|
$this->channel_status[$new_channel] = NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION;
|
||||||
@ -2940,8 +3105,16 @@ class SSH2
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$packet = pack('CN3a*Na*',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_REQUEST_FAILURE, $server_channel, NET_SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED, 0, '', 0, '');
|
'CN3a*Na*',
|
||||||
|
NET_SSH2_MSG_REQUEST_FAILURE,
|
||||||
|
$server_channel,
|
||||||
|
NET_SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED,
|
||||||
|
0,
|
||||||
|
'',
|
||||||
|
0,
|
||||||
|
''
|
||||||
|
);
|
||||||
|
|
||||||
if (!$this->_send_binary_packet($packet)) {
|
if (!$this->_send_binary_packet($packet)) {
|
||||||
return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION);
|
return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION);
|
||||||
@ -3417,7 +3590,8 @@ class SSH2
|
|||||||
);
|
);
|
||||||
|
|
||||||
$temp = $this->_string_shift($data, $max_size);
|
$temp = $this->_string_shift($data, $max_size);
|
||||||
$packet = pack('CN2a*',
|
$packet = pack(
|
||||||
|
'CN2a*',
|
||||||
NET_SSH2_MSG_CHANNEL_DATA,
|
NET_SSH2_MSG_CHANNEL_DATA,
|
||||||
$this->server_channels[$client_channel],
|
$this->server_channels[$client_channel],
|
||||||
strlen($temp),
|
strlen($temp),
|
||||||
@ -3458,7 +3632,8 @@ class SSH2
|
|||||||
|
|
||||||
$this->curTimeout = 0;
|
$this->curTimeout = 0;
|
||||||
|
|
||||||
while (!is_bool($this->_get_channel_packet($client_channel)));
|
while (!is_bool($this->_get_channel_packet($client_channel))) {
|
||||||
|
}
|
||||||
|
|
||||||
if ($want_reply) {
|
if ($want_reply) {
|
||||||
$this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_CLOSE, $this->server_channels[$client_channel]));
|
$this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_CLOSE, $this->server_channels[$client_channel]));
|
||||||
|
@ -223,8 +223,14 @@ class Agent
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$packet = pack('CNNa*C',
|
$packet = pack(
|
||||||
NET_SSH2_MSG_CHANNEL_REQUEST, $ssh->server_channels[$request_channel], strlen('auth-agent-req@openssh.com'), 'auth-agent-req@openssh.com', 1);
|
'CNNa*C',
|
||||||
|
NET_SSH2_MSG_CHANNEL_REQUEST,
|
||||||
|
$ssh->server_channels[$request_channel],
|
||||||
|
strlen('auth-agent-req@openssh.com'),
|
||||||
|
'auth-agent-req@openssh.com',
|
||||||
|
1
|
||||||
|
);
|
||||||
|
|
||||||
$ssh->channel_status[$request_channel] = NET_SSH2_MSG_CHANNEL_REQUEST;
|
$ssh->channel_status[$request_channel] = NET_SSH2_MSG_CHANNEL_REQUEST;
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ class Functional_Net_SCPSSH2UserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
static protected $exampleData;
|
static protected $exampleData;
|
||||||
static protected $exampleDataLength;
|
static protected $exampleDataLength;
|
||||||
|
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
self::$remoteFile = uniqid('phpseclib-scp-ssh2-') . '.txt';
|
self::$remoteFile = uniqid('phpseclib-scp-ssh2-') . '.txt';
|
||||||
|
@ -11,7 +11,7 @@ use phpseclib\Net\SFTP;
|
|||||||
|
|
||||||
class Functional_Net_SFTPLargeFileTest extends Functional_Net_SFTPTestCase
|
class Functional_Net_SFTPLargeFileTest extends Functional_Net_SFTPTestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
if (!extension_loaded('mcrypt') && !extension_loaded('openssl')) {
|
if (!extension_loaded('mcrypt') && !extension_loaded('openssl')) {
|
||||||
self::markTestSkipped('This test depends on mcrypt or openssl for performance.');
|
self::markTestSkipped('This test depends on mcrypt or openssl for performance.');
|
||||||
|
@ -10,7 +10,7 @@ use phpseclib\Net\SFTP\Stream;
|
|||||||
|
|
||||||
class Functional_Net_SFTPStreamTest extends Functional_Net_SFTPTestCase
|
class Functional_Net_SFTPStreamTest extends Functional_Net_SFTPTestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
Stream::register();
|
Stream::register();
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
@ -15,7 +15,7 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
static protected $exampleDataLength;
|
static protected $exampleDataLength;
|
||||||
static protected $buffer;
|
static protected $buffer;
|
||||||
|
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
|
||||||
@ -164,7 +164,9 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
{
|
{
|
||||||
$r = substr(self::$buffer, 0, $length);
|
$r = substr(self::$buffer, 0, $length);
|
||||||
self::$buffer = substr(self::$buffer, $length);
|
self::$buffer = substr(self::$buffer, $length);
|
||||||
if (strlen($r)) return $r;
|
if (strlen($r)) {
|
||||||
|
return $r;
|
||||||
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -337,7 +339,8 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
if ($sftp->is_file($file)) {
|
if ($sftp->is_file($file)) {
|
||||||
$cur_size = $sftp->size($file);
|
$cur_size = $sftp->size($file);
|
||||||
$this->assertLessThanOrEqual(
|
$this->assertLessThanOrEqual(
|
||||||
$last_size, $cur_size,
|
$last_size,
|
||||||
|
$cur_size,
|
||||||
'Failed asserting that nlist() is in descending order'
|
'Failed asserting that nlist() is in descending order'
|
||||||
);
|
);
|
||||||
$last_size = $cur_size;
|
$last_size = $cur_size;
|
||||||
@ -388,7 +391,8 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
$stat = $sftp->stat('symlink');
|
$stat = $sftp->stat('symlink');
|
||||||
$lstat = $sftp->lstat('symlink');
|
$lstat = $sftp->lstat('symlink');
|
||||||
$this->assertNotEquals(
|
$this->assertNotEquals(
|
||||||
$stat, $lstat,
|
$stat,
|
||||||
|
$lstat,
|
||||||
'Failed asserting that stat and lstat returned different output for a symlink'
|
'Failed asserting that stat and lstat returned different output for a symlink'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -421,7 +425,9 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
*/
|
*/
|
||||||
public function testReadlink($sftp)
|
public function testReadlink($sftp)
|
||||||
{
|
{
|
||||||
$this->assertInternalType('string', $sftp->readlink('symlink'),
|
$this->assertInternalType(
|
||||||
|
'string',
|
||||||
|
$sftp->readlink('symlink'),
|
||||||
'Failed asserting that a symlink\'s target could be read'
|
'Failed asserting that a symlink\'s target could be read'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -436,12 +442,14 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
{
|
{
|
||||||
$stat = $sftp->stat('.');
|
$stat = $sftp->stat('.');
|
||||||
$this->assertInternalType(
|
$this->assertInternalType(
|
||||||
'array', $stat,
|
'array',
|
||||||
|
$stat,
|
||||||
'Failed asserting that stat on . returns an array'
|
'Failed asserting that stat on . returns an array'
|
||||||
);
|
);
|
||||||
$lstat = $sftp->lstat('.');
|
$lstat = $sftp->lstat('.');
|
||||||
$this->assertInternalType(
|
$this->assertInternalType(
|
||||||
'array', $lstat,
|
'array',
|
||||||
|
$lstat,
|
||||||
'Failed asserting that lstat on . returns an array'
|
'Failed asserting that lstat on . returns an array'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ use phpseclib\Math\BigInteger;
|
|||||||
|
|
||||||
abstract class PhpseclibFunctionalTestCase extends PhpseclibTestCase
|
abstract class PhpseclibFunctionalTestCase extends PhpseclibTestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
if (extension_loaded('runkit')) {
|
if (extension_loaded('runkit')) {
|
||||||
if (extension_loaded('gmp')) {
|
if (extension_loaded('gmp')) {
|
||||||
|
@ -53,7 +53,7 @@ abstract class PhpseclibTestCase extends PHPUnit_Framework_TestCase
|
|||||||
*
|
*
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
static protected function ensureConstant($constant, $expected)
|
protected static function ensureConstant($constant, $expected)
|
||||||
{
|
{
|
||||||
if (defined($constant)) {
|
if (defined($constant)) {
|
||||||
$value = constant($constant);
|
$value = constant($constant);
|
||||||
@ -86,7 +86,7 @@ abstract class PhpseclibTestCase extends PHPUnit_Framework_TestCase
|
|||||||
*
|
*
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
static protected function reRequireFile($filename)
|
protected static function reRequireFile($filename)
|
||||||
{
|
{
|
||||||
if (function_exists('runkit_import')) {
|
if (function_exists('runkit_import')) {
|
||||||
$result = runkit_import(
|
$result = runkit_import(
|
||||||
|
@ -22,7 +22,7 @@ class Unit_Crypt_Hash_MD5Test extends Unit_Crypt_Hash_TestCase
|
|||||||
$this->assertHashesTo($this->getInstance(), $message, $result);
|
$this->assertHashesTo($this->getInstance(), $message, $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function hashData()
|
public static function hashData()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
array('', 'd41d8cd98f00b204e9800998ecf8427e'),
|
array('', 'd41d8cd98f00b204e9800998ecf8427e'),
|
||||||
@ -39,7 +39,7 @@ class Unit_Crypt_Hash_MD5Test extends Unit_Crypt_Hash_TestCase
|
|||||||
$this->assertHMACsTo($this->getInstance(), $key, $message, $result);
|
$this->assertHMACsTo($this->getInstance(), $key, $message, $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function hmacData()
|
public static function hmacData()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
array('', '', '74e6f7298a9c2d168935f58c001bad88'),
|
array('', '', '74e6f7298a9c2d168935f58c001bad88'),
|
||||||
|
@ -22,7 +22,7 @@ class Unit_Crypt_Hash_SHA256Test extends Unit_Crypt_Hash_TestCase
|
|||||||
$this->assertHashesTo($this->getInstance(), $message, $result);
|
$this->assertHashesTo($this->getInstance(), $message, $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function hashData()
|
public static function hashData()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
array(
|
array(
|
||||||
@ -48,7 +48,7 @@ class Unit_Crypt_Hash_SHA256Test extends Unit_Crypt_Hash_TestCase
|
|||||||
$this->assertHMACsTo($this->getInstance(), $key, $message, $result);
|
$this->assertHMACsTo($this->getInstance(), $key, $message, $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function hmacData()
|
public static function hmacData()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
// RFC 4231
|
// RFC 4231
|
||||||
|
@ -22,7 +22,7 @@ class Unit_Crypt_Hash_SHA512Test extends Unit_Crypt_Hash_TestCase
|
|||||||
$this->assertHashesTo($this->getInstance(), $message, $result);
|
$this->assertHashesTo($this->getInstance(), $message, $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function hashData()
|
public static function hashData()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
array(
|
array(
|
||||||
@ -48,7 +48,7 @@ class Unit_Crypt_Hash_SHA512Test extends Unit_Crypt_Hash_TestCase
|
|||||||
$this->assertHMACsTo($this->getInstance(), $key, $message, $result);
|
$this->assertHMACsTo($this->getInstance(), $key, $message, $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function hmacData()
|
public static function hmacData()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
// RFC 4231
|
// RFC 4231
|
||||||
|
@ -9,7 +9,7 @@ use phpseclib\Crypt\Hash;
|
|||||||
|
|
||||||
abstract class Unit_Crypt_Hash_TestCase extends PhpseclibTestCase
|
abstract class Unit_Crypt_Hash_TestCase extends PhpseclibTestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
if (!defined('CRYPT_HASH_MODE')) {
|
if (!defined('CRYPT_HASH_MODE')) {
|
||||||
define('CRYPT_HASH_MODE', Hash::MODE_INTERNAL);
|
define('CRYPT_HASH_MODE', Hash::MODE_INTERNAL);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
class Unit_Math_BigInteger_BCMathTest extends Unit_Math_BigInteger_TestCase
|
class Unit_Math_BigInteger_BCMathTest extends Unit_Math_BigInteger_TestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
if (!extension_loaded('bcmath')) {
|
if (!extension_loaded('bcmath')) {
|
||||||
self::markTestSkipped('BCMath extension is not available.');
|
self::markTestSkipped('BCMath extension is not available.');
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
class Unit_Math_BigInteger_GMPTest extends Unit_Math_BigInteger_TestCase
|
class Unit_Math_BigInteger_GMPTest extends Unit_Math_BigInteger_TestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
if (!extension_loaded('gmp')) {
|
if (!extension_loaded('gmp')) {
|
||||||
self::markTestSkipped('GNU Multiple Precision (GMP) extension is not available.');
|
self::markTestSkipped('GNU Multiple Precision (GMP) extension is not available.');
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
class Unit_Math_BigInteger_InternalOpenSSLTest extends Unit_Math_BigInteger_TestCase
|
class Unit_Math_BigInteger_InternalOpenSSLTest extends Unit_Math_BigInteger_TestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
if (!function_exists('openssl_public_encrypt')) {
|
if (!function_exists('openssl_public_encrypt')) {
|
||||||
self::markTestSkipped('openssl_public_encrypt() function is not available.');
|
self::markTestSkipped('openssl_public_encrypt() function is not available.');
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
class Unit_Math_BigInteger_InternalTest extends Unit_Math_BigInteger_TestCase
|
class Unit_Math_BigInteger_InternalTest extends Unit_Math_BigInteger_TestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
abstract class Unit_Math_BigInteger_TestCase extends PhpseclibTestCase
|
abstract class Unit_Math_BigInteger_TestCase extends PhpseclibTestCase
|
||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
include_once 'Math/BigInteger.php';
|
include_once 'Math/BigInteger.php';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user