1 | |
---|
2 | """Python Cryptography Toolkit |
---|
3 | |
---|
4 | A collection of cryptographic modules implementing various algorithms |
---|
5 | and protocols. |
---|
6 | |
---|
7 | Subpackages: |
---|
8 | Crypto.Cipher Secret-key encryption algorithms (AES, DES, ARC4) |
---|
9 | Crypto.Hash Hashing algorithms (MD5, SHA, HMAC) |
---|
10 | Crypto.Protocol Cryptographic protocols (Chaffing, all-or-nothing |
---|
11 | transform). This package does not contain any |
---|
12 | network protocols. |
---|
13 | Crypto.PublicKey Public-key encryption and signature algorithms |
---|
14 | (RSA, DSA) |
---|
15 | Crypto.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 | |
---|