if (currentDecodeType.equals("b64")) {
content = new String(content.getBytes(),"UTF-8");
content = new String (Base64.decode(content));
}
else if (currentDecodeType.equals("des")) {
desCrypto = new Sync4jDesCrypto(Base64.encode(login.getBytes()));
String decryptedData = null;
decryptedData = desCrypto.decryptData(content.getBytes());
if (decryptedData != null) {
content = decryptedData;