/gdata/Crypto/PublicKey/__init__.py

http://radioappz.googlecode.com/ · Python · 17 lines · 2 code · 2 blank · 13 comment · 0 complexity · f6dff6f61ae359e308d099ccfc2f883e MD5 · raw file

  1. """Public-key encryption and signature algorithms.
  2. Public-key encryption uses two different keys, one for encryption and
  3. one for decryption. The encryption key can be made public, and the
  4. decryption key is kept private. Many public-key algorithms can also
  5. be used to sign messages, and some can *only* be used for signatures.
  6. Crypto.PublicKey.DSA Digital Signature Algorithm. (Signature only)
  7. Crypto.PublicKey.ElGamal (Signing and encryption)
  8. Crypto.PublicKey.RSA (Signing, encryption, and blinding)
  9. Crypto.PublicKey.qNEW (Signature only)
  10. """
  11. __all__ = ['RSA', 'DSA', 'ElGamal', 'qNEW']
  12. __revision__ = "$Id: __init__.py,v 1.4 2003/04/03 20:27:13 akuchling Exp $"