vote up 1 vote down star

Hi,

One of the reason I use StAX is because of it low memory consumption in processing large xml files.

I've been requested to encrypt the whole xml files, and decrypt them later.

The easier solution I can come up with, without having major change to existing code, is encrypt content only.

		xsw.writeStartElement("row");
		xsw.writeCharacters(Encrypter.encrypt("z"));
		xsw.writeEndElement();

However people still can understand the structure of the data. What if I want to encrypt everything in xml? Any Solution? Bear in mind that I am dealing with large xml file :)

Thanks.

flag

27% accept rate

1 Answer

vote up 1 vote down check

Use CipherInputStream/CipherOutputStream and pipe your StAX stream through it, IMO it'd be more efficient and secure than encrypting values only.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.