mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-04-03 21:22:05 +02:00
Move toBytes() into SASLMechanism
as it's a often needed transformation in the SASL world.
This commit is contained in:
parent
da7f4495dc
commit
47a59ad7b3
2 changed files with 4 additions and 3 deletions
smack-core/src/main/java/org/jivesoftware/smack/sasl
smack-sasl-provided/src/main/java/org/jivesoftware/smack/sasl/provided
|
@ -244,4 +244,8 @@ public abstract class SASLMechanism implements Comparable<SASLMechanism> {
|
|||
}
|
||||
|
||||
protected abstract SASLMechanism newInstance();
|
||||
|
||||
protected static byte[] toBytes(String string) {
|
||||
return StringUtils.toBytes(string);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -200,7 +200,4 @@ public class SASLDigestMD5Mechanism extends SASLMechanism {
|
|||
return responseValue;
|
||||
}
|
||||
|
||||
private static byte[] toBytes(String string) {
|
||||
return StringUtils.toBytes(string);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue