loongson/pypi/: cryptography-3.4.8 metadata and description

Homepage Simple index Newer version available

cryptography is a package which provides cryptographic recipes and primitives to Python developers.

author The Python Cryptographic Authority and individual contributors
author_email cryptography-dev@python.org
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • License :: OSI Approved :: Apache Software License
  • License :: OSI Approved :: BSD License
  • 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.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
  • Topic :: Security :: Cryptography
description_content_type text/x-rst
license BSD or Apache License, Version 2.0
provides_extras test
requires_dist
  • cffi (>=1.12)
  • sphinx (!=1.8.0,!=3.1.0,!=3.1.1,>=1.6.5) ; extra == 'docs'
  • sphinx-rtd-theme ; extra == 'docs'
  • doc8 ; extra == 'docstest'
  • pyenchant (>=1.6.11) ; extra == 'docstest'
  • twine (>=1.12.0) ; extra == 'docstest'
  • sphinxcontrib-spelling (>=4.0.1) ; extra == 'docstest'
  • black ; extra == 'pep8test'
  • flake8 ; extra == 'pep8test'
  • flake8-import-order ; extra == 'pep8test'
  • pep8-naming ; extra == 'pep8test'
  • setuptools-rust (>=0.11.4) ; extra == 'sdist'
  • bcrypt (>=3.1.5) ; extra == 'ssh'
  • pytest (>=6.0) ; extra == 'test'
  • pytest-cov ; extra == 'test'
  • pytest-subtests ; extra == 'test'
  • pytest-xdist ; extra == 'test'
  • pretend ; extra == 'test'
  • iso8601 ; extra == 'test'
  • pytz ; extra == 'test'
  • hypothesis (!=3.79.2,>=1.11.4) ; extra == 'test'
requires_python >=3.6

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
cryptography-3.4.8-cp38-cp38-linux_loongarch64.whl
Size
2 MB
Type
Python Wheel
Python
3.8
Latest Version Latest Docs https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=master https://codecov.io/github/pyca/cryptography/coverage.svg?branch=master

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.6+ and PyPy3 7.2+.

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
'...'
>>> f.decrypt(token)
'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 #cryptography-dev on Freenode to ask questions or get involved.

Security

Need to report a security issue? Please consult our security reporting documentation.