|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/nandedex/www/s.nandedexpress.com/ |
PK �[�Q�1\ \ LICENSEnu �[��� ISC License
Copyright (c) 2016-2023, Paragon Initiative Enterprises <security at paragonie dot com>
Copyright (c) 2013-2019, Frank Denis <j at pureftpd dot org>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
PK �[�4�mz z autoload-php7.phpnu �[��� <?php
/*
This file should only ever be loaded on PHP 7+
*/
if (PHP_VERSION_ID < 70000) {
return;
}
spl_autoload_register(function ($class) {
$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(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file)) {
require_once $file;
return true;
}
return false;
});
PK �[�
�H H
composer.jsonnu �[��� {
"name": "paragonie/sodium_compat",
"description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
"keywords": [
"PHP",
"cryptography",
"elliptic curve",
"elliptic curve cryptography",
"Pure-PHP cryptography",
"side-channel resistant",
"Curve25519",
"X25519",
"ECDH",
"Elliptic Curve Diffie-Hellman",
"Ed25519",
"RFC 7748",
"RFC 8032",
"EdDSA",
"Edwards-curve Digital Signature Algorithm",
"ChaCha20",
"Salsa20",
"Xchacha20",
"Xsalsa20",
"Poly1305",
"BLAKE2b",
"public-key cryptography",
"secret-key cryptography",
"AEAD",
"Chapoly",
"Salpoly",
"ChaCha20-Poly1305",
"XSalsa20-Poly1305",
"XChaCha20-Poly1305",
"encryption",
"authentication",
"libsodium"
],
"license": "ISC",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "security@paragonie.com"
},
{
"name": "Frank Denis",
"email": "jedisct1@pureftpd.org"
}
],
"autoload": {
"files": ["autoload.php"]
},
"require": {
"php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8",
"paragonie/random_compat": ">=1"
},
"require-dev": {
"phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
},
"scripts": {
"test": "phpunit"
},
"suggest": {
"ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
"ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
}
}
PK �[�c�LV V namespaced/Compat.phpnu �[��� <?php
namespace ParagonIE\Sodium;
class Compat extends \ParagonIE_Sodium_Compat
{
}
PK �[�oqR R namespaced/File.phpnu �[��� <?php
namespace ParagonIE\Sodium;
class File extends \ParagonIE_Sodium_File
{
}
PK �[��z�� � namespaced/error_lognu �[��� [14-Mar-2025 15:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Compat' not found in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Compat.php:4
Stack trace:
#0 {main}
thrown in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Compat.php on line 4
[14-Mar-2025 15:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Crypto' not found in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Crypto.php:4
Stack trace:
#0 {main}
thrown in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Crypto.php on line 4
[14-Mar-2025 15:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_File' not found in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/File.php:4
Stack trace:
#0 {main}
thrown in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/File.php on line 4
[19-Jun-2025 01:00:24 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Crypto" not found in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Crypto.php:4
Stack trace:
#0 {main}
thrown in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Crypto.php on line 4
[19-Jun-2025 01:00:25 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Compat" not found in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Compat.php:4
Stack trace:
#0 {main}
thrown in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Compat.php on line 4
PK �[�Cb b namespaced/Core/BLAKE2b.phpnu �[��� <?php
namespace ParagonIE\Sodium\Core;
class BLAKE2b extends \ParagonIE_Sodium_Core_BLAKE2b
{
}
PK �[9&F?l l namespaced/Core/Curve25519/H.phpnu �[��� <?php
namespace ParagonIE\Sodium\Core\Curve25519;
class H extends \ParagonIE_Sodium_Core_Curve25519_H
{
}
PK �[��B�n n ! namespaced/Core/Curve25519/Fe.phpnu �[��� <?php
namespace ParagonIE\Sodium\Core\Curve25519;
class Fe extends \ParagonIE_Sodium_Core_Curve25519_Fe
{
}
PK �[�`�� � $ namespaced/Core/Curve25519/error_lognu �[��� [19-Jun-2025 01:00:10 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519_Fe" not found in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php:4
Stack trace:
#0 {main}
thrown in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php on line 4
[19-Jun-2025 01:00:10 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519_H" not found in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php:4
Stack trace:
#0 {main}
thrown in /home/nandedex/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php on line 4
PK �[�W�<| | ( namespaced/Core/Curve25519/Ge/Cached.phpnu �[��� <?php
namespace ParagonIE\Sodium\Core\Curve25519\Ge;
class Cached extends \ParagonIE_Sodium_Core_Curve25519_Ge_Cached
{
}
PK �[j�� � '