/gdata/Crypto/__init__.py
Python | 25 lines | 3 code | 5 blank | 17 comment | 0 complexity | d9e4ec020db8ff2d80a4a11116d57f22 MD5 | raw file
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