Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 12c00f79bc34f10cf0fff08df130c38c253a3742 authored by Tim Peters on 11 July 2006, 02:17:48 UTC
Whitespace normalization.
Tip revision: 12c00f7
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