__init__.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. """Miscellaneous modules
  21. Contains useful modules that don't belong into any of the
  22. other Crypto.* subpackages.
  23. ======================== =============================================
  24. Module Description
  25. ======================== =============================================
  26. `Crypto.Util.number` Number-theoretic functions (primality testing, etc.)
  27. `Crypto.Util.Counter` Fast counter functions for CTR cipher modes.
  28. `Crypto.Util.RFC1751` Converts between 128-bit keys and human-readable
  29. strings of words.
  30. `Crypto.Util.asn1` Minimal support for ASN.1 DER encoding
  31. `Crypto.Util.Padding` Set of functions for adding and removing padding.
  32. ======================== =============================================
  33. :undocumented: _galois, _number_new, cpuid, py3compat, _raw_api
  34. """
  35. __all__ = ['RFC1751', 'number', 'strxor', 'asn1', 'Counter', 'Padding']