Server IP : 213.176.29.180 / Your IP : 18.191.195.57 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 8.3.14 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home/webtaragh/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
PK &�-Z���- - autoload.phpnu �[��� <?php if (PHP_VERSION_ID < 70000) { if (!is_callable('sodiumCompatAutoloader')) { /** * Sodium_Compat autoloader. * * @param string $class Class name to be autoloaded. * * @return bool Stop autoloading? */ function sodiumCompatAutoloader($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; } // Now that we have an autoloader, let's register it! spl_autoload_register('sodiumCompatAutoloader'); } } else { require_once dirname(__FILE__) . '/autoload-php7.php'; } /* Explicitly, always load the Compat class: */ if (!class_exists('ParagonIE_Sodium_Compat', false)) { require_once dirname(__FILE__) . '/src/Compat.php'; } if (!class_exists('SodiumException', false)) { require_once dirname(__FILE__) . '/src/SodiumException.php'; } if (PHP_VERSION_ID >= 50300) { // Namespaces didn't exist before 5.3.0, so don't even try to use this // unless PHP >= 5.3.0 require_once dirname(__FILE__) . '/lib/namespaced.php'; require_once dirname(__FILE__) . '/lib/sodium_compat.php'; if (!defined('SODIUM_CRYPTO_AEAD_AEGIS128L_KEYBYTES')) { require_once dirname(__FILE__) . '/lib/php84compat_const.php'; } } else { require_once dirname(__FILE__) . '/src/PHP52/SplFixedArray.php'; } if (PHP_VERSION_ID < 70200 || !extension_loaded('sodium')) { if (PHP_VERSION_ID >= 50300 && !defined('SODIUM_CRYPTO_SCALARMULT_BYTES')) { require_once dirname(__FILE__) . '/lib/php72compat_const.php'; } if (PHP_VERSION_ID >= 70000) { assert(class_exists('ParagonIE_Sodium_Compat'), 'Possible filesystem/autoloader bug?'); } else { assert(class_exists('ParagonIE_Sodium_Compat')); } require_once(dirname(__FILE__) . '/lib/php72compat.php'); } elseif (!function_exists('sodium_crypto_stream_xchacha20_xor')) { // Older versions of {PHP, ext/sodium} will not define these require_once(dirname(__FILE__) . '/lib/php72compat.php'); } if (PHP_VERSION_ID < 80400 || !extension_loaded('sodium')) { require_once dirname(__FILE__) . '/lib/php84compat.php'; } require_once(dirname(__FILE__) . '/lib/stream-xchacha20.php'); require_once(dirname(__FILE__) . '/lib/ristretto255.php'); PK &�-Z� �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 &�-Z�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 &�-Z�c�LV V namespaced/Compat.phpnu �[��� <?php namespace ParagonIE\Sodium; class Compat extends \ParagonIE_Sodium_Compat { } PK &�-ZY[�yf f namespaced/Core/XChaCha20.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class XChaCha20 extends \ParagonIE_Sodium_Core_XChaCha20 { } PK &�-Z�Mtld d namespaced/Core/Poly1305.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class Poly1305 extends \ParagonIE_Sodium_Core_Poly1305 { } PK &�-Z9 ��b b namespaced/Core/Salsa20.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class Salsa20 extends \ParagonIE_Sodium_Core_Salsa20 { } PK &�-Zǀ�ؤ ؤ namespaced/Core/error_lognu �[��� [06-Jan-2025 22:29:35 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [06-Jan-2025 22:30:14 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [06-Jan-2025 22:30:47 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [06-Jan-2025 22:48:39 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [06-Jan-2025 22:48:41 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [06-Jan-2025 22:48:43 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [06-Jan-2025 22:48:52 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [06-Jan-2025 22:48:54 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [06-Jan-2025 22:48:56 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [06-Jan-2025 22:48:57 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [06-Jan-2025 22:48:59 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [06-Jan-2025 22:49:01 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [06-Jan-2025 22:49:03 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Jan-2025 13:09:35 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Jan-2025 13:09:38 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Jan-2025 13:09:41 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Jan-2025 13:09:43 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Jan-2025 13:09:44 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Jan-2025 13:09:46 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Jan-2025 13:09:50 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Jan-2025 13:09:51 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Jan-2025 13:09:53 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Jan-2025 13:09:55 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Jan-2025 13:09:56 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Jan-2025 13:09:58 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Jan-2025 13:10:00 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 00:19:10 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 00:19:14 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 00:19:18 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 00:19:19 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 00:19:22 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 00:19:23 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 00:19:27 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 00:19:29 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 00:19:31 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 00:19:32 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 00:19:34 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 00:19:36 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 00:19:38 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 00:48:08 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 00:48:13 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 00:48:16 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 00:48:18 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 00:48:20 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 00:48:22 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 00:48:26 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 00:48:27 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 00:48:29 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 00:48:31 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 00:48:33 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 00:48:35 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 00:48:37 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 03:30:28 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 03:30:40 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 03:30:53 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 03:30:58 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 03:31:04 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 03:31:10 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 03:31:22 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 03:31:27 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 03:31:30 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 03:31:35 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 03:31:42 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 03:31:46 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 03:31:51 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 10:41:13 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 10:41:18 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 10:41:22 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 10:41:25 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 10:41:28 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 10:41:30 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 10:41:35 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 10:41:36 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 10:41:38 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 10:41:41 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 10:41:43 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 10:41:46 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 10:41:49 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 15:15:58 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 15:16:03 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 15:16:10 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 15:16:12 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 15:16:14 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 15:16:18 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 15:16:22 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 15:16:24 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 15:16:26 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 15:16:28 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 15:16:31 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 15:16:35 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 15:16:39 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 17:01:52 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 17:01:56 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 17:02:00 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 17:02:01 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 17:02:03 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 17:02:05 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 17:02:08 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 17:02:10 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 17:02:12 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 17:02:13 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 17:02:15 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 17:02:17 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 17:02:18 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 18:38:28 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 18:38:32 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 18:38:36 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 18:38:38 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 18:38:40 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 18:38:42 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 18:38:46 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 18:38:47 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 18:38:50 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 18:38:52 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 18:38:54 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 18:38:56 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 18:38:58 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Jan-2025 21:08:21 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_BLAKE2b" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Jan-2025 21:08:25 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_ChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Jan-2025 21:08:28 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Curve25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Jan-2025 21:08:30 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Ed25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Jan-2025 21:08:33 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Jan-2025 21:08:35 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_HSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Jan-2025 21:08:38 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Poly1305" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Jan-2025 21:08:40 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Salsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Jan-2025 21:08:42 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_SipHash" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Jan-2025 21:08:43 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_Util" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Jan-2025 21:08:45 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_X25519" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Jan-2025 21:08:48 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XChaCha20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Jan-2025 21:08:49 UTC] PHP Fatal error: Uncaught Error: Class "ParagonIE_Sodium_Core_XSalsa20" not found in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/webtaragh/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 PK &�-Z��h h namespaced/Core/Curve25519.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class Curve25519 extends \ParagonIE_Sodium_Core_Curve25519 { } PK &�-Z� @d d namespaced/Core/ChaCha20.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class ChaCha20 extends \ParagonIE_Sodium_Core_ChaCha20 { } PK &�-Z(���l l namespaced/Core/ChaCha20/Ctx.phpnu �[��� <?php namespace ParagonIE\Sodium\Core\ChaCha20; class Ctx extends \ParagonIE_Sodium_Core_ChaCha20_Ctx { } PK &�-Z v �� � "