Skip to main content

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

Project description

Latest Version Latest Docs https://github.com/pyca/cryptography/actions/workflows/ci.yml/badge.svg

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.9+ 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.

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-48.0.0.tar.gz (833.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cryptography-48.0.0-pp311-pypy311_pp73-win_amd64.whl (3.7 MB view details)

Uploaded PyPyWindows x86-64

cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARM64

cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

cryptography-48.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

cryptography-48.0.0-cp314-cp314t-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

cryptography-48.0.0-cp314-cp314t-win32.whl (3.3 MB view details)

Uploaded CPython 3.14tWindows x86

cryptography-48.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cryptography-48.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cryptography-48.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ x86-64

cryptography-48.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ppc64le

cryptography-48.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ARM64

cryptography-48.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ ARMv7l

cryptography-48.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

cryptography-48.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

cryptography-48.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

cryptography-48.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cryptography-48.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cryptography-48.0.0-cp314-cp314t-macosx_10_9_universal2.whl (8.0 MB view details)

Uploaded CPython 3.14tmacOS 10.9+ universal2 (ARM64, x86-64)

cryptography-48.0.0-cp311-abi3-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11+Windows x86-64

cryptography-48.0.0-cp311-abi3-win32.whl (3.3 MB view details)

Uploaded CPython 3.11+Windows x86

cryptography-48.0.0-cp311-abi3-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

cryptography-48.0.0-cp311-abi3-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

cryptography-48.0.0-cp311-abi3-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ x86-64

cryptography-48.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ ppc64le

cryptography-48.0.0-cp311-abi3-manylinux_2_34_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ ARM64

cryptography-48.0.0-cp311-abi3-manylinux_2_31_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.31+ ARMv7l

cryptography-48.0.0-cp311-abi3-manylinux_2_28_x86_64.whl (4.7 MB view details)

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

cryptography-48.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ppc64le

cryptography-48.0.0-cp311-abi3-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

cryptography-48.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.7 MB view details)

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

cryptography-48.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

cryptography-48.0.0-cp311-abi3-macosx_10_9_universal2.whl (8.0 MB view details)

Uploaded CPython 3.11+macOS 10.9+ universal2 (ARM64, x86-64)

cryptography-48.0.0-cp39-abi3-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.9+Windows x86-64

cryptography-48.0.0-cp39-abi3-win32.whl (3.3 MB view details)

Uploaded CPython 3.9+Windows x86

cryptography-48.0.0-cp39-abi3-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

cryptography-48.0.0-cp39-abi3-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

cryptography-48.0.0-cp39-abi3-manylinux_2_34_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ x86-64

cryptography-48.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ ppc64le

cryptography-48.0.0-cp39-abi3-manylinux_2_34_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ ARM64

cryptography-48.0.0-cp39-abi3-manylinux_2_31_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.31+ ARMv7l

cryptography-48.0.0-cp39-abi3-manylinux_2_28_x86_64.whl (4.7 MB view details)

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

cryptography-48.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ppc64le

cryptography-48.0.0-cp39-abi3-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

cryptography-48.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.7 MB view details)

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

cryptography-48.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

cryptography-48.0.0-cp39-abi3-macosx_10_9_universal2.whl (8.0 MB view details)

Uploaded CPython 3.9+macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file cryptography-48.0.0.tar.gz.

File metadata

  • Download URL: cryptography-48.0.0.tar.gz
  • Upload date:
  • Size: 833.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cryptography-48.0.0.tar.gz
Algorithm Hash digest
SHA256 5c3932f4436d1cccb036cb0eaef46e6e2db91035166f1ad6505c3c9d5a635920
MD5 9121d585e5990ab79d2779ce36d03779
BLAKE2b-256 9fa9db8f313fdcd85d767d4973515e1db101f9c71f95fced83233de224673757

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0.tar.gz:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 db63bf618e5dea46c07de12e900fe1cdd2541e6dc9dbae772a70b7d4d4765f6a
MD5 6530d013e5c3143c7b1e9593247c631d
BLAKE2b-256 a2ca7e8365deec19afb2b2c7be7c1c0aa8f99633b54e90c570999acda93260fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4defde8685ae324a9eb9d818717e93b4638ef67070ac9bc15b8ca85f63048355
MD5 39e42cd776a3bc46b47968d2dc91d01c
BLAKE2b-256 b4e148cedb2fe63626e91ded1edad159e2a4fb8b6906c4425eb7749673077ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ecde28a596bead48b0cfd2a1b4416c3d43074c2d785e3a398d7ec1fc4d0f7fbb
MD5 f30d38cc98673bf177d3e5c4075a8a4a
BLAKE2b-256 3bf25a72274ca9f1b2a8b44a662ee0bf1b435909deb473d6f97bcd035bcdbc71

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0890f502ddf7d9c6426129c3f49f5c0a39278ed7cd6322c8755ffca6ee675a13
MD5 568f5778b6a7bf86940e260c43e9d719
BLAKE2b-256 f00a7e226dbff530f21480727eb764973a7bff2b912f8e15cd4f129e71b56d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdfef35d751d510fcef5252703621574364fec16418c4a1e5e1055248401054b
MD5 b069e4271f9be00b517a167cab78a2db
BLAKE2b-256 bc173861e17c56fa0fd37491a14a8673fdb77c57fc5693cafe745ea8b06dba75

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84cf79f0dc8b36ac5da873481716e87aef31fcfa0444f9e1d8b4b2cece142855
MD5 e6d4929b951da49da31a6a6f0e2b148a
BLAKE2b-256 bed2024b5e06be9d44cb021fb0e1a03d34d63989cf56a0fe62f3dfbab695b9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 27241b1dc9962e056062a8eef1991d02c3a24569c95975bd2322a8a52c6e5e12
MD5 6d7ca0057786da69269fbca1dd246e9d
BLAKE2b-256 4967cc947e288c0758a4e5473d1dcb743037ab7785541265a969240b8885441a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-win_amd64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c17dfe85494deaeddc5ce251aebd1d60bbe6afc8b62071bb0b469431a000124f
MD5 6d2f11ee6e136a7b57826371dcf637bc
BLAKE2b-256 7554cc6d0f3deac3e81c7f847e8a189a12b6cdd65059b43dad25d4316abd849a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-win32.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9be5aafa5736574f8f15f262adc81b2a9869e2cfe9014d52a44633905b40d52c
MD5 3d1c3da1525cfada248259f9ece84b68
BLAKE2b-256 3885ea67067c70a1fd4be2c63d35eeed82658023021affccc7b17705f8527dd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c18684a7f0cc9a3cb60328f496b8e3372def7c5d2df39ac267878b05565aaaae
MD5 2134781bf552a9a3fb1920411bd4f6e0
BLAKE2b-256 1878444fa04a77d0cb95f417dda20d450e13c56ba8e5220fc892a1658f44f882

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ea8990436d914540a40ab24b6a77c0969695ed52f4a4874c5137ccf7045a7057
MD5 759450985e19ea00e83d67acfcd24fe3
BLAKE2b-256 b9094e76a09b4caa29aad535ddc806f5d4c5d01885bd978bd984fbc6ca032cae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 906cbf0670286c6e0044156bc7d4af9cbb0ef6db9f73e52c3ec56ba6bdde5336
MD5 432d6212570e8f0e99586de3c4bcb3a4
BLAKE2b-256 dda6825010a291b4438aecc1f568bc428189fc1175515223632477c07dc0a6df

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ad64688338ed4bc1a6618076ba75fd7194a5f1797ac60b47afe926285adb3166
MD5 969ad2b07a98a9e9454d6eda03fb5445
BLAKE2b-256 fd36a608b98337af3cb2aff4818e406649d30572b7031918b04c87d979495348

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 561215ea3879cb1cbbf272867e2efda62476f240fb58c64de6b393ae19246741
MD5 64937ce430d293941b41202a4bf6462a
BLAKE2b-256 b87799307d7574045699f8805aa500fa0fb83422d115b5400a064ddd306d7750

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a64697c641c7b1b2178e573cbc31c7c6684cd56883a478d75143dbb7118036db
MD5 88f83d7436e20f90fa664751cd03c28a
BLAKE2b-256 11089f8c5386cc4cd90d8255c7cdd0f5baf459a08502a09de30dc51f553d38dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 55b7718303bf06a5753dcdccf2f3945cf18ad7bffde41b61226e4db31ab89a9c
MD5 ccbe2d4045e6dfc96527ddcd69b09403
BLAKE2b-256 cab4fc334ed8cfd705aca282fe4d8f5ae64a8e0f74932e9feecb344610cf6e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76341972e1eff8b4bea859f09c0d3e64b96ce931b084f9b9b7db8ef364c30eff
MD5 2b8bcd3b223d23c1b5faafba371a4d45
BLAKE2b-256 2f596ff6ad6cae03bb887da2a5860b2c9805f8dac969ef01ce563336c49bd1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cc90c0b39b2e3c65ef52c804b72e3c58f8a04ab2a1871272798e5f9572c17d20
MD5 19893e0df2ea9eef4dd183e1d9c7d99f
BLAKE2b-256 be6a4ea3b4c6c6759794d5ee2103c304a5076dc4b19ae1f9fe47dba439e159e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8c7378637d7d88016fa6791c159f698b3d3eed28ebf844ac36b9dc04a14dae18
MD5 04f34221b087d8de039cec9461eecacf
BLAKE2b-256 896e18e07a618bb5442ba10cf4df16e99c071365528aa570dfcb8c02e25a303b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp314-cp314t-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp314-cp314t-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3cb07a3ed6431663cd321ea8a000a1314c74211f823e4177fefa2255e057d1ec
MD5 466bef133a2463fa56c3fd670069c7e7
BLAKE2b-256 6b8470e3feea9feea87fd7cbe77efb2712ae1e3e6edf10749dc6e95f4e60e455

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp314-cp314t-macosx_10_9_universal2.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 5b012212e08b8dd5edc78ef54da83dd9892fd9105323b3993eff6bea65dc21d7
MD5 30fe5a1b0f13c240b8d015d7b24c188f
BLAKE2b-256 f4ac8ac51b4a5fc5932eb7ee5c517ba7dc8cd834f0048962b6b352f00f41ebf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-win_amd64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-win32.whl.

File metadata

  • Download URL: cryptography-48.0.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 9c459db21422be75e2809370b829a87eb37f74cd785fc4aa9ea1e5f43b47cda4
MD5 b5273e90c69a7aefa1a96c3914315108
BLAKE2b-256 0470e5a1b41d325f797f39427aa44ef8baf0be500065ab6d8e10369d850d4a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-win32.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9249e3cd978541d665967ac2cb2787fd6a62bddf1e75b3e347a594d7dacf4f74
MD5 5ebecdf8ccd9b57cf8f3a5e0528ad9b3
BLAKE2b-256 98e17074eb8bf3c135558c73fc2bcf0f5633f912e6fb87e868a55c454080ef09

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59baa2cb386c4f0b9905bd6eb4c2a79a69a128408fd31d32ca4d7102d4156321
MD5 40ff94771e19f2f9c88b19bd8ffe1827
BLAKE2b-256 acd85b833bad13016f562ab9d063d68199a4bd121d18458e439515601d3357ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bd72e68b06bb1e96913f97dd4901119bc17f39d4586a5adf2d3e47bc2b9d58b5
MD5 4cbb8ba9e5fb9212c5997d68e4f0155b
BLAKE2b-256 d0c07101d3b7215edcdc90c45da544961fd8ed2d6448f77577460fa75a8443f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 9ccdac7d40688ecb5a3b4a604b8a88c8002e3442d6c60aead1db2a89a041560c
MD5 9a9f3cc7385a3ce70a9ae72daeea1b1e
BLAKE2b-256 e3dc7303087450c2ec9e7fbb750e17c2abfbc658f23cbd0e54009509b7cc4091

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 7e8eac43dfca5c4cccc6dad9a80504436fca53bb9bc3100a2386d730fbe6b602
MD5 0631fe31360df2534a9862aab455d9a4
BLAKE2b-256 849e500463e87abb7a0a0f9f256ec21123ecde0a7b5541a15e840ea54551fd81

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 18349bbc56f4743c8b12dc32e2bccb2cf83ee8b69a3bba74ef8ae857e26b3d25
MD5 267deda9aab755e269335e1efb54bbca
BLAKE2b-256 30beeef653013d5c63b6a490529e0316f9ac14a37602965d4903efed1399f32b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux_2_31_armv7l.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0e692c683f4df67815a2d258b324e66f4738bd7a96a218c826dce4f4bd05d8f
MD5 ba46af6fd466ba005292b4de31284aea
BLAKE2b-256 95380d29a6fd7d0d1373f0c0c88a04ba20e359b257753ac497564cd660fc1d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 369a6348999f94bbd53435c894377b20ab95f25a9065c283570e70150d8abc3c
MD5 605bf17b34163cd709f35c940ea05eb4
BLAKE2b-256 0c29174b9dfb60b12d59ecfc6cfa04bc88c21b42a54f01b8aae09bb6e51e4c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40ba1f85eaa6959837b1d51c9767e230e14612eea4ef110ee8854ada22da1bf5
MD5 d562cad5906e2e0a99376c689cc3f608
BLAKE2b-256 14d5e9c4ef932c8d800490c34d8bd589d64a31d5890e27ec9e9ad532be893294

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7995ef305d7165c3f11ae07f2517e5a4f1d5c18da1376a0a9ed496336b69e5f3
MD5 ea63d616230a7f3fb68659b078066456
BLAKE2b-256 9004673510ed51ddff56575f306cf1617d80411ee76831ccd3097599140efdfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f5333311663ea94f75dd408665686aaf426563556bb5283554a3539177e03b8c
MD5 d542a43036d3c66c53e495910ff80c84
BLAKE2b-256 b26ee90527eef33f309beb811cf7c982c3aeffcce8e3edb178baa4ca3ae4a6fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp311-abi3-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp311-abi3-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0c558d2cdffd8f4bbb30fc7134c74d2ca9a476f830bb053074498fbc86f41ed6
MD5 97dc0a030d01df921ed6eb69528f66d5
BLAKE2b-256 df3d01f6dd9190170a5a241e0e98c2d04be3664a9e6f5b9b872cde63aff1c3dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp311-abi3-macosx_10_9_universal2.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 16cd65b9330583e4619939b3a3843eec1e6e789744bb01e7c7e2e62e33c239c8
MD5 80caef336929c67d0ecaa44c7b3d526f
BLAKE2b-256 9d9a0fea98a70cf1749d41d738836f6349d97945f7c89433a259a6c2642eefeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-win_amd64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: cryptography-48.0.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 77a2ccbbe917f6710e05ba9adaa25fb5075620bf3ea6fb751997875aff4ae4bd
MD5 b6fe3a6ff047ae2fdafd2328b4f221ae
BLAKE2b-256 b8236e6f32143ab5d8b36ca848a502c4bcd477ae75b9e1677e3530d669062578

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-win32.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5da777e32ffed6f85a7b2b3f7c5cbc88c146bfcd0a1d7baf5fcc6c52ee35dd4
MD5 a4ee83614019f565d8e6b2051bd38b67
BLAKE2b-256 1e75a2e55f99c16fcac7b5d6c1eb19ad8e00799854d6be5ca845f9259eae1681

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e2d54c8be6152856a36f0882ab231e70f8ec7f14e93cf87db8a2ed056bf160c
MD5 ee20e0f75b6ee02a9bce731e9d262a64
BLAKE2b-256 44a04ec7cf774207905aef1a8d11c3750d5a1db805eb380ee4e16df317870128

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9071196d81abc88b3516ac8cdfad32e2b66dd4a5393a8e68a961e9161ddc6239
MD5 924f74c9d11672836d934944ac45089c
BLAKE2b-256 c970ca4003b1ce5ca3dc3186ada51908c8a9b9ff7d5cab83cc0d43ee14ec144f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 8cd666227ef7af430aa5914a9910e0ddd703e75f039cef0825cd0da71b6b711a
MD5 cab90ebaa07cc7a60496c1bc39c3df5f
BLAKE2b-256 70babcb1b0bb7a33d4c7c0c4d4c7874b4a62ae4f56113a5f4baefa362dfb1f0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 5a5ed8fde7a1d09376ca0b40e68cd59c69fe23b1f9768bd5824f54681626032a
MD5 937f81bad954bf16c271792719c65b04
BLAKE2b-256 90ee89aa26a06ef0a7d7611788ffd571a7c50e368cc6a4d5eef8b4884e866edb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 984a20b0f62a26f48a3396c72e4bc34c66e356d356bf370053066b3b6d54634a
MD5 3ff4d7104e8aab6b8e01e3c7d2a3ac6f
BLAKE2b-256 6faf99a582b1b1641ff5911ac559beb45097cf79efd4ead4657f578ef1af2d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux_2_31_armv7l.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b4d59804e8408e2fea7d1fbaf218e5ec984325221db76e6a241a9abd6cdd95c
MD5 d066c2598787490d0b935abe37aba9e1
BLAKE2b-256 02e150edc7a50334807cc4791fc4a0ce7468b4a1416d9138eab358bfc9a3d70b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 22a5cb272895dce158b2cacdfdc3debd299019659f42947dbdac6f32d68fe832
MD5 2b0103c2817c63c540548991c427e419
BLAKE2b-256 9301d86632d7d28db8ae83221995752eeb6639ffb374c2d22955648cf8d52797

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2eb992bbd4661238c5a397594c83f5b4dc2bc5b848c365c8f991b6780efcc5c7
MD5 5ab863538767240d78a1c95a50504b08
BLAKE2b-256 ea73f808fbae9514bd91b47875b003f13e284c8c6bdfd904b7944e803937eec1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7ce4bfae76319a532a2dc68f82cc32f5676ee792a983187dac07183690e5c66f
MD5 1412bac62e1ddb6b76595ee48eeb8266
BLAKE2b-256 ecc68b14f67e18338fbc4adb76f66c001f5c3610b3e2d1837f268f47a347dbbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 614d0949f4790582d2cc25553abd09dd723025f0c0e7c67376a1d77196743d6e
MD5 ae228b9f9b898e283d0c7094c5e39080
BLAKE2b-256 d5acf5b5995b87770c693e2596559ffafe195b4033a57f14a82268a2842953f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptography-48.0.0-cp39-abi3-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for cryptography-48.0.0-cp39-abi3-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 58d00498e8933e4a194f3076aee1b4a97dfec1a6da444535755822fe5d8b0b86
MD5 6aef03899aa86f7f666f7081a9c7d92d
BLAKE2b-256 f26361d4a4e1c6b6bab6ce1e213cd36a24c415d90e76d78c5eb8577c5541d2e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptography-48.0.0-cp39-abi3-macosx_10_9_universal2.whl:

Publisher: pypi-publish.yml on pyca/cryptography

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page