Advertisement
rfmonk

hashlib_md5.py

Jan 30th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. #1/usr/bin/env python
  2.  
  3. # this is from The Python
  4. # Standard Library by example
  5. # ISBN13: 9780321767349
  6.  
  7. import hashlib
  8. from hashlib_data import lorem
  9.  
  10. h = hashlib.md5()
  11. h.update(lorem)
  12. print h.hexdigest()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement