Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
(Move to ...)
Home
Me
▼
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()
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment