/gdata/Crypto/__init__.py

http://radioappz.googlecode.com/ · Python · 25 lines · 3 code · 5 blank · 17 comment · 0 complexity · d9e4ec020db8ff2d80a4a11116d57f22 MD5 · raw file

  1. """Python Cryptography Toolkit
  2. A collection of cryptographic modules implementing various algorithms
  3. and protocols.
  4. Subpackages:
  5. Crypto.Cipher Secret-key encryption algorithms (AES, DES, ARC4)
  6. Crypto.Hash Hashing algorithms (MD5, SHA, HMAC)
  7. Crypto.Protocol Cryptographic protocols (Chaffing, all-or-nothing
  8. transform). This package does not contain any
  9. network protocols.
  10. Crypto.PublicKey Public-key encryption and signature algorithms
  11. (RSA, DSA)
  12. Crypto.Util Various useful modules and functions (long-to-string
  13. conversion, random number generation, number
  14. theoretic functions)
  15. """
  16. __all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util']
  17. __version__ = '2.0.1'
  18. __revision__ = "$Id: __init__.py,v 1.12 2005/06/14 01:20:22 akuchling Exp $"