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

Python code coverage for Lib/sha.py

#countcontent
1n/a# $Id: sha.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 sha module is deprecated; use the hashlib module instead",
81 DeprecationWarning, 2)
9n/a
101from hashlib import sha1 as sha
111new = sha
12n/a
131blocksize = 1 # legacy value (wrong in any useful sense)
141digest_size = 20
151digestsize = 20