Staging
v0.5.1
https://github.com/python/cpython
Revision b8a1a2707bb37eb68bc49b89d7eb00d9bb756b93 authored by Serhiy Storchaka on 02 October 2016, 08:10:18 UTC, committed by Serhiy Storchaka on 02 October 2016, 08:10:18 UTC
1 parent 78b634d
Raw File
Tip revision: b8a1a2707bb37eb68bc49b89d7eb00d9bb756b93 authored by Serhiy Storchaka on 02 October 2016, 08:10:18 UTC
Issue #27358: Backported tests.
Tip revision: b8a1a27
md5.py
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith (greg@krypto.org)
#  Licensed to PSF under a Contributor Agreement.

import warnings
warnings.warn("the md5 module is deprecated; use hashlib instead",
                DeprecationWarning, 2)

from hashlib import md5
new = md5

blocksize = 1        # legacy value (wrong in any useful sense)
digest_size = 16
back to top