mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Use java.text.Normalizer for SASLPrep
This commit is contained in:
parent
72de6540b2
commit
a22ec4b112
2 changed files with 5 additions and 46 deletions
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Copyright 2003-2007 Jive Software, 2014-2016 Florian Schmaus
|
* Copyright 2003-2007 Jive Software, 2014-2018 Florian Schmaus
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -16,6 +16,9 @@
|
||||||
*/
|
*/
|
||||||
package org.jivesoftware.smack.sasl;
|
package org.jivesoftware.smack.sasl;
|
||||||
|
|
||||||
|
import java.text.Normalizer;
|
||||||
|
import java.text.Normalizer.Form;
|
||||||
|
|
||||||
import javax.net.ssl.SSLSession;
|
import javax.net.ssl.SSLSession;
|
||||||
import javax.security.auth.callback.CallbackHandler;
|
import javax.security.auth.callback.CallbackHandler;
|
||||||
|
|
||||||
|
@ -25,7 +28,6 @@ import org.jivesoftware.smack.SmackException.NotConnectedException;
|
||||||
import org.jivesoftware.smack.XMPPConnection;
|
import org.jivesoftware.smack.XMPPConnection;
|
||||||
import org.jivesoftware.smack.sasl.packet.SaslStreamElements.AuthMechanism;
|
import org.jivesoftware.smack.sasl.packet.SaslStreamElements.AuthMechanism;
|
||||||
import org.jivesoftware.smack.sasl.packet.SaslStreamElements.Response;
|
import org.jivesoftware.smack.sasl.packet.SaslStreamElements.Response;
|
||||||
import org.jivesoftware.smack.util.StringTransformer;
|
|
||||||
import org.jivesoftware.smack.util.StringUtils;
|
import org.jivesoftware.smack.util.StringUtils;
|
||||||
import org.jivesoftware.smack.util.stringencoder.Base64;
|
import org.jivesoftware.smack.util.stringencoder.Base64;
|
||||||
|
|
||||||
|
@ -54,22 +56,6 @@ public abstract class SASLMechanism implements Comparable<SASLMechanism> {
|
||||||
public static final String GSSAPI = "GSSAPI";
|
public static final String GSSAPI = "GSSAPI";
|
||||||
public static final String PLAIN = "PLAIN";
|
public static final String PLAIN = "PLAIN";
|
||||||
|
|
||||||
// TODO Remove once Smack's min Android API is 9, where java.text.Normalizer is available
|
|
||||||
private static StringTransformer saslPrepTransformer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the SASLPrep StringTransformer.
|
|
||||||
* <p>
|
|
||||||
* A simple SASLPrep StringTransformer would be for example: <code>java.text.Normalizer.normalize(string, Form.NFKC);</code>
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @param stringTransformer set StringTransformer to use for SASLPrep.
|
|
||||||
* @see <a href="http://tools.ietf.org/html/rfc4013">RFC 4013 - SASLprep: Stringprep Profile for User Names and Passwords</a>
|
|
||||||
*/
|
|
||||||
public static void setSaslPrepTransformer(StringTransformer stringTransformer) {
|
|
||||||
saslPrepTransformer = stringTransformer;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected XMPPConnection connection;
|
protected XMPPConnection connection;
|
||||||
|
|
||||||
protected ConnectionConfiguration connectionConfiguration;
|
protected ConnectionConfiguration connectionConfiguration;
|
||||||
|
@ -319,11 +305,7 @@ public abstract class SASLMechanism implements Comparable<SASLMechanism> {
|
||||||
* @see <a href="http://tools.ietf.org/html/rfc4013">RFC 4013 - SASLprep: Stringprep Profile for User Names and Passwords</a>
|
* @see <a href="http://tools.ietf.org/html/rfc4013">RFC 4013 - SASLprep: Stringprep Profile for User Names and Passwords</a>
|
||||||
*/
|
*/
|
||||||
protected static String saslPrep(String string) {
|
protected static String saslPrep(String string) {
|
||||||
StringTransformer stringTransformer = saslPrepTransformer;
|
return Normalizer.normalize(string, Form.NFKC);
|
||||||
if (stringTransformer != null) {
|
|
||||||
return stringTransformer.transform(string);
|
|
||||||
}
|
|
||||||
return string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
/**
|
|
||||||
*
|
|
||||||
* Copyright 2014 Florian Schmaus
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
package org.jivesoftware.smack.util;
|
|
||||||
|
|
||||||
public interface StringTransformer {
|
|
||||||
|
|
||||||
String transform(String string);
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue