Staging
v0.5.1
https://github.com/python/cpython
Revision 4ca9d48a04e79f76ab9850371b9465da1268371c authored by Martin v. Löwis on 28 May 2011, 12:00:37 UTC, committed by Martin v. Löwis on 28 May 2011, 12:00:37 UTC
1 parent 11a859d
Raw File
Tip revision: 4ca9d48a04e79f76ab9850371b9465da1268371c authored by Martin v. Löwis on 28 May 2011, 12:00:37 UTC
Added tag v2.5.6 for changeset de34c7b097e8
Tip revision: 4ca9d48
sha.py
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith (greg@electricrain.com)
#  Licensed to PSF under a Contributor Agreement.

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