| Current Path : /home/helpink/www/libraries/vendor/spomky-labs/pki-framework/src/X509/GeneralName/ |
| Current File : /home/helpink/www/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);
}
}