Thursday, March 12, 2009

Does object serialization support encryption? (CoreJava)

Question :Does object serialization support encryption? (CoreJava)
Answer :Object serialization does not contain any encryption/decryption in itself. It
writes to and reads from Java Streams, so it can be coupled with any
available encryption technology. Object serialization can be used in many
different ways from simple persistence, writing and read to/from files, or
for RMI to communicate across hosts.

No comments: