Staging
v0.8.1
https://github.com/python/cpython
Revision 115ea43bff476387622bdd66939de7daf1a1fb29 authored by Andrew M. Kuchling on 16 August 2006, 13:41:52 UTC, committed by Andrew M. Kuchling on 16 August 2006, 13:41:52 UTC
1 parent efd68c7
Raw File
Tip revision: 115ea43bff476387622bdd66939de7daf1a1fb29 authored by Andrew M. Kuchling on 16 August 2006, 13:41:52 UTC
Bump document version to 1.0; remove pystone paragraph
Tip revision: 115ea43
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