__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace CBOR;
interface CBORObject
{
public const MAJOR_TYPE_UNSIGNED_INTEGER = 0b000;
public const MAJOR_TYPE_NEGATIVE_INTEGER = 0b001;
public const MAJOR_TYPE_BYTE_STRING = 0b010;
public const MAJOR_TYPE_TEXT_STRING = 0b011;
public const MAJOR_TYPE_LIST = 0b100;
public const MAJOR_TYPE_MAP = 0b101;
public const MAJOR_TYPE_TAG = 0b110;
public const MAJOR_TYPE_OTHER_TYPE = 0b111;
public const LENGTH_1_BYTE = 0b00011000;
public const LENGTH_2_BYTES = 0b00011001;
public const LENGTH_4_BYTES = 0b00011010;
public const LENGTH_8_BYTES = 0b00011011;
public const LENGTH_INDEFINITE = 0b00011111;
public const FUTURE_USE_1 = 0b00011100;
public const FUTURE_USE_2 = 0b00011101;
public const FUTURE_USE_3 = 0b00011110;
public const OBJECT_FALSE = 20;
public const OBJECT_TRUE = 21;
public const OBJECT_NULL = 22;
public const OBJECT_UNDEFINED = 23;
public const OBJECT_SIMPLE_VALUE = 24;
public const OBJECT_HALF_PRECISION_FLOAT = 25;
public const OBJECT_SINGLE_PRECISION_FLOAT = 26;
public const OBJECT_DOUBLE_PRECISION_FLOAT = 27;
public const OBJECT_BREAK = 0b00011111;
public const TAG_STANDARD_DATETIME = 0;
public const TAG_EPOCH_DATETIME = 1;
public const TAG_UNSIGNED_BIG_NUM = 2;
public const TAG_NEGATIVE_BIG_NUM = 3;
public const TAG_DECIMAL_FRACTION = 4;
public const TAG_BIG_FLOAT = 5;
public const TAG_ENCODED_BASE64_URL = 21;
public const TAG_ENCODED_BASE64 = 22;
public const TAG_ENCODED_BASE16 = 23;
public const TAG_ENCODED_CBOR = 24;
public const TAG_URI = 32;
public const TAG_BASE64_URL = 33;
public const TAG_BASE64 = 34;
public const TAG_MIME = 36;
public const TAG_CBOR = 55799;
public function __toString(): string;
public function getMajorType(): int;
public function getAdditionalInformation(): int;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| OtherObject | Folder | 0775 |
|
|
| Tag | Folder | 0775 |
|
|
| AbstractCBORObject.php | File | 605 B | 0664 |
|
| ByteStringObject.php | File | 1.15 KB | 0664 |
|
| CBORObject.php | File | 1.93 KB | 0664 |
|
| Decoder.php | File | 8.92 KB | 0664 |
|
| DecoderInterface.php | File | 137 B | 0664 |
|
| IndefiniteLengthByteStringObject.php | File | 1.79 KB | 0664 |
|
| IndefiniteLengthListObject.php | File | 2.95 KB | 0664 |
|
| IndefiniteLengthMapObject.php | File | 3.63 KB | 0664 |
|
| IndefiniteLengthTextStringObject.php | File | 1.79 KB | 0664 |
|
| LengthCalculator.php | File | 1.63 KB | 0664 |
|
| ListObject.php | File | 3.67 KB | 0664 |
|
| MapItem.php | File | 476 B | 0664 |
|
| MapObject.php | File | 4.66 KB | 0664 |
|
| NegativeIntegerObject.php | File | 3.2 KB | 0664 |
|
| Normalizable.php | File | 152 B | 0664 |
|
| OtherObject.php | File | 715 B | 0664 |
|
| Stream.php | File | 118 B | 0664 |
|
| StringStream.php | File | 1.97 KB | 0664 |
|
| Tag.php | File | 1.88 KB | 0664 |
|
| TextStringObject.php | File | 1.14 KB | 0664 |
|
| UnsignedIntegerObject.php | File | 3.23 KB | 0664 |
|
| Utils.php | File | 1.33 KB | 0664 |
|