.htaccess
9 months ago
AccessDescription.php
9 months ago
AdministrationDomainName.php
9 months ago
AlgorithmIdentifier.php
9 months ago
AnotherName.php
9 months ago
Attribute.php
9 months ago
AttributeType.php
9 months ago
AttributeTypeAndValue.php
9 months ago
AttributeValue.php
9 months ago
Attributes.php
9 months ago
AuthorityInfoAccessSyntax.php
9 months ago
AuthorityKeyIdentifier.php
9 months ago
BaseDistance.php
9 months ago
BasicConstraints.php
9 months ago
BuiltInDomainDefinedAttribute.php
9 months ago
BuiltInDomainDefinedAttributes.php
9 months ago
BuiltInStandardAttributes.php
9 months ago
CPSuri.php
9 months ago
CRLDistributionPoints.php
9 months ago
CRLNumber.php
9 months ago
CRLReason.php
9 months ago
CertPolicyId.php
9 months ago
Certificate.php
9 months ago
CertificateIssuer.php
9 months ago
CertificateList.php
9 months ago
CertificatePolicies.php
9 months ago
CertificateSerialNumber.php
9 months ago
CertificationRequest.php
9 months ago
CertificationRequestInfo.php
9 months ago
Characteristic_two.php
9 months ago
CountryName.php
9 months ago
Curve.php
9 months ago
DHParameter.php
9 months ago
DSAParams.php
9 months ago
DSAPrivateKey.php
9 months ago
DSAPublicKey.php
9 months ago
DigestInfo.php
9 months ago
DirectoryString.php
9 months ago
DisplayText.php
9 months ago
DistributionPoint.php
9 months ago
DistributionPointName.php
9 months ago
DssSigValue.php
9 months ago
ECParameters.php
9 months ago
ECPoint.php
9 months ago
ECPrivateKey.php
9 months ago
EDIPartyName.php
9 months ago
EcdsaSigValue.php
9 months ago
EncryptedData.php
9 months ago
EncryptedPrivateKeyInfo.php
9 months ago
ExtKeyUsageSyntax.php
9 months ago
Extension.php
9 months ago
ExtensionAttribute.php
9 months ago
ExtensionAttributes.php
9 months ago
Extensions.php
9 months ago
FieldElement.php
9 months ago
FieldID.php
9 months ago
GeneralName.php
9 months ago
GeneralNames.php
9 months ago
GeneralSubtree.php
9 months ago
GeneralSubtrees.php
9 months ago
HashAlgorithm.php
9 months ago
HoldInstructionCode.php
9 months ago
InvalidityDate.php
9 months ago
IssuerAltName.php
9 months ago
IssuingDistributionPoint.php
9 months ago
KeyIdentifier.php
9 months ago
KeyPurposeId.php
9 months ago
KeyUsage.php
9 months ago
MaskGenAlgorithm.php
9 months ago
Name.php
9 months ago
NameConstraints.php
9 months ago
NetworkAddress.php
9 months ago
NoticeReference.php
9 months ago
NumericUserIdentifier.php
9 months ago
ORAddress.php
9 months ago
OneAsymmetricKey.php
9 months ago
OrganizationName.php
9 months ago
OrganizationalUnitNames.php
9 months ago
OtherPrimeInfo.php
9 months ago
OtherPrimeInfos.php
9 months ago
PBEParameter.php
9 months ago
PBES2params.php
9 months ago
PBKDF2params.php
9 months ago
PBMAC1params.php
9 months ago
PKCS9String.php
9 months ago
Pentanomial.php
9 months ago
PersonalName.php
9 months ago
PolicyInformation.php
9 months ago
PolicyMappings.php
9 months ago
PolicyQualifierId.php
9 months ago
PolicyQualifierInfo.php
9 months ago
PostalAddress.php
9 months ago
Prime_p.php
9 months ago
PrivateDomainName.php
9 months ago
PrivateKey.php
9 months ago
PrivateKeyInfo.php
9 months ago
PrivateKeyUsagePeriod.php
9 months ago
PublicKey.php
9 months ago
PublicKeyAndChallenge.php
9 months ago
PublicKeyInfo.php
9 months ago
RC2CBCParameter.php
9 months ago
RDNSequence.php
9 months ago
RSAPrivateKey.php
9 months ago
RSAPublicKey.php
9 months ago
RSASSA_PSS_params.php
9 months ago
ReasonFlags.php
9 months ago
RelativeDistinguishedName.php
9 months ago
RevokedCertificate.php
9 months ago
SignedPublicKeyAndChallenge.php
9 months ago
SpecifiedECDomain.php
9 months ago
SubjectAltName.php
9 months ago
SubjectDirectoryAttributes.php
9 months ago
SubjectInfoAccessSyntax.php
9 months ago
SubjectPublicKeyInfo.php
9 months ago
TBSCertList.php
9 months ago
TBSCertificate.php
9 months ago
TerminalIdentifier.php
9 months ago
Time.php
9 months ago
Trinomial.php
9 months ago
UniqueIdentifier.php
9 months ago
UserNotice.php
9 months ago
Validity.php
9 months ago
index.html
9 months ago
netscape_ca_policy_url.php
9 months ago
netscape_cert_type.php
9 months ago
netscape_comment.php
9 months ago
web.config
9 months ago
PBMAC1params.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * PBMAC1params |
| 5 | * |
| 6 | * PHP version 5 |
| 7 | * |
| 8 | * @author Jim Wigginton <terrafrost@php.net> |
| 9 | * @copyright 2016 Jim Wigginton |
| 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License |
| 11 | * @link http://phpseclib.sourceforge.net |
| 12 | */ |
| 13 | |
| 14 | declare(strict_types=1); |
| 15 | |
| 16 | namespace phpseclib3\File\ASN1\Maps; |
| 17 | |
| 18 | use phpseclib3\File\ASN1; |
| 19 | |
| 20 | /** |
| 21 | * PBMAC1params |
| 22 | * |
| 23 | * from https://tools.ietf.org/html/rfc2898#appendix-A.3 |
| 24 | * |
| 25 | * @author Jim Wigginton <terrafrost@php.net> |
| 26 | */ |
| 27 | abstract class PBMAC1params |
| 28 | { |
| 29 | public const MAP = [ |
| 30 | 'type' => ASN1::TYPE_SEQUENCE, |
| 31 | 'children' => [ |
| 32 | 'keyDerivationFunc' => AlgorithmIdentifier::MAP, |
| 33 | 'messageAuthScheme' => AlgorithmIdentifier::MAP, |
| 34 | ], |
| 35 | ]; |
| 36 | } |
| 37 |