cryptography (2024)

Project description

cryptography (1)cryptography (2)cryptography (3)

cryptography is a package which provides cryptographic recipes andprimitives to Python developers. Our goal is for it to be your “cryptographicstandard library”. It supports Python 3.6+ and PyPy3 7.2+.

cryptography includes both high level recipes and low level interfaces tocommon cryptographic algorithms such as symmetric ciphers, message digests, andkey derivation functions. For example, to encrypt something withcryptography’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.")>>> tokenb'...'>>> 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 getinvolved.

Security

Need to report a security issue? Please consult our security reportingdocumentation.

Project details

Verified details (What is this?)

These details have been verified by PyPI

Owner

cryptography (4) Python Cryptographic Authority

Maintainers

cryptography (5) reaperhulk

Unverified details

These details have not been verified by PyPI

Project links
Meta
  • License: Apache Software License, BSD License ((Apache-2.0 OR BSD-3-Clause) AND PSF-2.0)
  • Author: The Python Cryptographic Authority and individual contributors
  • Requires: Python >=3.6

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cryptography-39.0.0.tar.gz (603.4 kB view hashes)

Uploaded Source

Built Distributions

cryptography-39.0.0-pp39-pypy39_pp73-win_amd64.whl (2.4 MB view hashes)

Uploaded PyPy Windows x86-64

cryptography-39.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl (3.5 MB view hashes)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

cryptography-39.0.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl (3.5 MB view hashes)

Uploaded PyPy manylinux: glibc 2.24+ x86-64

cryptography-39.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cryptography-39.0.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (2.7 MB view hashes)

Uploaded PyPy macOS 10.12+ x86-64

cryptography-39.0.0-pp38-pypy38_pp73-win_amd64.whl (2.4 MB view hashes)

Uploaded PyPy Windows x86-64

cryptography-39.0.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl (3.5 MB view hashes)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

cryptography-39.0.0-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl (3.5 MB view hashes)

Uploaded PyPy manylinux: glibc 2.24+ x86-64

cryptography-39.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cryptography-39.0.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (2.7 MB view hashes)

Uploaded PyPy macOS 10.12+ x86-64

cryptography-39.0.0-cp36-abi3-win_amd64.whl (2.5 MB view hashes)

Uploaded CPython 3.6+ Windows x86-64

cryptography-39.0.0-cp36-abi3-win32.whl (2.1 MB view hashes)

Uploaded CPython 3.6+ Windows x86

cryptography-39.0.0-cp36-abi3-musllinux_1_1_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.6+ musllinux: musl 1.1+ x86-64

cryptography-39.0.0-cp36-abi3-musllinux_1_1_aarch64.whl (4.1 MB view hashes)

Uploaded CPython 3.6+ musllinux: musl 1.1+ ARM64

cryptography-39.0.0-cp36-abi3-manylinux_2_28_x86_64.whl (4.2 MB view hashes)

Uploaded CPython 3.6+ manylinux: glibc 2.28+ x86-64

cryptography-39.0.0-cp36-abi3-manylinux_2_28_aarch64.whl (4.0 MB view hashes)

Uploaded CPython 3.6+ manylinux: glibc 2.28+ ARM64

cryptography-39.0.0-cp36-abi3-manylinux_2_24_x86_64.whl (4.1 MB view hashes)

Uploaded CPython 3.6+ manylinux: glibc 2.24+ x86-64

cryptography-39.0.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view hashes)

Uploaded CPython 3.6+ manylinux: glibc 2.17+ x86-64

cryptography-39.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view hashes)

Uploaded CPython 3.6+ manylinux: glibc 2.17+ ARM64

cryptography-39.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (3.7 MB view hashes)

Uploaded CPython 3.6+ manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

cryptography-39.0.0-cp36-abi3-macosx_10_12_x86_64.whl (2.9 MB view hashes)

Uploaded CPython 3.6+ macOS 10.12+ x86-64

cryptography-39.0.0-cp36-abi3-macosx_10_12_universal2.whl (5.4 MB view hashes)

Uploaded CPython 3.6+ macOS 10.12+ universal2 (ARM64, x86-64)

cryptography (2024)
Top Articles
How effective is contrarian investing strategy - Quanloop
Quote: Definition in Trading and Investing
Will Byers X Male Reader
Parke County Chatter
Skycurve Replacement Mat
Urist Mcenforcer
Ffxiv Palm Chippings
Visitor Information | Medical Center
Craigslist Campers Greenville Sc
What are Dietary Reference Intakes?
Stl Craiglist
Weather Annapolis 10 Day
Items/Tm/Hm cheats for Pokemon FireRed on GBA
Yesteryear Autos Slang
Johnston v. State, 2023 MT 20
Water Days For Modesto Ca
Tygodnik Polityka - Polityka.pl
Plan Z - Nazi Shipbuilding Plans
All Obituaries | Buie's Funeral Home | Raeford NC funeral home and cremation
Strange World Showtimes Near Roxy Stadium 14
Iu Spring Break 2024
Adt Residential Sales Representative Salary
Today Was A Good Day With Lyrics
Wics News Springfield Il
Cain Toyota Vehicles
Southwest Flight 238
Boise Craigslist Cars And Trucks - By Owner
Sessional Dates U Of T
Tuw Academic Calendar
Dr. Nicole Arcy Dvm Married To Husband
Yale College Confidential 2027
Scott Surratt Salary
Craftybase Coupon
Pioneer Library Overdrive
How rich were the McCallisters in 'Home Alone'? Family's income unveiled
Uno Fall 2023 Calendar
Downloahub
Bfri Forum
Citibank Branch Locations In Orlando Florida
B.k. Miller Chitterlings
2016 Honda Accord Belt Diagram
Grapes And Hops Festival Jamestown Ny
Kgirls Seattle
Petsmart Northridge Photos
Aliciabibs
Sc Pick 4 Evening Archives
5 Tips To Throw A Fun Halloween Party For Adults
Lcwc 911 Live Incident List Live Status
Three V Plymouth
Sig Mlok Bayonet Mount
Who uses the Fandom Wiki anymore?
Germany’s intensely private and immensely wealthy Reimann family
Latest Posts
Article information

Author: Msgr. Benton Quitzon

Last Updated:

Views: 6617

Rating: 4.2 / 5 (43 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Msgr. Benton Quitzon

Birthday: 2001-08-13

Address: 96487 Kris Cliff, Teresiafurt, WI 95201

Phone: +9418513585781

Job: Senior Designer

Hobby: Calligraphy, Rowing, Vacation, Geocaching, Web surfing, Electronics, Electronics

Introduction: My name is Msgr. Benton Quitzon, I am a comfortable, charming, thankful, happy, adventurous, handsome, precious person who loves writing and wants to share my knowledge and understanding with you.