Merge branch '3.0'

This commit is contained in:
terrafrost 2022-07-16 09:16:37 -05:00
commit 5e524c3f21
6 changed files with 1 additions and 54 deletions

View File

@ -80,22 +80,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
*

View File

@ -129,7 +129,7 @@ abstract class OpenSSH
if (!isset($parts[1])) {
$key = base64_decode($parts[0]);
$comment = $parts[1] ?? false;
$comment = false;
} else {
$asciiType = $parts[0];
self::checkType($parts[0]);

View File

@ -24,20 +24,6 @@ use phpseclib3\Math\BigInteger;
*/
abstract class Base
{
/**
* Doubles
*
* @var object[]
*/
protected $doubles;
/**
* NAF Points
*
* @var int[]
*/
private $naf;
/**
* The Order
*

View File

@ -71,14 +71,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)
*

View File

@ -161,14 +161,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
*

View File

@ -109,13 +109,6 @@ class Agent
*/
private $expected_bytes = 0;
/**
* The current request channel
*
* @var int
*/
private $request_channel;
/**
* Default Constructor
*