ยปCore Development>Code coverage>Lib/md5.py

Python code coverage for Lib/md5.py

#countcontent
1n/a# $Id: md5.py 58064 2007-09-09 20:25:00Z gregory.p.smith $
2n/a#
3n/a# Copyright (C) 2005 Gregory P. Smith (greg@krypto.org)
4n/a# Licensed to PSF under a Contributor Agreement.
5n/a
61import warnings
71warnings.warn("the md5 module is deprecated; use hashlib instead",
81 DeprecationWarning, 2)
9n/a
101from hashlib import md5
111new = md5
12n/a
131blocksize = 1 # legacy value (wrong in any useful sense)
141digest_size = 16