Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
platform360
/
vendor
/
spomky-labs
/
pki-framework
/
src
/
X501
/
ASN1
/
Collection
/
File Content:
SequenceOfAttributes.php
<?php declare (strict_types=1); namespace Platform360\SpomkyLabs\Pki\X501\ASN1\Collection; use Platform360\SpomkyLabs\Pki\ASN1\Type\Constructed\Sequence; use Platform360\SpomkyLabs\Pki\X501\ASN1\Attribute; use Platform360\SpomkyLabs\Pki\X501\ASN1\AttributeValue\AttributeValue; /** * Implements *Attributes* ASN.1 type as a *SEQUENCE OF Attribute*. * * Used in *AttributeCertificateInfo*. * * @see https://tools.ietf.org/html/rfc5755#section-4.1 * @see https://tools.ietf.org/html/rfc5755#section-4.2.7 */ class SequenceOfAttributes extends AttributeCollection { /** * Initialize from ASN.1. */ public static function fromASN1(Sequence $seq) : self { return static::_fromASN1Structure($seq); } /** * Initialize from attribute values. * * @param AttributeValue ...$values List of attribute values */ public static function fromAttributeValues(AttributeValue ...$values) : static { return static::create(...\array_map(static fn(AttributeValue $value) => $value->toAttribute(), $values)); } /** * Generate ASN.1 structure. */ public function toASN1() : Sequence { return Sequence::create(...\array_map(static fn(Attribute $attr) => $attr->toASN1(), $this->_attributes)); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
AttributeCollection.php
4627 bytes
0644
SequenceOfAttributes.php
1293 bytes
0644
SetOfAttributes.php
1318 bytes
0644
N4ST4R_ID | Naxtarrr