loongson/pypi/: cryptography-3.2.1 metadata and description

Homepage Simple index Newer version available

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

author The cryptography developers
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 :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • 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
platform
  • UNKNOWN
provides_extras ssh
requires_dist
  • six (>=1.4.1)
  • cffi (!=1.11.3,>=1.8)
  • enum34 ; python_version < '3'
  • ipaddress ; python_version < '3'
  • 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'
  • bcrypt (>=3.1.5) ; extra == 'ssh'
  • pytest (!=3.9.0,!=3.9.1,!=3.9.2,>=3.6.0) ; extra == 'test'
  • pretend ; extra == 'test'
  • iso8601 ; extra == 'test'
  • pytz ; extra == 'test'
  • hypothesis (!=3.79.2,>=1.11.4) ; extra == 'test'
requires_python >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*

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

File Tox results History
cryptography-3.2.1-cp36-cp36m-linux_loongarch64.whl
Size
939 KB
Type
Python Wheel
Python
3.6
  • Replaced 1 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 02:46:56
cryptography-3.2.1-cp37-cp37m-linux_loongarch64.whl
Size
803 KB
Type
Python Wheel
Python
3.7
cryptography-3.2.1-cp38-cp38-linux_loongarch64.whl
Size
949 KB
Type
Python Wheel
Python
3.8
  • Replaced 2 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 06:08:12
cryptography-3.2.1-cp39-cp39-linux_loongarch64.whl
Size
1 MB
Type
Python Wheel
Python
3.9
  • Replaced 1 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 07:16:52
cryptography-3.2.1.tar.gz
Size
528 KB
Type
Source
  • Replaced 3 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 07:16:54
Latest Version Latest Docs https://travis-ci.org/pyca/cryptography.svg?branch=master 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 2.7, Python 3.5+, and PyPy 5.4+.

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.