Staging
v0.5.1
https://github.com/python/cpython
Revision 334b5b20f284ff4b44cfe3a035e1654b23390028 authored by Raymond Hettinger on 26 March 2006, 03:11:29 UTC, committed by Raymond Hettinger on 26 March 2006, 03:11:29 UTC
1 parent e2ac4ab
Raw File
Tip revision: 334b5b20f284ff4b44cfe3a035e1654b23390028 authored by Raymond Hettinger on 26 March 2006, 03:11:29 UTC
Tighten an overbroad and misleading assertion.
Tip revision: 334b5b2
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