2005-08-21 15:45:59 -03:00
|
|
|
# $Id$
|
|
|
|
#
|
2007-09-09 17:25:00 -03:00
|
|
|
# Copyright (C) 2005 Gregory P. Smith (greg@krypto.org)
|
2005-08-21 15:45:59 -03:00
|
|
|
# Licensed to PSF under a Contributor Agreement.
|
|
|
|
|
2007-05-30 19:24:28 -03:00
|
|
|
import warnings
|
|
|
|
warnings.warn("the md5 module is deprecated; use hashlib instead",
|
|
|
|
DeprecationWarning, 2)
|
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
from hashlib import md5
|
|
|
|
new = md5
|
|
|
|
|
|
|
|
blocksize = 1 # legacy value (wrong in any useful sense)
|
|
|
|
digest_size = 16
|