Home
last modified time | relevance | path

Searched refs:SaslException (Results 1 – 19 of 19) sorted by relevance

/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Factory/
H A DDigestMD5MessageFactory.php15 use FreeDSx\Sasl\Exception\SaslException; alias
72 throw new SaslException(
98 throw new SaslException('The server response must include the rspauth value.');
105 * @throws SaslException
128 * @throws SaslException
133 throw new SaslException('If you do not supply a digest-uri, you must specify a service.');
158 * @throws SaslException
175 throw new SaslException(sprintf(
202 throw new SaslException('There are no available ciphers for auth-conf.');
209 * @throws SaslException
[all...]
H A DNonceTrait.php15 use FreeDSx\Sasl\Exception\SaslException; alias
31 * @throws SaslException
38 throw new SaslException(sprintf(
H A DMessageFactoryInterface.php14 use FreeDSx\Sasl\Exception\SaslException; alias
31 * @throws SaslException
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Security/
H A DDigestMD5SecurityLayer.php14 use FreeDSx\Sasl\Exception\SaslException; alias
82 throw new SaslException(sprintf('The qop option "%s" is not recognized as a security layer.', $qop));
103 throw new SaslException(sprintf('The qop option "%s" is not recognized as a security layer.', $qop));
111 * @throws SaslException
117 throw new SaslException('The data to decrypt must be at least 16 bytes.');
122 throw new SaslException(sprintf(
129 throw new SaslException(sprintf(
148 throw new SaslException('Failed the decrypt the message.');
161 throw new SaslException('The received MAC does not match the expected MAC.');
170 * @throws SaslException
[all...]
H A DSecurityLayerInterface.php14 use FreeDSx\Sasl\Exception\SaslException; alias
28 * @throws SaslException
35 * @throws SaslException
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/
H A DMechanismSelector.php14 use FreeDSx\Sasl\Exception\SaslException; alias
38 * @throws SaslException
63 * @throws SaslException
87 throw new SaslException('No supported SASL mechanisms could be found.');
97 * @throws SaslException
168 * @throws SaslException
172 throw new SaslException(sprintf(
H A DSaslBuffer.php15 use FreeDSx\Sasl\Exception\SaslException; alias
37 * @throws SaslException
48 throw new SaslException('The buffer length exceeds the maximum allowed.');
H A DSasl.php14 use FreeDSx\Sasl\Exception\SaslException; alias
51 throw new SaslException('The mechanism "%s" is not supported.');
97 * @throws SaslException if no supported mechanism could be found.
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/
H A DCramMD5Challenge.php16 use FreeDSx\Sasl\Exception\SaslException; alias
82 throw new SaslException('Expected a server challenge to generate a client response.');
85 throw new SaslException('A username and password is required for a client response.');
98 throw new SaslException('The client response must have a username.');
101 throw new SaslException('The client response must have a digest.');
104 throw new SaslException('To validate the client response you must supply the password option.');
111 throw new SaslException('The password option must be callable. It will be passed the username and challenge');
H A DPlainChallenge.php15 use FreeDSx\Sasl\Exception\SaslException; alias
63 throw new SaslException('You must pass a callable validate option to the plain mechanism in server mode.');
78 throw new SaslException('You must supply a username for the PLAIN mechanism.');
81 throw new SaslException('You must supply a password for the PLAIN mechanism.');
H A DChallengeInterface.php14 use FreeDSx\Sasl\Exception\SaslException; alias
32 * @throws SaslException
H A DDigestMD5Challenge.php15 use FreeDSx\Sasl\Exception\SaslException; alias
85 * @throws SaslException
97 throw new SaslException('The rspauth value was received before the response was generated.');
133 * @throws SaslException
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Mechanism/
H A DDigestMD5Mechanism.php16 use FreeDSx\Sasl\Exception\SaslException; alias
98 * @throws SaslException
113 throw new SaslException('The qop directive must be one of: auth, auth-conf, auth-int.');
H A DCramMD5Mechanism.php16 use FreeDSx\Sasl\Exception\SaslException; alias
64 throw new SaslException('CRAM-MD5 does not support a security layer.');
H A DPlainMechanism.php16 use FreeDSx\Sasl\Exception\SaslException; alias
64 throw new SaslException('The PLAIN mechanism does not support a security layer.');
H A DAnonymousMechanism.php16 use FreeDSx\Sasl\Exception\SaslException; alias
64 throw new SaslException('The ANONYMOUS mechanism does not support a security layer.');
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Exception/
H A DSaslEncodingException.php19 class SaslEncodingException extends SaslException
H A DSaslBufferException.php19 class SaslBufferException extends SaslException
H A DSaslException.php19 class SaslException extends \Exception class