Файловый менеджер - Редактировать - /home/topsuzmw/public_html/wp-includes/private/sodium_compat.zip
Назад
PK �L�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 �L�Z�oqR R namespaced/File.phpnu �[��� <?php namespace ParagonIE\Sodium; class File extends \ParagonIE_Sodium_File { } PK �L�Z�c�LV V namespaced/Compat.phpnu �[��� <?php namespace ParagonIE\Sodium; class Compat extends \ParagonIE_Sodium_Compat { } PK �L�Zr��V V namespaced/Crypto.phpnu �[��� <?php namespace ParagonIE\Sodium; class Crypto extends \ParagonIE_Sodium_Crypto { } PK �L�ZWͤAd d namespaced/Core/Xsalsa20.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class Xsalsa20 extends \ParagonIE_Sodium_Core_XSalsa20 { } PK �L�Z� @d d namespaced/Core/ChaCha20.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class ChaCha20 extends \ParagonIE_Sodium_Core_ChaCha20 { } PK �L�Z�Mtld d namespaced/Core/Poly1305.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class Poly1305 extends \ParagonIE_Sodium_Core_Poly1305 { } PK �L�Z(���l l namespaced/Core/ChaCha20/Ctx.phpnu �[��� <?php namespace ParagonIE\Sodium\Core\ChaCha20; class Ctx extends \ParagonIE_Sodium_Core_ChaCha20_Ctx { } PK �L�ZC4�Ht t $ namespaced/Core/ChaCha20/IetfCtx.phpnu �[��� <?php namespace ParagonIE\Sodium\Core\ChaCha20; class IetfCtx extends \ParagonIE_Sodium_Core_ChaCha20_IetfCtx { } PK �L�Z9 ��b b namespaced/Core/Salsa20.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class Salsa20 extends \ParagonIE_Sodium_Core_Salsa20 { } PK �L�Z��m\ \ namespaced/Core/Util.phpnu �[��� <?php namespace ParagonIE\Sodium\Core; class Util extends \ParagonIE_Sodium_Core_Util { } PK �L�Z�ډPp p "