Skip to Content
Python: Essential Reference, Third Edition
book

Python: Essential Reference, Third Edition

by David Beazley
February 2006
Intermediate to advanced content levelIntermediate to advanced
648 pages
14h 53m
English
Sams
Content preview from Python: Essential Reference, Third Edition

md5

The md5 module implements RSA’s MD5 message-digest algorithm. MD5 takes a sequence of input text and produces a 128-bit hash value. To compute the hash value, create an md5 object using the new() function, feed data to it using the update() method, and then call the digest() method to get the hash value.

						new([string])

Returns a new md5 object. If string is present, update(string) is called.

An md5 object, m, has the following methods:

						m.update(arg)

Updates the md5 object m with the string arg.

						m.digest()

Returns the digest of all data passed to the object using the update() method and returns a 16-byte string that may contain nonprintable characters, including null bytes.

						m.hexdigest()

Returns the digest as a string of 32 hexadecimal ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python: Essential Reference

Python: Essential Reference

David M. Beazley

Publisher Resources

ISBN: 0672328623Purchase book