Staging
v0.5.1
https://github.com/python/cpython
Revision e5b9bff214584fa088cdf616f96d44eec69dd743 authored by Martin v. Löwis on 31 October 2011, 11:38:50 UTC, committed by Martin v. Löwis on 31 October 2011, 11:38:50 UTC
1 parent 228516c
Raw File
Tip revision: e5b9bff214584fa088cdf616f96d44eec69dd743 authored by Martin v. Löwis on 31 October 2011, 11:38:50 UTC
2.5 is no longer maintained
Tip revision: e5b9bff
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