This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Ye.Yuan
Recipients Ye.Yuan
Date 2012-09-27.04:37:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348720627.28.0.14858065839.issue16059@psf.upfronthosting.co.za>
In-reply-to
Content
Serialize/deserialize md5 context. Pseudocode:

import md5
# Start hash generation
m = md5.new()
m.update("Content")

# Serialize m
serialized_m = serialize(m)

# In another function/machine, deserialize m
# and continue hash generation
m2 = deserialize(serialized_m)
m2.update("More content")
m2.digest() 

There are C++ lib but no Python one.
History
Date User Action Args
2012-09-27 04:37:07Ye.Yuansetrecipients: + Ye.Yuan
2012-09-27 04:37:07Ye.Yuansetmessageid: <1348720627.28.0.14858065839.issue16059@psf.upfronthosting.co.za>
2012-09-27 04:37:06Ye.Yuanlinkissue16059 messages
2012-09-27 04:37:06Ye.Yuancreate