Staging
v0.5.1
https://github.com/python/cpython
Revision f6856cef8e674ac26b1574b70f65360867089e00 authored by Andrew M. Kuchling on 20 June 2006, 11:52:16 UTC, committed by Andrew M. Kuchling on 20 June 2006, 11:52:16 UTC
1 parent f505e7f
Raw File
Tip revision: f6856cef8e674ac26b1574b70f65360867089e00 authored by Andrew M. Kuchling on 20 June 2006, 11:52:16 UTC
Uncomment wsgiref section
Tip revision: f6856ce
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