source: vendor/python/2.5/Lib/sha.py@ 3393

Last change on this file since 3393 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 306 bytes
RevLine 
[3225]1# $Id: sha.py 39316 2005-08-21 18:45:59Z greg $
2#
3# Copyright (C) 2005 Gregory P. Smith ([email protected])
4# Licensed to PSF under a Contributor Agreement.
5
6from hashlib import sha1 as sha
7new = sha
8
9blocksize = 1 # legacy value (wrong in any useful sense)
10digest_size = 20
11digestsize = 20
Note: See TracBrowser for help on using the repository browser.