root/galaxy-central/eggs/pycrypto-2.0.1-py2.6-macosx-10.6-universal-ucs2.egg/Crypto/Hash/__init__.py @ 3

リビジョン 3, 0.8 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1"""Hashing algorithms
2
3Hash functions take arbitrary strings as input, and produce an output
4of fixed size that is dependent on the input; it should never be
5possible to derive the input data given only the hash function's
6output.  Hash functions can be used simply as a checksum, or, in
7association with a public-key algorithm, can be used to implement
8digital signatures.
9
10The hashing modules here all support the interface described in PEP
11247, "API for Cryptographic Hash Functions".
12
13Submodules:
14Crypto.Hash.HMAC          RFC 2104: Keyed-Hashing for Message Authentication
15Crypto.Hash.MD2
16Crypto.Hash.MD4
17Crypto.Hash.MD5
18Crypto.Hash.RIPEMD
19Crypto.Hash.SHA
20"""
21
22__all__ = ['HMAC', 'MD2', 'MD4', 'MD5', 'RIPEMD', 'SHA', 'SHA256']
23__revision__ = "$Id: __init__.py,v 1.6 2003/12/19 14:24:25 akuchling Exp $"
24
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。