byte[] after = Crypto.decryptAES(data, secretKey);
ByteArrayInputStream input = new ByteArrayInputStream(after);
result = Abdera.getInstance().getParser().parse(input).getRoot();
} catch (Exception e) {
log.error("Error while decrypting: ", e);
throw new SecurityException(e);
}
return result;
}