METADATA 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Metadata-Version: 2.0
  2. Name: pycryptodome
  3. Version: 3.4.7
  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.4
  20. Classifier: Programming Language :: Python :: 2.5
  21. Classifier: Programming Language :: Python :: 2.6
  22. Classifier: Programming Language :: Python :: 2.7
  23. Classifier: Programming Language :: Python :: 3
  24. PyCryptodome
  25. ============
  26. PyCryptodome is a self-contained Python package of low-level
  27. cryptographic primitives.
  28. It supports Python 2.4 or newer, all Python 3 versions and PyPy.
  29. You can install it with::
  30. pip install pycryptodome
  31. All modules are installed under the ``Crypto`` package.
  32. Check the pycryptodomex_ project for the equivalent library that
  33. works under the ``Cryptodome`` package.
  34. PyCryptodome is a fork of PyCrypto. It brings several enhancements
  35. with respect to the last official version of PyCrypto (2.6.1),
  36. for instance:
  37. * Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)
  38. * Accelerated AES on Intel platforms via AES-NI
  39. * First class support for PyPy
  40. * Elliptic curves cryptography (NIST P-256 curve only)
  41. * Better and more compact API (`nonce` and `iv` attributes for ciphers,
  42. automatic generation of random nonces and IVs, simplified CTR cipher mode,
  43. and more)
  44. * SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms
  45. * Salsa20 and ChaCha20 stream ciphers
  46. * scrypt and HKDF
  47. * Deterministic (EC)DSA
  48. * Password-protected PKCS#8 key containers
  49. * Shamir's Secret Sharing scheme
  50. * Random numbers get sourced directly from the OS (and not from a CSPRNG in userspace)
  51. * Simplified install process, including better support for Windows
  52. * Cleaner RSA and DSA key generation (largely based on FIPS 186-4)
  53. * Major clean ups and simplification of the code base
  54. PyCryptodome is not a wrapper to a separate C library like *OpenSSL*.
  55. To the largest possible extent, algorithms are implemented in pure Python.
  56. Only the pieces that are extremely critical to performance (e.g. block ciphers)
  57. are implemented as C extensions.
  58. For more information, see the `homepage`_.
  59. All the code can be downloaded from `GitHub`_.
  60. .. _pycryptodomex: https://pypi.python.org/pypi/pycryptodomex
  61. .. _`homepage`: http://www.pycryptodome.org
  62. .. _GitHub: https://github.com/Legrandin/pycryptodome