List of utility methods to do String Encrypt
String | encryptURL(String url) encrypt URL if (url != null) { StringBuffer msg = new StringBuffer(); String[] urlStrs = url.split(";"); msg.append(urlStrs[0]); for (int i = 1; i < urlStrs.length; i++) { String[] props = urlStrs[i].split("="); if (props.length == 2) { if (props[0].toLowerCase().indexOf("password") >= 0 ... |