Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
ramsey /
uuid /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Builder
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Codec
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Converter
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Exception
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Fields
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Generator
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Guid
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Lazy
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Math
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Nonstandard
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Provider
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Rfc4122
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Type
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
Validator
[ DIR ]
drwxr-xr-x
2025-09-04 20:59
BinaryUtils.php
1.53
KB
-rw-r--r--
2025-09-04 20:59
DegradedUuid.php
589
B
-rw-r--r--
2025-09-04 20:59
DeprecatedUuidInterface.php
4.89
KB
-rw-r--r--
2025-09-04 20:59
DeprecatedUuidMethodsTrait.php
13.01
KB
-rw-r--r--
2025-09-04 20:59
FeatureSet.php
12.06
KB
-rw-r--r--
2025-09-04 20:59
Uuid.php
23.93
KB
-rw-r--r--
2025-09-04 20:59
UuidFactory.php
14.97
KB
-rw-r--r--
2025-09-04 20:59
UuidFactoryInterface.php
5.71
KB
-rw-r--r--
2025-09-04 20:59
UuidInterface.php
3.1
KB
-rw-r--r--
2025-09-04 20:59
functions.php
4.61
KB
-rw-r--r--
2025-09-04 20:59
Save
Rename
<?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid; /** * Provides binary math utilities */ class BinaryUtils { /** * Applies the variant field to the 16-bit clock sequence * * @link https://www.rfc-editor.org/rfc/rfc9562#section-4.1 RFC 9562, 4.1. Variant Field * * @param int $clockSeq The 16-bit clock sequence value before the variant is applied * * @return int The 16-bit clock sequence multiplexed with the UUID variant * * @pure */ public static function applyVariant(int $clockSeq): int { return ($clockSeq & 0x3fff) | 0x8000; } /** * Applies the version field to the 16-bit `time_hi_and_version` field * * @link https://www.rfc-editor.org/rfc/rfc9562#section-4.2 RFC 9562, 4.2. Version Field * * @param int $timeHi The value of the 16-bit `time_hi_and_version` field before the version is applied * @param int $version The version to apply to the `time_hi` field * * @return int The 16-bit time_hi field of the timestamp multiplexed with the UUID version number * * @pure */ public static function applyVersion(int $timeHi, int $version): int { return ($timeHi & 0x0fff) | ($version << 12); } }