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/
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(sprintf(
[all …]
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 val…
85 * @throws SaslEncodingException
90 throw new SaslEncodingException('The server challenge is malformed.');
97 * @throws SaslEncodingException
[all …]
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.');
DEncoderInterface.php14 use FreeDSx\Sasl\Exception\SaslEncodingException; alias
28 * @throws SaslEncodingException
35 * @throws SaslEncodingException
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Exception/
DSaslEncodingException.php19 class SaslEncodingException extends SaslException class