ppc64le/linux/: cryptography-46.0.5+ppc64le1 metadata and description
Simple index
cryptography is a package which provides cryptographic recipes and primitives to Python developers.
| author_email |
The Python Cryptographic Authority and individual contributors <[email protected]> |
| classifiers |
- Development Status :: 5 - Production/Stable
- Intended Audience :: Developers
- Natural Language :: English
- Operating System :: MacOS :: MacOS X
- Operating System :: POSIX
- Operating System :: POSIX :: BSD
- Operating System :: POSIX :: Linux
- Operating System :: Microsoft :: Windows
- Programming Language :: Python
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Programming Language :: Python :: 3.11
- Programming Language :: Python :: 3.12
- Programming Language :: Python :: 3.13
- Programming Language :: Python :: 3.14
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy
- Programming Language :: Python :: Free Threading :: 3 - Stable
- Topic :: Security :: Cryptography
- Environment :: MetaData :: IBM Python Ecosystem
|
| description_content_type |
text/x-rst; charset=UTF-8 |
| license_expression |
Apache-2.0 OR BSD-3-Clause |
| license_file |
LICENSE.BSD |
| metadata_version |
2.4 |
| project_urls |
- changelog, https://cryptography.io/en/latest/changelog/
- documentation, https://cryptography.io/
- homepage, https://github.com/pyca/cryptography
- issues, https://github.com/pyca/cryptography/issues
- source, https://github.com/pyca/cryptography/
|
| requires_dist |
- cffi>=1.14 ; python_full_version == '3.8.*' and platform_python_implementation != 'PyPy'
- cffi>=2.0.0 ; python_full_version >= '3.9' and platform_python_implementation != 'PyPy'
- typing-extensions>=4.13.2 ; python_full_version < '3.11'
- sphinx>=5.3.0 ; extra == 'docs'
- sphinx-rtd-theme>=3.0.0 ; extra == 'docs'
- sphinx-inline-tabs ; extra == 'docs'
- pyenchant>=3 ; extra == 'docstest'
- readme-renderer>=30.0 ; extra == 'docstest'
- sphinxcontrib-spelling>=7.3.1 ; extra == 'docstest'
- nox[uv]>=2024.4.15 ; extra == 'nox'
- ruff>=0.11.11 ; extra == 'pep8test'
- mypy>=1.14 ; extra == 'pep8test'
- check-sdist ; extra == 'pep8test'
- click>=8.0.1 ; extra == 'pep8test'
- build>=1.0.0 ; extra == 'sdist'
- bcrypt>=3.1.5 ; extra == 'ssh'
- cryptography-vectors==46.0.5 ; extra == 'test'
- pytest>=7.4.0 ; extra == 'test'
- pytest-benchmark>=4.0 ; extra == 'test'
- pytest-cov>=2.10.1 ; extra == 'test'
- pytest-xdist>=3.5.0 ; extra == 'test'
- pretend>=0.7 ; extra == 'test'
- certifi>=2024 ; extra == 'test'
- pytest-randomly ; extra == 'test-randomorder'
|
| requires_python |
>=3.8, !=3.9.0, !=3.9.1 |
cryptography is a package which provides cryptographic recipes and
primitives to Python developers. Our goal is for it to be your “cryptographic
standard library”. It supports Python 3.8+ and PyPy3 7.3.11+.
cryptography includes both high level recipes and low level interfaces to
common cryptographic algorithms such as symmetric ciphers, message digests, and
key derivation functions. For example, to encrypt something with
cryptography’s high level symmetric encryption recipe:
>>> from cryptography.fernet import Fernet
>>> # Put this somewhere safe!
>>> key = Fernet.generate_key()
>>> f = Fernet(key)
>>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
>>> token
b'...'
>>> f.decrypt(token)
b'A really secret message. Not for prying eyes.'
You can find more information in the documentation.
You can install cryptography with:
$ pip install cryptography
For full details see the installation documentation.
Discussion
If you run into bugs, you can file them in our issue tracker.
We maintain a cryptography-dev mailing list for development discussion.
You can also join #pyca on irc.libera.chat to ask questions or get
involved.
Security
Need to report a security issue? Please consult our security reporting
documentation.
Export Classification Notice
The software hosted on this website consists of publicly available open‑source packages. To the extent U.S. export regulations apply, software that is publicly available as described in 15 C.F.R. §§ 734.7 (for non-encryption software) or 742.15(b) (for encryption software) is not subject to the Export Administration Regulations (EAR). Users are responsible for complying with all applicable export laws and regulations.