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

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

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

行番号 
1
2"""Python Cryptography Toolkit
3
4A collection of cryptographic modules implementing various algorithms
5and protocols.
6
7Subpackages:
8Crypto.Cipher             Secret-key encryption algorithms (AES, DES, ARC4)
9Crypto.Hash               Hashing algorithms (MD5, SHA, HMAC)
10Crypto.Protocol           Cryptographic protocols (Chaffing, all-or-nothing
11                          transform).   This package does not contain any
12                          network protocols.
13Crypto.PublicKey          Public-key encryption and signature algorithms
14                          (RSA, DSA)
15Crypto.Util               Various useful modules and functions (long-to-string
16                          conversion, random number generation, number
17                          theoretic functions)
18"""
19
20__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util']
21
22__version__ = '2.0.1'
23__revision__ = "$Id: __init__.py,v 1.12 2005/06/14 01:20:22 akuchling Exp $"
24
25
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。