1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-18 19:21:35 +01:00

Start again

This commit is contained in:
2020-10-04 17:14:00 +02:00
parent c0d3912413
commit 091f119048
4382 changed files with 1762543 additions and 9606 deletions

View File

@@ -0,0 +1,25 @@
<?php
/**
* Bootstrapping File for phpseclib
*
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
if (extension_loaded('mbstring')) {
// 2 - MB_OVERLOAD_STRING
if (ini_get('mbstring.func_overload') & 2) {
throw new \UnexpectedValueException(
'Overloading of string functions using mbstring.func_overload ' .
'is not supported by phpseclib.'
);
}
}
require_once dirname(__FILE__).'/Net/SSH2.php';
//require_once "lib/phpseclib-2.0/phpseclib/Crypt/AES.php";
require_once dirname(__FILE__).'/Math/BigInteger.php';
require_once dirname(__FILE__).'/Crypt/Base.php';
require_once dirname(__FILE__).'/Crypt/Hash.php';
require_once dirname(__FILE__).'/Crypt/Random.php';
require_once dirname(__FILE__).'/Crypt/Rijndael.php';
require_once dirname(__FILE__).'/Crypt/RSA.php';