Staging
v0.8.1
Revision 4ed35fc4f31ebbdb25ba5e1291de77f4095c33d0 authored by Martin Panter on 10 October 2015, 10:52:35 UTC, committed by Martin Panter on 10 October 2015, 10:52:35 UTC
1 parent dab305e
Raw File
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