GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Monday, March 21, 2011

Python - MD5

This is the most simple library to use:
>>> import md5
>>> m = md5.new()
>>> m.update('The text')
>>> m.update('You supply')
>>> digested = m.digest()

Share/Bookmark

No comments:

Post a Comment