webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
ramsey
/
uuid
/
src
/
Rfc4122
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Fields.php
5.822KB
edt
ren
FieldsInterface.php
3.784KB
edt
ren
MaxTrait.php
1.019KB
edt
ren
MaxUuid.php
0.561KB
edt
ren
NilTrait.php
0.94KB
edt
ren
NilUuid.php
0.562KB
edt
ren
TimeTrait.php
1.388KB
edt
ren
UuidBuilder.php
4.464KB
edt
ren
UuidInterface.php
0.671KB
edt
ren
UuidV1.php
1.957KB
edt
ren
UuidV2.php
4.195KB
edt
ren
UuidV3.php
1.957KB
edt
ren
UuidV4.php
1.879KB
edt
ren
UuidV5.php
1.962KB
edt
ren
UuidV6.php
0.763KB
edt
ren
UuidV7.php
2.058KB
edt
ren
UuidV8.php
2.286KB
edt
ren
Validator.php
1.397KB
edt
ren
VariantTrait.php
2.617KB
edt
ren
VersionTrait.php
1.483KB
edt
ren
<?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\Rfc4122; use Ramsey\Uuid\Uuid; /** * Provides common functionality for handling the version, as defined by RFC 4122 * * @psalm-immutable */ trait VersionTrait { /** * Returns the version */ abstract public function getVersion(): ?int; /** * Returns true if these fields represent a max UUID */ abstract public function isMax(): bool; /** * Returns true if these fields represent a nil UUID */ abstract public function isNil(): bool; /** * Returns true if the version matches one of those defined by RFC 4122 * * @return bool True if the UUID version is valid, false otherwise */ private function isCorrectVersion(): bool { if ($this->isNil() || $this->isMax()) { return true; } return match ($this->getVersion()) { Uuid::UUID_TYPE_TIME, Uuid::UUID_TYPE_DCE_SECURITY, Uuid::UUID_TYPE_HASH_MD5, Uuid::UUID_TYPE_RANDOM, Uuid::UUID_TYPE_HASH_SHA1, Uuid::UUID_TYPE_REORDERED_TIME, Uuid::UUID_TYPE_UNIX_TIME, Uuid::UUID_TYPE_CUSTOM => true, default => false, }; } }
<=Back
Liking