Staging
v0.5.1
https://github.com/python/cpython
Revision b550b000bb089a8cf036a3b144439571d1e462e0 authored by Georg Brandl on 03 July 2010, 08:40:13 UTC, committed by Georg Brandl on 03 July 2010, 08:40:13 UTC
1 parent 9d8d2a4
Raw File
Tip revision: b550b000bb089a8cf036a3b144439571d1e462e0 authored by Georg Brandl on 03 July 2010, 08:40:13 UTC
Fix role name.
Tip revision: b550b00
sha.py
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith (greg@krypto.org)
#  Licensed to PSF under a Contributor Agreement.

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

from hashlib import sha1 as sha
new = sha

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