METADATA 3.1 KB

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