mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Quote backslash in provided DIGEST-MD5 implementation
Fixes SMACK-710.
This commit is contained in:
parent
72c7137ff1
commit
8650a07228
1 changed files with 15 additions and 1 deletions
|
@ -141,7 +141,7 @@ public class SASLDigestMD5Mechanism extends SASLMechanism {
|
|||
String responseValue = calcResponse(DigestType.ClientResponse);
|
||||
// @formatter:off
|
||||
// See RFC 2831 2.1.2 digest-response
|
||||
String saslString = "username=\"" + authenticationId + '"'
|
||||
String saslString = "username=\"" + quoteBackslash(authenticationId) + '"'
|
||||
+ ",realm=\"" + serviceName + '"'
|
||||
+ ",nonce=\"" + nonce + '"'
|
||||
+ ",cnonce=\"" + cnonce + '"'
|
||||
|
@ -216,4 +216,18 @@ public class SASLDigestMD5Mechanism extends SASLMechanism {
|
|||
return responseValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Quote the backslash in the given String. Replaces all occurrences of "\" with "\\".
|
||||
* <p>
|
||||
* According to RFC 2831 § 7.2 a quoted-string consists either of qdtext or quoted-pair. And since quoted-pair is a
|
||||
* backslash followed by a char, every backslash in qdtext must be quoted, since it otherwise would be treated as
|
||||
* qdtext.
|
||||
* </p>
|
||||
*
|
||||
* @param string the input string.
|
||||
* @return the input string where the every backslash is quoted.
|
||||
*/
|
||||
public static String quoteBackslash(String string) {
|
||||
return string.replace("\\", "\\\\");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue