init web ems all
This commit is contained in:
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/IncompatibleWithGoogleAuthenticatorException.php
vendored
Executable file
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/IncompatibleWithGoogleAuthenticatorException.php
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace PragmaRX\Google2FA\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class IncompatibleWithGoogleAuthenticatorException extends Exception
|
||||
{
|
||||
protected $message = 'This secret key is not compatible with Google Authenticator.';
|
||||
}
|
||||
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/InsecureCallException.php
vendored
Executable file
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/InsecureCallException.php
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace PragmaRX\Google2FA\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class InsecureCallException extends Exception
|
||||
{
|
||||
protected $message = 'It\'s not secure to send secret keys to Google Apis, you have to explicitly allow it by calling $google2fa->setAllowInsecureCallToGoogleApis(true).';
|
||||
}
|
||||
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/InvalidCharactersException.php
vendored
Executable file
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/InvalidCharactersException.php
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace PragmaRX\Google2FA\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class InvalidCharactersException extends Exception
|
||||
{
|
||||
protected $message = 'Invalid characters in the base32 string.';
|
||||
}
|
||||
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/SecretKeyTooShortException.php
vendored
Executable file
10
phpMyAdmin/vendor/pragmarx/google2fa/src/Exceptions/SecretKeyTooShortException.php
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace PragmaRX\Google2FA\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class SecretKeyTooShortException extends Exception
|
||||
{
|
||||
protected $message = 'Secret key is too short. Must be at least 16 base32 characters';
|
||||
}
|
||||
Reference in New Issue
Block a user