1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-14 23:54:49 +02:00

Smack now escapes passwords.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@3470 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro 2006-02-16 20:07:18 +00:00 committed by derek
parent 4c45715780
commit 665bf172f7

View file

@ -38,7 +38,7 @@ public class Authentication extends IQ {
* "set" mode in order to perform an actual authentication with the server. * "set" mode in order to perform an actual authentication with the server.
* In order to send a "get" request to get the available authentication * In order to send a "get" request to get the available authentication
* modes back from the server, change the type of the IQ packet to "get": * modes back from the server, change the type of the IQ packet to "get":
* * <p/>
* <p><tt>setType(IQ.Type.GET);</tt> * <p><tt>setType(IQ.Type.GET);</tt>
*/ */
public Authentication() { public Authentication() {
@ -169,7 +169,7 @@ public class Authentication extends IQ {
buf.append("<password/>"); buf.append("<password/>");
} }
else { else {
buf.append("<password>").append(password).append("</password>"); buf.append("<password>").append(StringUtils.escapeForXML(password)).append("</password>");
} }
} }
if (resource != null) { if (resource != null) {