2002-05-24 14:16:22 -07:00
|
|
|
"""Miscellaneous modules
|
|
|
|
|
|
|
|
|
|
Contains useful modules that don't belong into any of the
|
|
|
|
|
other Crypto.* subpackages.
|
|
|
|
|
|
|
|
|
|
Crypto.Util.number Number-theoretic functions (primality testing, etc.)
|
|
|
|
|
Crypto.Util.randpool Random number generation
|
|
|
|
|
Crypto.Util.RFC1751 Converts between 128-bit keys and human-readable
|
|
|
|
|
strings of words.
|
2003-02-28 16:28:35 -07:00
|
|
|
|
2002-05-24 14:16:22 -07:00
|
|
|
"""
|
1998-12-13 19:19:48 -07:00
|
|
|
|
2008-09-14 18:13:35 -04:00
|
|
|
__all__ = ['randpool', 'RFC1751', 'number', 'strxor']
|
1998-12-13 19:19:48 -07:00
|
|
|
|
2008-08-06 21:27:50 -04:00
|
|
|
__revision__ = "$Id$"
|
2002-07-11 14:26:26 -07:00
|
|
|
|