Home
last modified time | relevance | path

Searched refs:SaslEncodingException (Results 1 – 5 of 5) sorted by relevance

/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/
H A DDigestMD5Encoder.php14 use FreeDSx\Sasl\Exception\SaslEncodingException; alias
116 * @throws SaslEncodingException
126 throw new SaslEncodingException('The digest is malformed. Expected a key, but none was found.');
130 throw new SaslEncodingException('Unexpected end of digest. Expected a value following a key.');
141 * @throws SaslEncodingException
184 throw new SaslEncodingException(sprintf(
192 throw new SaslEncodingException(sprintf(
202 throw new SaslEncodingException(sprintf('The option "%s" may occur only once.', $opt));
214 * @throws SaslEncodingException
253 throw new SaslEncodingException(sprint
[all...]
H A DCramMD5Encoder.php14 use FreeDSx\Sasl\Exception\SaslEncodingException; alias
51 * @throws SaslEncodingException
56 throw new SaslEncodingException('The server challenge message must contain a "challenge".');
64 * @throws SaslEncodingException
69 throw new SaslEncodingException('The client response must contain a username.');
72 throw new SaslEncodingException('The client response must contain a digest.');
78 throw new SaslEncodingException('The client digest must be a 16 octet, lower-case, hexadecimal value');
85 * @throws SaslEncodingException
90 throw new SaslEncodingException('The server challenge is malformed.');
97 * @throws SaslEncodingException
[all...]
H A DPlainEncoder.php14 use FreeDSx\Sasl\Exception\SaslEncodingException; alias
31 throw new SaslEncodingException('The PLAIN message must contain a authzid.');
34 throw new SaslEncodingException('The PLAIN message must contain a authzid.');
37 throw new SaslEncodingException('The PLAIN message must contain a password.');
52 throw new SaslEncodingException('The PLAIN message data is malformed.');
65 throw new SaslEncodingException('PLAIN mechanism data cannot contain a null character.');
H A DEncoderInterface.php14 use FreeDSx\Sasl\Exception\SaslEncodingException; alias
28 * @throws SaslEncodingException
35 * @throws SaslEncodingException
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Exception/
H A DSaslEncodingException.php19 class SaslEncodingException extends SaslException class