mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-12 16:36:30 +00:00
backport more changes from master
This commit is contained in:
parent
dd9146e259
commit
114f8c8f77
@ -78,22 +78,6 @@ abstract class AsymmetricKey
|
||||
*/
|
||||
private static $invisiblePlugins = [];
|
||||
|
||||
/**
|
||||
* Supported signature formats (lower case)
|
||||
*
|
||||
* @see self::initialize_static_variables()
|
||||
* @var array
|
||||
*/
|
||||
private static $signatureFormats = [];
|
||||
|
||||
/**
|
||||
* Supported signature formats (original case)
|
||||
*
|
||||
* @see self::initialize_static_variables()
|
||||
* @var array
|
||||
*/
|
||||
private static $signatureFileFormats = [];
|
||||
|
||||
/**
|
||||
* Available Engines
|
||||
*
|
||||
|
@ -130,7 +130,7 @@ abstract class OpenSSH
|
||||
|
||||
if (!isset($parts[1])) {
|
||||
$key = base64_decode($parts[0]);
|
||||
$comment = isset($parts[1]) ? $parts[1] : false;
|
||||
$comment = false;
|
||||
} else {
|
||||
$asciiType = $parts[0];
|
||||
self::checkType($parts[0]);
|
||||
|
@ -22,20 +22,6 @@ use phpseclib3\Math\BigInteger;
|
||||
*/
|
||||
abstract class Base
|
||||
{
|
||||
/**
|
||||
* Doubles
|
||||
*
|
||||
* @var object[]
|
||||
*/
|
||||
protected $doubles;
|
||||
|
||||
/**
|
||||
* NAF Points
|
||||
*
|
||||
* @var int[]
|
||||
*/
|
||||
private $naf;
|
||||
|
||||
/**
|
||||
* The Order
|
||||
*
|
||||
|
@ -70,14 +70,6 @@ class RC2 extends BlockCipher
|
||||
*/
|
||||
private $orig_key;
|
||||
|
||||
/**
|
||||
* Don't truncate / null pad key
|
||||
*
|
||||
* @see \phpseclib3\Crypt\Common\SymmetricKey::clearBuffers()
|
||||
* @var bool
|
||||
*/
|
||||
private $skip_key_adjustment = true;
|
||||
|
||||
/**
|
||||
* Key Length (in bytes)
|
||||
*
|
||||
|
@ -160,14 +160,6 @@ class X509
|
||||
*/
|
||||
private $privateKey;
|
||||
|
||||
/**
|
||||
* Object identifiers for X.509 certificates
|
||||
*
|
||||
* @var array
|
||||
* @link http://en.wikipedia.org/wiki/Object_identifier
|
||||
*/
|
||||
private $oids;
|
||||
|
||||
/**
|
||||
* The certificate authorities
|
||||
*
|
||||
|
@ -107,13 +107,6 @@ class Agent
|
||||
*/
|
||||
private $expected_bytes = 0;
|
||||
|
||||
/**
|
||||
* The current request channel
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
private $request_channel;
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user