home
/
zktecojo
/
public_html
/
vendor
/
phpseclib
/
phpseclib
/
tests
➕ New
📤 Upload
✎ Editing:
bootstrap.php
← Back
<?php /** * Bootstrapping File for phpseclib Test Suite * * @license http://www.opensource.org/licenses/mit-license.html MIT License */ date_default_timezone_set('UTC'); // Set up include path accordingly. This is especially required because some // class files of phpseclib require() other dependencies. set_include_path(implode(PATH_SEPARATOR, array( dirname(__FILE__) . '/../phpseclib/', dirname(__FILE__) . '/', get_include_path(), ))); require_once 'Crypt/Random.php'; function phpseclib_autoload($class) { $file = str_replace('_', '/', $class) . '.php'; if (phpseclib_resolve_include_path($file)) { // @codingStandardsIgnoreStart require $file; // @codingStandardsIgnoreEnd } } spl_autoload_register('phpseclib_autoload');
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel