Viel neues

This commit is contained in:
Sven Steinert
2026-04-30 12:06:00 +02:00
parent 118809bfae
commit fce31ebcd7
1274 changed files with 181255 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<?php
/**
* ASN.1 Raw Element
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2012 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1;
/**
* ASN.1 Raw Element
*
* An ASN.1 ANY mapping will return an ASN1\Element object. Use of this object
* will also bypass the normal encoding rules in ASN1::encodeDER()
*
* @author Jim Wigginton <terrafrost@php.net>
*/
class Element
{
/**
* Raw element value
*
* @var string
*/
public $element;
/**
* Constructor
*
* @return Element
*/
public function __construct(string $encoded)
{
$this->element = $encoded;
}
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* AccessDescription
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AccessDescription
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AccessDescription
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'accessMethod' => ['type' => ASN1::TYPE_OBJECT_IDENTIFIER],
'accessLocation' => GeneralName::MAP,
],
];
}

View File

@@ -0,0 +1,38 @@
<?php
/**
* AdministrationDomainName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AdministrationDomainName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AdministrationDomainName
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
// if class isn't present it's assumed to be \phpseclib3\File\ASN1::CLASS_UNIVERSAL or
// (if constant is present) \phpseclib3\File\ASN1::CLASS_CONTEXT_SPECIFIC
'class' => ASN1::CLASS_APPLICATION,
'cast' => 2,
'children' => [
'numeric' => ['type' => ASN1::TYPE_NUMERIC_STRING],
'printable' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
],
];
}

View File

@@ -0,0 +1,37 @@
<?php
/**
* AlgorithmIdentifier
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AlgorithmIdentifier
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AlgorithmIdentifier
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'algorithm' => ['type' => ASN1::TYPE_OBJECT_IDENTIFIER],
'parameters' => [
'type' => ASN1::TYPE_ANY,
'optional' => true,
],
],
];
}

View File

@@ -0,0 +1,39 @@
<?php
/**
* AnotherName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AnotherName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AnotherName
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'type-id' => ['type' => ASN1::TYPE_OBJECT_IDENTIFIER],
'value' => [
'type' => ASN1::TYPE_ANY,
'constant' => 0,
'optional' => true,
'explicit' => true,
],
],
];
}

View File

@@ -0,0 +1,39 @@
<?php
/**
* Attribute
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Attribute
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Attribute
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'type' => AttributeType::MAP,
'value' => [
'type' => ASN1::TYPE_SET,
'min' => 1,
'max' => -1,
'children' => AttributeValue::MAP,
],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* AttributeType
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AttributeType
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AttributeType
{
public const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* AttributeTypeAndValue
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AttributeTypeAndValue
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AttributeTypeAndValue
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'type' => AttributeType::MAP,
'value' => AttributeValue::MAP,
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* AttributeValue
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AttributeValue
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AttributeValue
{
public const MAP = ['type' => ASN1::TYPE_ANY];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* Attributes
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Attributes
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Attributes
{
public const MAP = [
'type' => ASN1::TYPE_SET,
'min' => 1,
'max' => -1,
'children' => Attribute::MAP,
];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* AuthorityInfoAccessSyntax
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AuthorityInfoAccessSyntax
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AuthorityInfoAccessSyntax
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => AccessDescription::MAP,
];
}

View File

@@ -0,0 +1,47 @@
<?php
/**
* AuthorityKeyIdentifier
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* AuthorityKeyIdentifier
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class AuthorityKeyIdentifier
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'keyIdentifier' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + KeyIdentifier::MAP,
'authorityCertIssuer' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + GeneralNames::MAP,
'authorityCertSerialNumber' => [
'constant' => 2,
'optional' => true,
'implicit' => true,
] + CertificateSerialNumber::MAP,
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* BaseDistance
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* BaseDistance
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class BaseDistance
{
public const MAP = ['type' => ASN1::TYPE_INTEGER];
}

View File

@@ -0,0 +1,41 @@
<?php
/**
* BasicConstraints
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* BasicConstraints
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class BasicConstraints
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'cA' => [
'type' => ASN1::TYPE_BOOLEAN,
'optional' => true,
'default' => false,
],
'pathLenConstraint' => [
'type' => ASN1::TYPE_INTEGER,
'optional' => true,
],
],
];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* BuiltInDomainDefinedAttribute
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* BuiltInDomainDefinedAttribute
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class BuiltInDomainDefinedAttribute
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'type' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
'value' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
],
];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* BuiltInDomainDefinedAttributes
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* BuiltInDomainDefinedAttributes
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class BuiltInDomainDefinedAttributes
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => 4, // ub-domain-defined-attributes
'children' => BuiltInDomainDefinedAttribute::MAP,
];
}

View File

@@ -0,0 +1,69 @@
<?php
/**
* BuiltInStandardAttributes
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* BuiltInStandardAttributes
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class BuiltInStandardAttributes
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'country-name' => ['optional' => true] + CountryName::MAP,
'administration-domain-name' => ['optional' => true] + AdministrationDomainName::MAP,
'network-address' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + NetworkAddress::MAP,
'terminal-identifier' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + TerminalIdentifier::MAP,
'private-domain-name' => [
'constant' => 2,
'optional' => true,
'explicit' => true,
] + PrivateDomainName::MAP,
'organization-name' => [
'constant' => 3,
'optional' => true,
'implicit' => true,
] + OrganizationName::MAP,
'numeric-user-identifier' => [
'constant' => 4,
'optional' => true,
'implicit' => true,
] + NumericUserIdentifier::MAP,
'personal-name' => [
'constant' => 5,
'optional' => true,
'implicit' => true,
] + PersonalName::MAP,
'organizational-unit-names' => [
'constant' => 6,
'optional' => true,
'implicit' => true,
] + OrganizationalUnitNames::MAP,
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* CPSuri
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CPSuri
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CPSuri
{
public const MAP = ['type' => ASN1::TYPE_IA5_STRING];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* CRLDistributionPoints
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CRLDistributionPoints
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CRLDistributionPoints
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => DistributionPoint::MAP,
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* CRLNumber
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CRLNumber
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CRLNumber
{
public const MAP = ['type' => ASN1::TYPE_INTEGER];
}

View File

@@ -0,0 +1,43 @@
<?php
/**
* CRLReason
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CRLReason
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CRLReason
{
public const MAP = [
'type' => ASN1::TYPE_ENUMERATED,
'mapping' => [
'unspecified',
'keyCompromise',
'cACompromise',
'affiliationChanged',
'superseded',
'cessationOfOperation',
'certificateHold',
// Value 7 is not used.
8 => 'removeFromCRL',
'privilegeWithdrawn',
'aACompromise',
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* CertPolicyId
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CertPolicyId
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CertPolicyId
{
public const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER];
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* Certificate
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Certificate
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Certificate
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'tbsCertificate' => TBSCertificate::MAP,
'signatureAlgorithm' => AlgorithmIdentifier::MAP,
'signature' => ['type' => ASN1::TYPE_BIT_STRING],
],
];
}

View File

@@ -0,0 +1,26 @@
<?php
/**
* CertificateIssuer
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
/**
* CertificateIssuer
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CertificateIssuer
{
public const MAP = GeneralNames::MAP;
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* CertificateList
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CertificateList
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CertificateList
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'tbsCertList' => TBSCertList::MAP,
'signatureAlgorithm' => AlgorithmIdentifier::MAP,
'signature' => ['type' => ASN1::TYPE_BIT_STRING],
],
];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* CertificatePolicies
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CertificatePolicies
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CertificatePolicies
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => PolicyInformation::MAP,
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* CertificateSerialNumber
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CertificateSerialNumber
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CertificateSerialNumber
{
public const MAP = ['type' => ASN1::TYPE_INTEGER];
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* CertificationRequest
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CertificationRequest
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CertificationRequest
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'certificationRequestInfo' => CertificationRequestInfo::MAP,
'signatureAlgorithm' => AlgorithmIdentifier::MAP,
'signature' => ['type' => ASN1::TYPE_BIT_STRING],
],
];
}

View File

@@ -0,0 +1,43 @@
<?php
/**
* CertificationRequestInfo
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CertificationRequestInfo
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CertificationRequestInfo
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'version' => [
'type' => ASN1::TYPE_INTEGER,
'mapping' => ['v1'],
],
'subject' => Name::MAP,
'subjectPKInfo' => SubjectPublicKeyInfo::MAP,
'attributes' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + Attributes::MAP,
],
];
}

View File

@@ -0,0 +1,38 @@
<?php
/**
* Characteristic_two
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Characteristic_two
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Characteristic_two
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'm' => ['type' => ASN1::TYPE_INTEGER], // field size 2**m
'basis' => ['type' => ASN1::TYPE_OBJECT_IDENTIFIER],
'parameters' => [
'type' => ASN1::TYPE_ANY,
'optional' => true,
],
],
];
}

View File

@@ -0,0 +1,38 @@
<?php
/**
* CountryName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* CountryName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class CountryName
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
// if class isn't present it's assumed to be \phpseclib3\File\ASN1::CLASS_UNIVERSAL or
// (if constant is present) \phpseclib3\File\ASN1::CLASS_CONTEXT_SPECIFIC
'class' => ASN1::CLASS_APPLICATION,
'cast' => 1,
'children' => [
'x121-dcc-code' => ['type' => ASN1::TYPE_NUMERIC_STRING],
'iso-3166-alpha2-code' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
],
];
}

View File

@@ -0,0 +1,38 @@
<?php
/**
* Curve
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Curve
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Curve
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'a' => FieldElement::MAP,
'b' => FieldElement::MAP,
'seed' => [
'type' => ASN1::TYPE_BIT_STRING,
'optional' => true,
],
],
];
}

View File

@@ -0,0 +1,40 @@
<?php
/**
* DHParameter
*
* From: https://www.teletrust.de/fileadmin/files/oid/oid_pkcs-3v1-4.pdf#page=6
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DHParameter
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DHParameter
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'prime' => ['type' => ASN1::TYPE_INTEGER],
'base' => ['type' => ASN1::TYPE_INTEGER],
'privateValueLength' => [
'type' => ASN1::TYPE_INTEGER,
'optional' => true,
],
],
];
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* DSAParams
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DSAParams
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DSAParams
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'p' => ['type' => ASN1::TYPE_INTEGER],
'q' => ['type' => ASN1::TYPE_INTEGER],
'g' => ['type' => ASN1::TYPE_INTEGER],
],
];
}

View File

@@ -0,0 +1,38 @@
<?php
/**
* DSAPrivateKey
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DSAPrivateKey
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DSAPrivateKey
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'version' => ['type' => ASN1::TYPE_INTEGER],
'p' => ['type' => ASN1::TYPE_INTEGER],
'q' => ['type' => ASN1::TYPE_INTEGER],
'g' => ['type' => ASN1::TYPE_INTEGER],
'y' => ['type' => ASN1::TYPE_INTEGER],
'x' => ['type' => ASN1::TYPE_INTEGER],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* DSAPublicKey
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DSAPublicKey
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DSAPublicKey
{
public const MAP = ['type' => ASN1::TYPE_INTEGER];
}

View File

@@ -0,0 +1,36 @@
<?php
/**
* DigestInfo
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DigestInfo
*
* from https://tools.ietf.org/html/rfc2898#appendix-A.3
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DigestInfo
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'digestAlgorithm' => AlgorithmIdentifier::MAP,
'digest' => ['type' => ASN1::TYPE_OCTET_STRING],
],
];
}

View File

@@ -0,0 +1,37 @@
<?php
/**
* DirectoryString
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DirectoryString
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DirectoryString
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'teletexString' => ['type' => ASN1::TYPE_TELETEX_STRING],
'printableString' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
'universalString' => ['type' => ASN1::TYPE_UNIVERSAL_STRING],
'utf8String' => ['type' => ASN1::TYPE_UTF8_STRING],
'bmpString' => ['type' => ASN1::TYPE_BMP_STRING],
],
];
}

View File

@@ -0,0 +1,36 @@
<?php
/**
* DisplayText
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DisplayText
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DisplayText
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'ia5String' => ['type' => ASN1::TYPE_IA5_STRING],
'visibleString' => ['type' => ASN1::TYPE_VISIBLE_STRING],
'bmpString' => ['type' => ASN1::TYPE_BMP_STRING],
'utf8String' => ['type' => ASN1::TYPE_UTF8_STRING],
],
];
}

View File

@@ -0,0 +1,47 @@
<?php
/**
* DistributionPoint
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DistributionPoint
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DistributionPoint
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'distributionPoint' => [
'constant' => 0,
'optional' => true,
'explicit' => true,
] + DistributionPointName::MAP,
'reasons' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + ReasonFlags::MAP,
'cRLIssuer' => [
'constant' => 2,
'optional' => true,
'implicit' => true,
] + GeneralNames::MAP,
],
];
}

View File

@@ -0,0 +1,42 @@
<?php
/**
* DistributionPointName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DistributionPointName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DistributionPointName
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'fullName' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + GeneralNames::MAP,
'nameRelativeToCRLIssuer' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + RelativeDistinguishedName::MAP,
],
];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* DssSigValue
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* DssSigValue
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class DssSigValue
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'r' => ['type' => ASN1::TYPE_INTEGER],
's' => ['type' => ASN1::TYPE_INTEGER],
],
];
}

View File

@@ -0,0 +1,47 @@
<?php
/**
* ECParameters
*
* From: https://tools.ietf.org/html/rfc5915
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* ECParameters
*
* ECParameters ::= CHOICE {
* namedCurve OBJECT IDENTIFIER
* -- implicitCurve NULL
* -- specifiedCurve SpecifiedECDomain
* }
* -- implicitCurve and specifiedCurve MUST NOT be used in PKIX.
* -- Details for SpecifiedECDomain can be found in [X9.62].
* -- Any future additions to this CHOICE should be coordinated
* -- with ANSI X9.
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class ECParameters
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'namedCurve' => ['type' => ASN1::TYPE_OBJECT_IDENTIFIER],
'implicitCurve' => ['type' => ASN1::TYPE_NULL],
'specifiedCurve' => SpecifiedECDomain::MAP,
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* ECPoint
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* ECPoint
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class ECPoint
{
public const MAP = ['type' => ASN1::TYPE_OCTET_STRING];
}

View File

@@ -0,0 +1,50 @@
<?php
/**
* ECPrivateKey
*
* From: https://tools.ietf.org/html/rfc5915
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* ECPrivateKey
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class ECPrivateKey
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'version' => [
'type' => ASN1::TYPE_INTEGER,
'mapping' => [1 => 'ecPrivkeyVer1'],
],
'privateKey' => ['type' => ASN1::TYPE_OCTET_STRING],
'parameters' => [
'constant' => 0,
'optional' => true,
'explicit' => true,
] + ECParameters::MAP,
'publicKey' => [
'type' => ASN1::TYPE_BIT_STRING,
'constant' => 1,
'optional' => true,
'explicit' => true,
],
],
];
}

View File

@@ -0,0 +1,44 @@
<?php
/**
* EDIPartyName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* EDIPartyName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class EDIPartyName
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'nameAssigner' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + DirectoryString::MAP,
// partyName is technically required but \phpseclib3\File\ASN1 doesn't currently support non-optional constants and
// setting it to optional gets the job done in any event.
'partyName' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + DirectoryString::MAP,
],
];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* EcdsaSigValue
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* EcdsaSigValue
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class EcdsaSigValue
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'r' => ['type' => ASN1::TYPE_INTEGER],
's' => ['type' => ASN1::TYPE_INTEGER],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* EncryptedData
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* EncryptedData
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class EncryptedData
{
public const MAP = ['type' => ASN1::TYPE_OCTET_STRING];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* EncryptedPrivateKeyInfo
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* EncryptedPrivateKeyInfo
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class EncryptedPrivateKeyInfo
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'encryptionAlgorithm' => AlgorithmIdentifier::MAP,
'encryptedData' => EncryptedData::MAP,
],
];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* ExtKeyUsageSyntax
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* ExtKeyUsageSyntax
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class ExtKeyUsageSyntax
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => KeyPurposeId::MAP,
];
}

View File

@@ -0,0 +1,45 @@
<?php
/**
* Extension
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Extension
*
* A certificate using system MUST reject the certificate if it encounters
* a critical extension it does not recognize; however, a non-critical
* extension may be ignored if it is not recognized.
*
* http://tools.ietf.org/html/rfc5280#section-4.2
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Extension
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'extnId' => ['type' => ASN1::TYPE_OBJECT_IDENTIFIER],
'critical' => [
'type' => ASN1::TYPE_BOOLEAN,
'optional' => true,
'default' => false,
],
'extnValue' => ['type' => ASN1::TYPE_OCTET_STRING],
],
];
}

View File

@@ -0,0 +1,44 @@
<?php
/**
* ExtensionAttribute
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* ExtensionAttribute
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class ExtensionAttribute
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'extension-attribute-type' => [
'type' => ASN1::TYPE_PRINTABLE_STRING,
'constant' => 0,
'optional' => true,
'implicit' => true,
],
'extension-attribute-value' => [
'type' => ASN1::TYPE_ANY,
'constant' => 1,
'optional' => true,
'explicit' => true,
],
],
];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* ExtensionAttributes
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* ExtensionAttributes
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class ExtensionAttributes
{
public const MAP = [
'type' => ASN1::TYPE_SET,
'min' => 1,
'max' => 256, // ub-extension-attributes
'children' => ExtensionAttribute::MAP,
];
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* Extensions
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Extensions
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Extensions
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
// technically, it's MAX, but we'll assume anything < 0 is MAX
'max' => -1,
// if 'children' isn't an array then 'min' and 'max' must be defined
'children' => Extension::MAP,
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* FieldElement
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* FieldElement
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class FieldElement
{
public const MAP = ['type' => ASN1::TYPE_OCTET_STRING];
}

View File

@@ -0,0 +1,37 @@
<?php
/**
* FieldID
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* FieldID
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class FieldID
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'fieldType' => ['type' => ASN1::TYPE_OBJECT_IDENTIFIER],
'parameters' => [
'type' => ASN1::TYPE_ANY,
'optional' => true,
],
],
];
}

View File

@@ -0,0 +1,82 @@
<?php
/**
* GeneralName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* GeneralName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class GeneralName
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'otherName' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + AnotherName::MAP,
'rfc822Name' => [
'type' => ASN1::TYPE_IA5_STRING,
'constant' => 1,
'optional' => true,
'implicit' => true,
],
'dNSName' => [
'type' => ASN1::TYPE_IA5_STRING,
'constant' => 2,
'optional' => true,
'implicit' => true,
],
'x400Address' => [
'constant' => 3,
'optional' => true,
'implicit' => true,
] + ORAddress::MAP,
'directoryName' => [
'constant' => 4,
'optional' => true,
'explicit' => true,
] + Name::MAP,
'ediPartyName' => [
'constant' => 5,
'optional' => true,
'implicit' => true,
] + EDIPartyName::MAP,
'uniformResourceIdentifier' => [
'type' => ASN1::TYPE_IA5_STRING,
'constant' => 6,
'optional' => true,
'implicit' => true,
],
'iPAddress' => [
'type' => ASN1::TYPE_OCTET_STRING,
'constant' => 7,
'optional' => true,
'implicit' => true,
],
'registeredID' => [
'type' => ASN1::TYPE_OBJECT_IDENTIFIER,
'constant' => 8,
'optional' => true,
'implicit' => true,
],
],
];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* GeneralNames
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* GeneralNames
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class GeneralNames
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => GeneralName::MAP,
];
}

View File

@@ -0,0 +1,44 @@
<?php
/**
* GeneralSubtree
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* GeneralSubtree
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class GeneralSubtree
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'base' => GeneralName::MAP,
'minimum' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
'default' => '0',
] + BaseDistance::MAP,
'maximum' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + BaseDistance::MAP,
],
];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* GeneralSubtrees
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* GeneralSubtrees
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class GeneralSubtrees
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => GeneralSubtree::MAP,
];
}

View File

@@ -0,0 +1,26 @@
<?php
/**
* HashAglorithm
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
/**
* HashAglorithm
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class HashAlgorithm
{
public const MAP = AlgorithmIdentifier::MAP;
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* HoldInstructionCode
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* HoldInstructionCode
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class HoldInstructionCode
{
public const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* InvalidityDate
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* InvalidityDate
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class InvalidityDate
{
public const MAP = ['type' => ASN1::TYPE_GENERALIZED_TIME];
}

View File

@@ -0,0 +1,26 @@
<?php
/**
* IssuerAltName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
/**
* IssuerAltName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class IssuerAltName
{
public const MAP = GeneralNames::MAP;
}

View File

@@ -0,0 +1,70 @@
<?php
/**
* IssuingDistributionPoint
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* IssuingDistributionPoint
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class IssuingDistributionPoint
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'distributionPoint' => [
'constant' => 0,
'optional' => true,
'explicit' => true,
] + DistributionPointName::MAP,
'onlyContainsUserCerts' => [
'type' => ASN1::TYPE_BOOLEAN,
'constant' => 1,
'optional' => true,
'default' => false,
'implicit' => true,
],
'onlyContainsCACerts' => [
'type' => ASN1::TYPE_BOOLEAN,
'constant' => 2,
'optional' => true,
'default' => false,
'implicit' => true,
],
'onlySomeReasons' => [
'constant' => 3,
'optional' => true,
'implicit' => true,
] + ReasonFlags::MAP,
'indirectCRL' => [
'type' => ASN1::TYPE_BOOLEAN,
'constant' => 4,
'optional' => true,
'default' => false,
'implicit' => true,
],
'onlyContainsAttributeCerts' => [
'type' => ASN1::TYPE_BOOLEAN,
'constant' => 5,
'optional' => true,
'default' => false,
'implicit' => true,
],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* KeyIdentifier
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* KeyIdentifier
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class KeyIdentifier
{
public const MAP = ['type' => ASN1::TYPE_OCTET_STRING];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* KeyPurposeId
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* KeyPurposeId
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class KeyPurposeId
{
public const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER];
}

View File

@@ -0,0 +1,41 @@
<?php
/**
* KeyUsage
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* KeyUsage
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class KeyUsage
{
public const MAP = [
'type' => ASN1::TYPE_BIT_STRING,
'mapping' => [
'digitalSignature',
'nonRepudiation',
'keyEncipherment',
'dataEncipherment',
'keyAgreement',
'keyCertSign',
'cRLSign',
'encipherOnly',
'decipherOnly',
],
];
}

View File

@@ -0,0 +1,26 @@
<?php
/**
* MaskGenAglorithm
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
/**
* MaskGenAglorithm
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class MaskGenAlgorithm
{
public const MAP = AlgorithmIdentifier::MAP;
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* Name
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Name
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Name
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'rdnSequence' => RDNSequence::MAP,
],
];
}

View File

@@ -0,0 +1,42 @@
<?php
/**
* NameConstraints
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* NameConstraints
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class NameConstraints
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'permittedSubtrees' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + GeneralSubtrees::MAP,
'excludedSubtrees' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + GeneralSubtrees::MAP,
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* NetworkAddress
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* NetworkAddress
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class NetworkAddress
{
public const MAP = ['type' => ASN1::TYPE_NUMERIC_STRING];
}

View File

@@ -0,0 +1,39 @@
<?php
/**
* NoticeReference
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* NoticeReference
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class NoticeReference
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'organization' => DisplayText::MAP,
'noticeNumbers' => [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => 200,
'children' => ['type' => ASN1::TYPE_INTEGER],
],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* NumericUserIdentifier
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* NumericUserIdentifier
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class NumericUserIdentifier
{
public const MAP = ['type' => ASN1::TYPE_NUMERIC_STRING];
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* ORAddress
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* ORAddress
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class ORAddress
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'built-in-standard-attributes' => BuiltInStandardAttributes::MAP,
'built-in-domain-defined-attributes' => ['optional' => true] + BuiltInDomainDefinedAttributes::MAP,
'extension-attributes' => ['optional' => true] + ExtensionAttributes::MAP,
],
];
}

View File

@@ -0,0 +1,50 @@
<?php
/**
* OneAsymmetricKey
*
* See https://tools.ietf.org/html/rfc5958
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* OneAsymmetricKey
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class OneAsymmetricKey
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'version' => [
'type' => ASN1::TYPE_INTEGER,
'mapping' => ['v1', 'v2'],
],
'privateKeyAlgorithm' => AlgorithmIdentifier::MAP,
'privateKey' => PrivateKey::MAP,
'attributes' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + Attributes::MAP,
'publicKey' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
] + PublicKey::MAP,
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* OrganizationName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* OrganizationName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class OrganizationName
{
public const MAP = ['type' => ASN1::TYPE_PRINTABLE_STRING];
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* OrganizationalUnitNames
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* OrganizationalUnitNames
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class OrganizationalUnitNames
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => 4, // ub-organizational-units
'children' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
];
}

View File

@@ -0,0 +1,36 @@
<?php
/**
* OtherPrimeInfo
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* OtherPrimeInfo
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class OtherPrimeInfo
{
// version must be multi if otherPrimeInfos present
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'prime' => ['type' => ASN1::TYPE_INTEGER], // ri
'exponent' => ['type' => ASN1::TYPE_INTEGER], // di
'coefficient' => ['type' => ASN1::TYPE_INTEGER], // ti
],
];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* OtherPrimeInfos
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* OtherPrimeInfos
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class OtherPrimeInfos
{
// version must be multi if otherPrimeInfos present
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => OtherPrimeInfo::MAP,
];
}

View File

@@ -0,0 +1,36 @@
<?php
/**
* PBEParameter
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PBEParameter
*
* from https://tools.ietf.org/html/rfc2898#appendix-A.3
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PBEParameter
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'salt' => ['type' => ASN1::TYPE_OCTET_STRING],
'iterationCount' => ['type' => ASN1::TYPE_INTEGER],
],
];
}

View File

@@ -0,0 +1,36 @@
<?php
/**
* PBES2params
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PBES2params
*
* from https://tools.ietf.org/html/rfc2898#appendix-A.3
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PBES2params
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'keyDerivationFunc' => AlgorithmIdentifier::MAP,
'encryptionScheme' => AlgorithmIdentifier::MAP,
],
];
}

View File

@@ -0,0 +1,43 @@
<?php
/**
* PBKDF2params
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PBKDF2params
*
* from https://tools.ietf.org/html/rfc2898#appendix-A.3
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PBKDF2params
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
// technically, this is a CHOICE in RFC2898 but the other "choice" is, currently, more of a placeholder
// in the RFC
'salt' => ['type' => ASN1::TYPE_OCTET_STRING],
'iterationCount' => ['type' => ASN1::TYPE_INTEGER],
'keyLength' => [
'type' => ASN1::TYPE_INTEGER,
'optional' => true,
],
'prf' => AlgorithmIdentifier::MAP + ['optional' => true],
],
];
}

View File

@@ -0,0 +1,36 @@
<?php
/**
* PBMAC1params
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PBMAC1params
*
* from https://tools.ietf.org/html/rfc2898#appendix-A.3
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PBMAC1params
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'keyDerivationFunc' => AlgorithmIdentifier::MAP,
'messageAuthScheme' => AlgorithmIdentifier::MAP,
],
];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* PKCS9String
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PKCS9String
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PKCS9String
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'ia5String' => ['type' => ASN1::TYPE_IA5_STRING],
'directoryString' => DirectoryString::MAP,
],
];
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* Pentanomial
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Pentanomial
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Pentanomial
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'k1' => ['type' => ASN1::TYPE_INTEGER], // k1 > 0
'k2' => ['type' => ASN1::TYPE_INTEGER], // k2 > k1
'k3' => ['type' => ASN1::TYPE_INTEGER], // k3 > h2
],
];
}

View File

@@ -0,0 +1,56 @@
<?php
/**
* PersonalName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PersonalName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PersonalName
{
public const MAP = [
'type' => ASN1::TYPE_SET,
'children' => [
'surname' => [
'type' => ASN1::TYPE_PRINTABLE_STRING,
'constant' => 0,
'optional' => true,
'implicit' => true,
],
'given-name' => [
'type' => ASN1::TYPE_PRINTABLE_STRING,
'constant' => 1,
'optional' => true,
'implicit' => true,
],
'initials' => [
'type' => ASN1::TYPE_PRINTABLE_STRING,
'constant' => 2,
'optional' => true,
'implicit' => true,
],
'generation-qualifier' => [
'type' => ASN1::TYPE_PRINTABLE_STRING,
'constant' => 3,
'optional' => true,
'implicit' => true,
],
],
];
}

View File

@@ -0,0 +1,40 @@
<?php
/**
* PolicyInformation
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PolicyInformation
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PolicyInformation
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'policyIdentifier' => CertPolicyId::MAP,
'policyQualifiers' => [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 0,
'max' => -1,
'optional' => true,
'children' => PolicyQualifierInfo::MAP,
],
],
];
}

View File

@@ -0,0 +1,39 @@
<?php
/**
* PolicyMappings
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PolicyMappings
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PolicyMappings
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'min' => 1,
'max' => -1,
'children' => [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'issuerDomainPolicy' => CertPolicyId::MAP,
'subjectDomainPolicy' => CertPolicyId::MAP,
],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* PolicyQualifierId
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PolicyQualifierId
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PolicyQualifierId
{
public const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* PolicyQualifierInfo
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PolicyQualifierInfo
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PolicyQualifierInfo
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'policyQualifierId' => PolicyQualifierId::MAP,
'qualifier' => ['type' => ASN1::TYPE_ANY],
],
];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* PostalAddress
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PostalAddress
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PostalAddress
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'optional' => true,
'min' => 1,
'max' => -1,
'children' => DirectoryString::MAP,
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* Prime_p
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Prime_p
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Prime_p
{
public const MAP = ['type' => ASN1::TYPE_INTEGER];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* PrivateDomainName
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PrivateDomainName
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PrivateDomainName
{
public const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'numeric' => ['type' => ASN1::TYPE_NUMERIC_STRING],
'printable' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* PrivateKey
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PrivateKey
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PrivateKey
{
public const MAP = ['type' => ASN1::TYPE_OCTET_STRING];
}

View File

@@ -0,0 +1,43 @@
<?php
/**
* PrivateKeyInfo
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PrivateKeyInfo
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PrivateKeyInfo
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'version' => [
'type' => ASN1::TYPE_INTEGER,
'mapping' => ['v1'],
],
'privateKeyAlgorithm' => AlgorithmIdentifier::MAP,
'privateKey' => PrivateKey::MAP,
'attributes' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
] + Attributes::MAP,
],
];
}

View File

@@ -0,0 +1,42 @@
<?php
/**
* PrivateKeyUsagePeriod
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PrivateKeyUsagePeriod
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PrivateKeyUsagePeriod
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'notBefore' => [
'constant' => 0,
'optional' => true,
'implicit' => true,
'type' => ASN1::TYPE_GENERALIZED_TIME, ],
'notAfter' => [
'constant' => 1,
'optional' => true,
'implicit' => true,
'type' => ASN1::TYPE_GENERALIZED_TIME, ],
],
];
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* PublicKey
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PublicKey
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PublicKey
{
public const MAP = ['type' => ASN1::TYPE_BIT_STRING];
}

View File

@@ -0,0 +1,34 @@
<?php
/**
* PublicKeyAndChallenge
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PublicKeyAndChallenge
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PublicKeyAndChallenge
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'spki' => SubjectPublicKeyInfo::MAP,
'challenge' => ['type' => ASN1::TYPE_IA5_STRING],
],
];
}

View File

@@ -0,0 +1,37 @@
<?php
/**
* PublicKeyInfo
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
declare(strict_types=1);
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* PublicKeyInfo
*
* this format is not formally defined anywhere but is none-the-less the form you
* get when you do "openssl rsa -in private.pem -outform PEM -pubout"
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class PublicKeyInfo
{
public const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'publicKeyAlgorithm' => AlgorithmIdentifier::MAP,
'publicKey' => ['type' => ASN1::TYPE_BIT_STRING],
],
];
}

Some files were not shown because too many files have changed in this diff Show More