OLD | NEW |
(Empty) | |
| 1 # -*- coding: utf-8 -*- |
| 2 # |
| 3 # =================================================================== |
| 4 # The contents of this file are dedicated to the public domain. To |
| 5 # the extent that dedication to the public domain is not available, |
| 6 # everyone is granted a worldwide, perpetual, royalty-free, |
| 7 # non-exclusive license to exercise all rights associated with the |
| 8 # contents of this file for any purpose whatsoever. |
| 9 # No rights are reserved. |
| 10 # |
| 11 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 12 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 13 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 14 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 15 # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 16 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 17 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 18 # SOFTWARE. |
| 19 # =================================================================== |
| 20 |
| 21 """Python Cryptography Toolkit |
| 22 |
| 23 A collection of cryptographic modules implementing various algorithms |
| 24 and protocols. |
| 25 |
| 26 Subpackages: |
| 27 |
| 28 Crypto.Cipher |
| 29 Secret-key (AES, DES, ARC4) and public-key encryption (RSA PKCS#1) algorithms |
| 30 Crypto.Hash |
| 31 Hashing algorithms (MD5, SHA, HMAC) |
| 32 Crypto.Protocol |
| 33 Cryptographic protocols (Chaffing, all-or-nothing transform, key derivation |
| 34 functions). This package does not contain any network protocols. |
| 35 Crypto.PublicKey |
| 36 Public-key encryption and signature algorithms (RSA, DSA) |
| 37 Crypto.Signature |
| 38 Public-key signature algorithms (RSA PKCS#1) |
| 39 Crypto.Util |
| 40 Various useful modules and functions (long-to-string conversion, random number |
| 41 generation, number theoretic functions) |
| 42 """ |
| 43 |
| 44 __all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature'] |
| 45 |
| 46 __version__ = '2.6.1' # See also below and setup.py |
| 47 __revision__ = "$Id$" |
| 48 |
| 49 # New software should look at this instead of at __version__ above. |
| 50 version_info = (2, 6, 1, 'final', 0) # See also above and setup.py |
| 51 |
OLD | NEW |