~ubuntu-branches/ubuntu/saucy/python-crypto/saucy-proposed

« back to all changes in this revision

Viewing changes to lib/Crypto/PublicKey/__init__.py

  • Committer: Package Import Robot
  • Author(s): Sebastian Ramacher
  • Date: 2012-05-24 20:16:34 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120524201634-de6vxznjsdgekuwp
Tags: 2.6-1
* New upstream release.
  - Fixes CVE-2012-2417: insecure ElGamal key generation.
* Set urgency to high since this fixes a security issue.
* debian/copyright:
  - Fix formatting.
  - Update Format URL.
* debian/control:
  - Bump Standards-Version to 3.9.3 (no changes required).
  - Drop qNEW from Description since qNEW has been removed.
* debian/patches: Remove posixread.patch (not needed anymore).

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
decryption key is kept private.  Many public-key algorithms can also
26
26
be used to sign messages, and some can *only* be used for signatures.
27
27
 
28
 
Crypto.PublicKey.DSA      Digital Signature Algorithm. (Signature only)
 
28
========================  =============================================
 
29
Module                    Description
 
30
========================  =============================================
 
31
Crypto.PublicKey.DSA      Digital Signature Algorithm (Signature only)
29
32
Crypto.PublicKey.ElGamal  (Signing and encryption)
30
33
Crypto.PublicKey.RSA      (Signing, encryption, and blinding)
31
 
Crypto.PublicKey.qNEW     (Signature only)
 
34
========================  =============================================
32
35
 
 
36
:undocumented: _DSA, _RSA, _fastmath, _slowmath, pubkey
33
37
"""
34
38
 
35
 
__all__ = ['RSA', 'DSA', 'ElGamal', 'qNEW']
 
39
__all__ = ['RSA', 'DSA', 'ElGamal']
36
40
__revision__ = "$Id$"
37
41