If I were to use Storable or data dumper to splurt out the contents of an object/datastructure, how can I check the validity of the stored objects in a simple and reliable way.
I thought about a checksum, but I'm pretty sure that's not a cross platform solution, because of CR/LF issues that would cause the checksums to differ. Storable dumps a binary file, but how can I be sure the objects are the same given the same data set. Won't the unordered way hashes are internally represented potentially differ from NT to UNIX, or even from machine to machine?