Файловый менеджер - Редактировать - /home/lmsyaran/public_html/joomla5/libraries/vendor/spomky-labs/pki-framework/src/X509/GeneralName/X400Address.php
Назад
<?php declare(strict_types=1); namespace SpomkyLabs\Pki\X509\GeneralName; use SpomkyLabs\Pki\ASN1\Type\Constructed\Sequence; use SpomkyLabs\Pki\ASN1\Type\Tagged\ImplicitlyTaggedType; use SpomkyLabs\Pki\ASN1\Type\TaggedType; use SpomkyLabs\Pki\ASN1\Type\UnspecifiedType; /** * Implements *x400Address* CHOICE type of *GeneralName*. * * Currently acts as a parking object for decoding. * * @see https://tools.ietf.org/html/rfc5280#section-4.2.1.6 * * @todo Implement ORAddress type */ final class X400Address extends GeneralName { protected function __construct( private readonly Sequence $element ) { parent::__construct(self::TAG_X400_ADDRESS); } public static function create(Sequence $element): self { return new self($element); } public static function fromChosenASN1(UnspecifiedType $el): self { return self::create($el->asSequence()); } public function string(): string { return bin2hex($this->element->toDER()); } protected function choiceASN1(): TaggedType { return ImplicitlyTaggedType::create($this->tag, $this->element); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка