Staging
v0.5.1
Revision 62dd70c6e0144cc53d953a2728cc15f15ddda6f9 authored by Martin v. Löwis on 14 February 2008, 12:58:41 UTC, committed by Martin v. Löwis on 14 February 2008, 12:58:41 UTC
1 parent a859e25
Raw File
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