]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/Crypto/Util/__init__.py
move all packages into src/, fix allmydata.Crypto build. Now you must perform a ...
[tahoe-lafs/tahoe-lafs.git] / src / Crypto / Util / __init__.py
1 """Miscellaneous modules
2
3 Contains useful modules that don't belong into any of the
4 other Crypto.* subpackages.
5
6 Crypto.Util.number        Number-theoretic functions (primality testing, etc.)
7 Crypto.Util.randpool      Random number generation
8 Crypto.Util.RFC1751       Converts between 128-bit keys and human-readable
9                           strings of words.
10
11 """
12
13 __all__ = ['randpool', 'RFC1751', 'number']
14
15 __revision__ = "$Id: __init__.py,v 1.4 2003/02/28 15:26:00 akuchling Exp $"
16