mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 00:59:39 +02:00
Fixes spelling (includes one API change)
Mostly benign changes. Added one new method to replace a method with a spelling mistake in its name. Kept the old method, marked as 'deprecated'.
This commit is contained in:
parent
38c6dd21b4
commit
c85bcadd81
140 changed files with 270 additions and 265 deletions
|
@ -30,7 +30,7 @@ public class SASLDigestMD5Mechanism extends SASLMechanism {
|
|||
|
||||
public static final String NAME = DIGESTMD5;
|
||||
|
||||
private static final String INITAL_NONCE = "00000001";
|
||||
private static final String INITIAL_NONCE = "00000001";
|
||||
|
||||
/**
|
||||
* The only 'qop' value supported by this implementation
|
||||
|
@ -159,7 +159,7 @@ public class SASLDigestMD5Mechanism extends SASLMechanism {
|
|||
+ ",realm=\"" + serviceName + '"'
|
||||
+ ",nonce=\"" + nonce + '"'
|
||||
+ ",cnonce=\"" + cnonce + '"'
|
||||
+ ",nc=" + INITAL_NONCE
|
||||
+ ",nc=" + INITIAL_NONCE
|
||||
+ ",qop=auth"
|
||||
+ ",digest-uri=\"" + digestUri + '"'
|
||||
+ ",response=" + responseValue
|
||||
|
@ -218,7 +218,7 @@ public class SASLDigestMD5Mechanism extends SASLMechanism {
|
|||
kd_argument.append(':');
|
||||
kd_argument.append(nonce);
|
||||
kd_argument.append(':');
|
||||
kd_argument.append(INITAL_NONCE);
|
||||
kd_argument.append(INITIAL_NONCE);
|
||||
kd_argument.append(':');
|
||||
kd_argument.append(cnonce);
|
||||
kd_argument.append(':');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue