├── .gitignore ├── README.md ├── changelog.txt ├── cpaneluapi.class.php ├── examples └── mysql.php ├── license.txt └── otphp ├── LICENCE ├── README.markdown ├── lib ├── hotp.php ├── otp.php ├── otphp.php └── totp.php ├── tests ├── HOTPTest.php ├── OTPTest.php ├── TOTPTest.php └── TestTest.php └── vendor ├── base32.php └── libs.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/changelog.txt -------------------------------------------------------------------------------- /cpaneluapi.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/cpaneluapi.class.php -------------------------------------------------------------------------------- /examples/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/examples/mysql.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/license.txt -------------------------------------------------------------------------------- /otphp/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/LICENCE -------------------------------------------------------------------------------- /otphp/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/README.markdown -------------------------------------------------------------------------------- /otphp/lib/hotp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/lib/hotp.php -------------------------------------------------------------------------------- /otphp/lib/otp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/lib/otp.php -------------------------------------------------------------------------------- /otphp/lib/otphp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/lib/otphp.php -------------------------------------------------------------------------------- /otphp/lib/totp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/lib/totp.php -------------------------------------------------------------------------------- /otphp/tests/HOTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/tests/HOTPTest.php -------------------------------------------------------------------------------- /otphp/tests/OTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/tests/OTPTest.php -------------------------------------------------------------------------------- /otphp/tests/TOTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/tests/TOTPTest.php -------------------------------------------------------------------------------- /otphp/tests/TestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/tests/TestTest.php -------------------------------------------------------------------------------- /otphp/vendor/base32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/vendor/base32.php -------------------------------------------------------------------------------- /otphp/vendor/libs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N1ghteyes/cpanel-UAPI-php-class/HEAD/otphp/vendor/libs.php --------------------------------------------------------------------------------