cin = new ByteArrayInputStream(decryptedContent.toByteArray());
} catch (IOException ex) {
ex.printStackTrace();
}
}
CheckedInputStream ccin = null;
try{
ccin = new CheckedInputStream(cin);
if(ccin.isEmpty()){
return null;
}
} catch(IOException ioe){
throw new XWSSecurityException(ioe);
}