Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: e7abfd7cefc4e737eef3a4b8c2b26fec3c97fac0 authored by Martin v. Löwis on 24 January 2010, 14:24:46 UTC
Prepare for 2.5.5c2.
Tip revision: e7abfd7
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