Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1462 → Rev 1463

/trunk/vendor/composer/installed.json
837,12 → 837,12
"source": {
"type": "git",
"url": "https://github.com/phpseclib/phpseclib.git",
"reference": "6a6c22234a5b1502b1c0bb90917d31478a2b7f3e"
"reference": "8f3a66547a020c799cd4d2a5ea1933f055eb3b90"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/6a6c22234a5b1502b1c0bb90917d31478a2b7f3e",
"reference": "6a6c22234a5b1502b1c0bb90917d31478a2b7f3e",
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/8f3a66547a020c799cd4d2a5ea1933f055eb3b90",
"reference": "8f3a66547a020c799cd4d2a5ea1933f055eb3b90",
"shasum": ""
},
"require": {
860,7 → 860,7
"ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
"ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
},
"time": "2024-01-24T13:42:28+00:00",
"time": "2024-02-08T04:43:03+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
/trunk/vendor/composer/installed.php
189,7 → 189,7
'phpseclib/phpseclib' => array(
'pretty_version' => '3.0.x-dev',
'version' => '3.0.9999999.9999999-dev',
'reference' => '6a6c22234a5b1502b1c0bb90917d31478a2b7f3e',
'reference' => '8f3a66547a020c799cd4d2a5ea1933f055eb3b90',
'type' => 'library',
'install_path' => __DIR__ . '/../phpseclib/phpseclib',
'aliases' => array(),
/trunk/vendor/licenses
28,7 → 28,7
matthiasmullie/path-converter 1.1.3 MIT
paragonie/constant_time_encoding v2.6.3 MIT
paragonie/random_compat v9.99.100 MIT
phpseclib/phpseclib 3.0.x-dev 6a6c222 MIT
phpseclib/phpseclib 3.0.x-dev 8f3a665 MIT
script47/bs5-utils master master MIT
spamspan/spamspan master GPL-2.0-only
spomky-labs/php-punycode 9999999-dev d12fe5c MIT
/trunk/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php
3446,7 → 3446,7
}
 
/**
* Returns all errors
* Returns all errors on the SFTP layer
*
* @return array
*/
3456,7 → 3456,7
}
 
/**
* Returns the last error
* Returns the last error on the SFTP layer
*
* @return string
*/
/trunk/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php
1116,6 → 1116,8
* Default Constructor.
*
* $host can either be a string, representing the host, or a stream resource.
* If $host is a stream resource then $port doesn't do anything, altho $timeout
* still will be used
*
* @param mixed $host
* @param int $port
1214,6 → 1216,8
? \WeakReference::create($this)
: $this;
 
$this->timeout = $timeout;
 
if (is_resource($host)) {
$this->fsock = $host;
return;
1222,7 → 1226,6
if (Strings::is_stringable($host)) {
$this->host = $host;
$this->port = $port;
$this->timeout = $timeout;
}
}
 
3531,6 → 3534,9
}
 
$start = microtime(true);
$sec = (int) floor($this->curTimeout);
$usec = (int) (1000000 * ($this->curTimeout - $sec));
stream_set_timeout($this->fsock, $sec, $usec);
$raw = stream_get_contents($this->fsock, $this->decrypt_block_size);
 
if (!strlen($raw)) {
4724,8 → 4730,10
}
 
/**
* Returns all errors
* Returns all errors / debug messages on the SSH layer
*
* If you are looking for messages from the SFTP layer, please see SFTP::getSFTPErrors()
*
* @return string[]
*/
public function getErrors()
4734,8 → 4742,10
}
 
/**
* Returns the last error
* Returns the last error received on the SSH layer
*
* If you are looking for messages from the SFTP layer, please see SFTP::getLastSFTPError()
*
* @return string
*/
public function getLastError()