You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.6 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: pycryptodomex
  3. Version: 3.6.6
  4. Summary: Cryptographic library for Python
  5. Home-page: http://www.pycryptodome.org
  6. Author: Helder Eijs
  7. Author-email: helderijs@gmail.com
  8. License: UNKNOWN
  9. Platform: Posix; MacOS X; Windows
  10. Classifier: Development Status :: 4 - Beta
  11. Classifier: License :: OSI Approved :: BSD License
  12. Classifier: License :: Public Domain
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Operating System :: Unix
  15. Classifier: Operating System :: Microsoft :: Windows
  16. Classifier: Operating System :: MacOS :: MacOS X
  17. Classifier: Topic :: Security :: Cryptography
  18. Classifier: Programming Language :: Python :: 2
  19. Classifier: Programming Language :: Python :: 2.6
  20. Classifier: Programming Language :: Python :: 2.7
  21. Classifier: Programming Language :: Python :: 3
  22. PyCryptodome
  23. ============
  24. PyCryptodome is a self-contained Python package of low-level
  25. cryptographic primitives.
  26. It supports Python 2.4 or newer, all Python 3 versions and PyPy.
  27. You can install it with::
  28. pip install pycryptodomex
  29. All modules are installed under the ``Cryptodome`` package.
  30. Check the pycryptodome_ project for the equivalent library that
  31. works under the ``Crypto`` package.
  32. PyCryptodome is a fork of PyCrypto. It brings several enhancements
  33. with respect to the last official version of PyCrypto (2.6.1),
  34. for instance:
  35. * Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)
  36. * Accelerated AES on Intel platforms via AES-NI
  37. * First class support for PyPy
  38. * Elliptic curves cryptography (NIST P-256 curve only)
  39. * Better and more compact API (`nonce` and `iv` attributes for ciphers,
  40. automatic generation of random nonces and IVs, simplified CTR cipher mode,
  41. and more)
  42. * SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms
  43. * Salsa20 and ChaCha20 stream ciphers
  44. * scrypt and HKDF
  45. * Deterministic (EC)DSA
  46. * Password-protected PKCS#8 key containers
  47. * Shamir's Secret Sharing scheme
  48. * Random numbers get sourced directly from the OS (and not from a CSPRNG in userspace)
  49. * Simplified install process, including better support for Windows
  50. * Cleaner RSA and DSA key generation (largely based on FIPS 186-4)
  51. * Major clean ups and simplification of the code base
  52. PyCryptodome is not a wrapper to a separate C library like *OpenSSL*.
  53. To the largest possible extent, algorithms are implemented in pure Python.
  54. Only the pieces that are extremely critical to performance (e.g. block ciphers)
  55. are implemented as C extensions.
  56. For more information, see the `homepage`_.
  57. All the code can be downloaded from `GitHub`_.
  58. .. _pycryptodome: https://pypi.python.org/pypi/pycryptodome
  59. .. _`homepage`: http://www.pycryptodome.org
  60. .. _GitHub: https://github.com/Legrandin/pycryptodome