__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of the PHPASN1 library. * * Copyright © Friedrich Große <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FG\ASN1; use FG\ASN1\Exception\ParserException; /** * The Parsable interface describes classes that can be parsed from their binary DER representation. */ interface Parsable { /** * Parse an instance of this class from its binary DER encoded representation. * * @param string $binaryData * @param int $offsetIndex the offset at which parsing of the $binaryData is started. This parameter ill be modified * to contain the offset index of the next object after this object has been parsed * * @throws ParserException if the given binary data is either invalid or not currently supported * * @return static */ public static function fromBinary(&$binaryData, &$offsetIndex = null); }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Composite | Folder | 0775 |
|
|
| Exception | Folder | 0775 |
|
|
| Universal | Folder | 0775 |
|
|
| ASNObject.php | File | 12.84 KB | 0664 |
|
| AbstractString.php | File | 3.32 KB | 0664 |
|
| AbstractTime.php | File | 2.29 KB | 0664 |
|
| Base128.php | File | 1.45 KB | 0664 |
|
| Construct.php | File | 4.62 KB | 0664 |
|
| ExplicitlyTaggedObject.php | File | 4.21 KB | 0664 |
|
| Identifier.php | File | 10.57 KB | 0664 |
|
| OID.php | File | 53.26 KB | 0664 |
|
| Parsable.php | File | 1017 B | 0664 |
|
| TemplateParser.php | File | 1.87 KB | 0664 |
|
| UnknownConstructedObject.php | File | 1.39 KB | 0664 |
|
| UnknownObject.php | File | 1.27 KB | 0664 |
|