Staging
v0.8.1
https://github.com/python/cpython
Revision a859e25acb825665d9380b1142893cad61a648a0 authored by Martin v. Löwis on 14 February 2008, 12:33:15 UTC, committed by Martin v. Löwis on 14 February 2008, 12:33:15 UTC
1 parent 73c01d4
Raw File
Tip revision: a859e25acb825665d9380b1142893cad61a648a0 authored by Martin v. Löwis on 14 February 2008, 12:33:15 UTC
Preparing for 2.5.2c1.
Tip revision: a859e25
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