Staging
v0.5.1
https://github.com/python/cpython
Revision 3c134a20465d6fe37ab8210d4bb35716a5dcfff7 authored by George Yoshida on 22 April 2006, 15:10:49 UTC, committed by George Yoshida on 22 April 2006, 15:10:49 UTC
1 parent 6685128
Raw File
Tip revision: 3c134a20465d6fe37ab8210d4bb35716a5dcfff7 authored by George Yoshida on 22 April 2006, 15:10:49 UTC
Typo fixes
Tip revision: 3c134a2
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