Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: ec2aed66177f8d74346d85ea42841ae538725d6e authored by Martin v. Löwis on 31 January 2010, 12:38:29 UTC
Prepare for 2.5.5.
Tip revision: ec2aed6
md5.py
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith (greg@electricrain.com)
#  Licensed to PSF under a Contributor Agreement.

from hashlib import md5
new = md5

blocksize = 1        # legacy value (wrong in any useful sense)
digest_size = 16
back to top