Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
platform360
/
vendor
/
spomky-labs
/
pki-framework
/
src
/
ASN1
/
Feature
/
File Content:
ElementBase.php
<?php declare (strict_types=1); namespace Platform360\SpomkyLabs\Pki\ASN1\Feature; use Platform360\SpomkyLabs\Pki\ASN1\Element; use Platform360\SpomkyLabs\Pki\ASN1\Type\TaggedType; use Platform360\SpomkyLabs\Pki\ASN1\Type\UnspecifiedType; /** * Base interface for ASN.1 type elements. */ interface ElementBase extends Encodable { /** * Get the class of the ASN.1 type. * * One of `Identifier::CLASS_*` constants. */ public function typeClass() : int; /** * Check whether the element is constructed. * * Otherwise it's primitive. */ public function isConstructed() : bool; /** * Get the tag of the element. * * Interpretation of the tag depends on the context. For example, it may represent a universal type tag or a tag of * an implicitly or explicitly tagged type. */ public function tag() : int; /** * Check whether the element is a type of given tag. * * @param int $tag Type tag */ public function isType(int $tag) : bool; /** * Check whether the element is a type of a given tag. * * Throws an exception if expectation fails. * * @param int $tag Type tag */ public function expectType(int $tag) : self; /** * Check whether the element is tagged (context specific). */ public function isTagged() : bool; /** * Check whether the element is tagged (context specific) and optionally has a given tag. * * Throws an exception if the element is not tagged or tag differs from the expected. * * @param null|int $tag Optional type tag */ public function expectTagged(?int $tag = null) : TaggedType; /** * Get the object as an abstract `Element` instance. */ public function asElement() : Element; /** * Get the object as an `UnspecifiedType` instance. */ public function asUnspecified() : UnspecifiedType; }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
ElementBase.php
1955 bytes
0644
Encodable.php
253 bytes
0644
Stringable.php
368 bytes
0644
N4ST4R_ID | Naxtarrr