Skip to main content

GA4GH cryptographic utilities

Project description

Documentation Status Testsuite PyPI version Python versions

Crypt4GH Encryption Utility

crypt4gh is a Python tool to encrypt, decrypt or re-encrypt files, according to the GA4GH encryption file format.

Installation

Python 3.6+ required to use the crypt4gh encryption utility.

Install it from PyPI:

pip install crypt4gh

or compile and install it from the latest sources

Usage

The usual -h flag shows you the different options that the tool accepts.

$ crypt4gh -h

Utility for the cryptographic GA4GH standard, reading from stdin and outputting to stdout.

Usage:
   {PROG} [-hv] [--log <file>] encrypt [--sk <path>] --recipient_pk <path> [--recipient_pk <path>]... [--range <start-end>]  [--header <path>]
   {PROG} [-hv] [--log <file>] decrypt [--sk <path>] [--sender_pk <path>] [--range <start-end>]
   {PROG} [-hv] [--log <file>] rearrange [--sk <path>] --range <start-end>
   {PROG} [-hv] [--log <file>] reencrypt [--sk <path>] --recipient_pk <path> [--recipient_pk <path>]... [--trim] [--header-only]

Options:
   -h, --help             Prints this help and exit
   -v, --version          Prints the version and exits
   --log <file>           Path to the logger file (in YML format)
   --sk <keyfile>         Curve25519-based Private key.
                          When encrypting, if neither the private key nor C4GH_SECRET_KEY are specified, we generate a new key 
   --recipient_pk <path>  Recipient's Curve25519-based Public key
   --sender_pk <path>     Peer's Curve25519-based Public key to verify provenance (akin to signature)
   --range <start-end>    Byte-range either as  <start-end> or just <start> (Start included, End excluded)
   -t, --trim             Keep only header packets that you can decrypt
   --header <path>        Where to write the header (default: stdout)
   --header-only          Whether the input data consists only of a header (default: false)


Environment variables:
   C4GH_LOG         If defined, it will be used as the default logger
   C4GH_SECRET_KEY  If defined, it will be used as the default secret key (ie --sk ${C4GH_SECRET_KEY})
 

Demonstration

Alice and Bob generate both a pair of public/private keys.

$ crypt4gh-keygen --sk alice.sec --pk alice.pub
$ crypt4gh-keygen --sk bob.sec --pk bob.pub

Bob encrypts a file for Alice:

$ crypt4gh encrypt --sk bob.sec --recipient_pk alice.pub < file > file.c4gh

Alice decrypts the encrypted file:

$ crypt4gh decrypt --sk alice.sec < file.c4gh

asciicast

File Format

Refer to the specifications or this documentation.

Compilation from sources

Get the source code, and install the python dependencies with:

git clone --recursive https://github.com/EGA-archive/crypt4gh
pip install -r crypt4gh/requirements.txt

The Crypt4GH python package relies on libsodium, a portable C library. A copy is bundled with Crypt4GH as a submodule. You can either use the version of libsodium already installed on your system (eg, provided by your distribution), or use the bundled version.

For the system-wide version, you use the SODIUM_INSTALL=system environment variable. You might also need to adjust the CFLAGS and LDFLAGS environment variables. For example, using pkg-config to find the libsodium headers and library, you can use:

export SODIUM_INSTALL=system
# If not installed in default locations
export CFLAGS="$(pkg-config --cflags libsodium)"
export LDFLAGS="$(pkg-config --libs libsodium)"

If you want to use the bundled version, skip those environment variables.

Finally, run

pip install ./crypt4gh

Bash completions

If you use bash and want auto-completions, you can install the 2 extra scripts, by setting the environment variable CRYPT4GH_BASH_COMPLETIONS to the proper locations for your setup.

For example, if you use the default setup for bash-completion >= 2.x, you can install them with:

export CRYPT4GH_BASH_COMPLETIONS='~/.local/share/bash-completion/completions'
# before you run
pip install ...

If you don't use bash, help me out with a PR and add crypt4gh.zsh, crypt4gh.tcsh, etc... and instructions

Download files

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

Source Distribution

crypt4gh-1.8.3.tar.gz (940.3 kB view details)

Uploaded Source

Built Distributions

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

crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl (226.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl (178.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (228.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (179.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

crypt4gh-1.8.3-cp314-cp314t-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

crypt4gh-1.8.3-cp314-cp314t-macosx_10_15_x86_64.whl (164.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_x86_64.whl (226.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_aarch64.whl (178.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (228.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (179.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

crypt4gh-1.8.3-cp314-cp314-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

crypt4gh-1.8.3-cp314-cp314-macosx_10_15_x86_64.whl (164.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_x86_64.whl (226.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_aarch64.whl (178.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (227.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (179.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

crypt4gh-1.8.3-cp313-cp313-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

crypt4gh-1.8.3-cp313-cp313-macosx_10_13_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_x86_64.whl (226.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_aarch64.whl (178.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (227.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (179.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

crypt4gh-1.8.3-cp312-cp312-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

crypt4gh-1.8.3-cp312-cp312-macosx_10_13_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_x86_64.whl (226.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_aarch64.whl (178.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (227.9 kB view details)

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

crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (179.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

crypt4gh-1.8.3-cp311-cp311-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

crypt4gh-1.8.3-cp311-cp311-macosx_10_9_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_x86_64.whl (226.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_aarch64.whl (178.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (227.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (179.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

crypt4gh-1.8.3-cp310-cp310-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

crypt4gh-1.8.3-cp310-cp310-macosx_10_9_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_x86_64.whl (226.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_aarch64.whl (177.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (227.7 kB view details)

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

crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (179.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

crypt4gh-1.8.3-cp39-cp39-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

crypt4gh-1.8.3-cp39-cp39-macosx_10_9_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file crypt4gh-1.8.3.tar.gz.

File metadata

  • Download URL: crypt4gh-1.8.3.tar.gz
  • Upload date:
  • Size: 940.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for crypt4gh-1.8.3.tar.gz
Algorithm Hash digest
SHA256 f0cab833790b76d4adf4684f32fa81ff6fa4fe4488359cb252a40b4dcdc2d9ed
MD5 2d9da5efad73b08a5993af9afd062e54
BLAKE2b-256 ba0ec4bc5addd13a398657938e26d8f490218a43e82e398a495879e4176c52ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3.tar.gz:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ee582b032d5c76fb1ef6e4cc67843d7049e61a1728af0b15aec8e680277a79a
MD5 7733a5de867367c1658261980873e8b7
BLAKE2b-256 cfb50e707fa8283f83081cd771097c5cfc73e0aff448df288e68b20c91cfbb91

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b649ef61d87910918b2f9e1d3b352c36c3923ba877c47933b3e867dae69985f0
MD5 1e60e2387b36fde98b18fe2a556a2a24
BLAKE2b-256 4e64196d96b1450adb13f4d671df48f3ac667b88db5f1cb0547dd063dce1c5ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e4acaa24a0384d5ba6fb4cbd22e260fc48827532c844029e16858adf03f25a0
MD5 7cf8a8290303ac49b119cc08874cad3b
BLAKE2b-256 ccda3494baea3b796b56399e20097f2d05af36f33edaf9b00cf4ca97ad825d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c30abf268daadf111dc7782d2e0bde504fccdba1713a5c86515f05329000bc5a
MD5 9359f52864a4194117b6df033d92e317
BLAKE2b-256 4f5dd3797fe2b174ae1b0a993711b99815d35f2dc85fbafb06ca7951022d5b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b26e544237a79ae7fadee5a38efe5faf1e0904b5fa1213d7f50626d2e980ccef
MD5 e97a22f38badb8a6cf48190a109831ac
BLAKE2b-256 24638661d29ce64c995073ba169fbae74ccb05278a4b14d54bdc4df5b84d32a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4aecac3cf95051e6876cd3a78a353e079fec460050330d24859488d70f7bfef5
MD5 30e11c45cd0f1c1dfa9d29c0e4d3387c
BLAKE2b-256 0082d68670af9df810cdf37518d41d75d40afa4d43a282eb53e9e7556b330c4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4ff6681922209b355f4f4ab3b7985f150b63d03ec12bfeb779c907344148701
MD5 bdfbf987a4d0ab35b47b710aa0b303b5
BLAKE2b-256 5c003620181265f1998cfd5796356cb0fb1daba1e342fb4fe654a2a87b89a2ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86317b9c01faceffbee8e10c634f98b3bc4b7db161a6f7ba751efa4639033a81
MD5 624cd27d0bd8dd9abdb24330cc601453
BLAKE2b-256 203c9cdcae4defc6afaebf63128421675834c41448c61dfd888d86b6302769b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a6cfc08b08efb673706493afdeeb1b5773d3670e4390d57fdf6180494f610bb
MD5 d480acef979753cdc375bf035447056c
BLAKE2b-256 40772f93347bfc22c4e65ba7fc5993f2b9e6930d13c6b77f02f0a72750c4a26c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 756db4d9831f07a5ba2abfe7c350e352e383e0eeedef2b1f8e65a1c6706b3096
MD5 878e700769eb1210907f20e357acc525
BLAKE2b-256 778075fe740fc5d914d71ae1fc245f277d095fc30873484c1496851d2065f9fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc341f8c596193b934ab78c96fe41d4262739feea1cf0c2b5aa114537860d346
MD5 0298c17bbcd030332bfdfbc2f4097005
BLAKE2b-256 dcd5b8a9da79de6452aa99d3440b0e7a09784f16c62aa9bd528aa9ea91348711

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8bca72e15db65f4373ed8a8dc4e7107c1e014f1bbcdea27702ed7476924c20e1
MD5 3f40d4c42e2a6d8fe384bd5787c82596
BLAKE2b-256 2b35494a79d10573a9caaf800529032bd830e8d3636ec4fd7c3fc03b0a40f268

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63ec8407b1194a7cc0f22d43c3f2cbf04ec782945d7731da60ba474e3957a72e
MD5 4a9375055492fe0df6d9ef50bad83e88
BLAKE2b-256 e904c82b10e544fd1e4963c04533b61c996d2c7d18a768c5280a9219438c3d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13ebac6f1804708579d656a9456174cd3bb338a3a05c0506eefc48a9c17dee31
MD5 da8ac2ad363d1d5667309e82bd205208
BLAKE2b-256 d417e08ecf7e18b46ade52050e4a800dc9d90f388ac30de3022753712e8a1066

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1f6ae14949a55b4f4d1a12a1d882cb49f25ba0142b00d764cf14543b0438976
MD5 cfaf0e4b88e95fa20da952a5eec3e06f
BLAKE2b-256 6d8b7e73303e22b819b6a673e6cb63694f4bb559b0ec20b27b84168fa323326e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12610eded606a482a47ebc42534d4e2fb58595c5757dcc116a0d6ae74f52fd18
MD5 4fad58cbf4dc4a40b09346329b5a3346
BLAKE2b-256 96e5776fd6f0b8b878818ff9cbc3bf56225ef5fd8830492ce4dedc0c0c17f07b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e156d1fa48006438e26004ad3420044e0cde66dae4000897dc9486e44f993e5
MD5 c52d63b54baf3ca7644e32c1d824b977
BLAKE2b-256 3120ec9f658d4242fa33830d9f71ea991ce32c12a4b68485b6d936451d8fb3f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 938f3bfa5cd5280a13e4f275568d57cefc8670c5f213a96e14b01028ae0df9a7
MD5 90054971b191df63266b24941616b52e
BLAKE2b-256 226332f4d289e6a190b2354ed23220b5425edb8935d0d84e3f648c25bad20761

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfd4a0cd4a66d0b3e6e9e6f1aa1498bf0ae5624ac219f1de762907cd1b90b147
MD5 98ffb7f376ebf0ad5a2d3dcfd0cabae3
BLAKE2b-256 ddbbdfe00e06c8534872915c8ea9ef5606a504d889d93bccbeac2d28573e1d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 378d899cd179a9b90e142112497b4b02d8a9dd124574bfdf5cad5083a300676a
MD5 df2a7c62367f3fc36735c02dd1887afa
BLAKE2b-256 ccd5ac286e4015820702592a846b504fea870f74aa8865aa13ad996a58702e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd0b1412abcffdb13590ee27d706a1d39fe5e57147c4795a4a8042a3d7e9a5ef
MD5 046d2ad3570fadddd3e072563f8681a4
BLAKE2b-256 de164ad04e81c64c2f19d55474365d07493f6601e78182829c39cd201b55d66f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a26171b6f9fc5ee85d9b870bc7891f578b624c2a8bd64669087e16f22abc52a9
MD5 bce62f7be45fecc3e3a2848b14737d7a
BLAKE2b-256 4553282cdab755d0b977fb8335a36caeaf73ca97e9d19d2498a50435cae65082

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9418f1a33f80d44a0a1cb5b20559f72b19729ac1f71e254e171d4eb3adc39845
MD5 77f06ce6259ed85dc9443203d12284f3
BLAKE2b-256 10b8bb6c1fa85f764ae8038fbdafd34abf4194e5171deba2ef711dd74f73224d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3f35fdee800354ff9617728c563544b50a8e66df577c5d0845a7b3c93ca7977c
MD5 340f95539bcc2cc5367d953c1df71a42
BLAKE2b-256 43b35b89e546c7b2e8dfb322cab40b0470a1ff518ca76356b702a5456e6cf20c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 061743946312d06fd2101f5bcf6b94e87901242f626cbad93bbb8d1156ec5a45
MD5 35f0c14e0e6cc1a7622eb90791805fa1
BLAKE2b-256 8bd341e52ef0229ce89171eb9e846aeaa25d410a9dd0e07a5da0be98d3991d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b923e46db273ed0f52d88617bfc04c6f866d7f13ad43540223690e1c8b7f8f1c
MD5 2f146acf092e9550ce9f3c6c01e35c7e
BLAKE2b-256 186f5ddb04b92ec7aad9bbb9a452dd07853e205006554cb229ee28c9ade29e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34b5b71ee7a94b94d6c00b391d33de359efdcaf8f524e41084c2aa81fac81b8a
MD5 dfa48ed04356776dac7411d423e3bacc
BLAKE2b-256 6c3eb21777d1bbe638669354a96405ff215a88421551f4c4326ed57f23bfc3c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af797bc48a5c1e7e471c963675318a7ac0ab018c1a6d289b077f8a7ba269b5d9
MD5 4635676413650f1e76268e200b9f421c
BLAKE2b-256 e6568290867228099e89405a7655ccd305c8f1aca91f02976ec8f0ee6e0f291d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed47c8119c427e58b047e669e44b27eb6ee7e4fd59424acbeb4f1cf863635f27
MD5 905816fc790505d1eca30ca60941cb33
BLAKE2b-256 e62fc62b3798954cac7cab3c46cca2f9f9d26a52f5b26a3b86fe128526722826

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b52c69aaa78d12a974cea6c1a024554bb987b5a7e9d1cf8ce4dcfc966754b29
MD5 e17d6a9a8e558fc2a1e5800d523c49ff
BLAKE2b-256 7dd00504d17640adeaccb7426f265925b1b7dc5ab34de09f92a3a932cbb41c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79430c93b6480c772059bea4f626e1d7c8fdb4530758f658064aa726ffa02a11
MD5 0e8f9edf4f71e973c1e8cbd649cb79fa
BLAKE2b-256 b2e7660c232ed5d1c2de049c91ea87772abf298432b4b422746f83da9edb4fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1ee149591159cfb2e723ffc0348de3d5a4a63649b60360914b6377b1ca138c1
MD5 b428ee82af57223734c052b6359ba057
BLAKE2b-256 9a7d63721a6887d6df0d751e82d69c280212d70140e5c4208c73430678c048ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 851ea6e7175d8ecd0ccb15b431c8e9c6ab995a36deeac63a2fc9dbd26334c046
MD5 6d8071ef2ab99169dcf4f5d102484ffe
BLAKE2b-256 2e95860452f61f465904e066a39ef669021b53ac03e0387986d87315563f9036

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 516997ec5de817fb4f436145c3965b5ea20c21ea96e12052254b6fb5901d939c
MD5 8d1cce42cac48958cc4c0e855c363039
BLAKE2b-256 c8622245438a9a1658175ea38ddeee34e8a8988a7c29882c4b964d78daafbfff

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b502b73b15fdc136a70dbcad992eb444402451fcb06cfd60bcb31a4e20478c9
MD5 6be97585ab62ca19aa76254b954fa72a
BLAKE2b-256 29e691d5fcdd0cdb5adee88c489ea5df683677a415866c3cca23ad84306f3eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c790ea4f454037225c15ef4d2de833d9d5a81553e179f6425c0b9cf21fd08cb4
MD5 89e557ddc238cbb0fe82529a12f2d068
BLAKE2b-256 11851ab856116c84959216d78deb221f115ae4e416dcfd1b29e9a2035729e4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fc4b5f1bde233e4fb3902ab6a1d9269733444d1e756944d33f2eeaa7b741f27
MD5 fbfd2bc0767a2f6d2a5bafc0ad575c5b
BLAKE2b-256 a284d9d8614d9ba8855eb44fb427c55a7f6edb781082ce52da9ae3b5496aca30

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04b4f1223ee311f20223308c96a5589da6878f4ae01a6aecbfb093a05337e0cd
MD5 0d10bcdef841c327bd1c420a27805c63
BLAKE2b-256 6edc92bc598a197e7101c4da9179d8227b3da82bfeaab783e7d4b17fb3bc5328

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6be5b38a52748c3d12cbcab926b69306c944d2627d68a43b17a0bade50691d43
MD5 6e9ce7ef6c1786c4ebdee035db8d6b52
BLAKE2b-256 93e7780fa27e0ca4247ff26a64994b656b2a60edfbea4290577ca0d50c587629

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23d0d53c2e5e5e70942819b6a8665d74130c0e25cbec0be8a3db6ed2d25e11cc
MD5 2b1d530f615e6f6298a1f73cc15ef649
BLAKE2b-256 5e1272e1f0a7ee4f1e666548c22cafef6731521a0538bce12141bf865372bf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bbdb56f533312cbc7f7439bbe9d22dffb549136673e03c5e201bca140682285
MD5 3ecaa523dd93e3a9f7223d42ebed251e
BLAKE2b-256 c96d49b51395f15d3d366d429e30b156d1a43dea6f0a862107a16da00dce250b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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

File details

Details for the file crypt4gh-1.8.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crypt4gh-1.8.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3889114380775500e0081ee453770c1033a4565d2027571c12b554d9706863b1
MD5 9a1fa594f6006696321a8a31776a7a29
BLAKE2b-256 1b19859b6c51aa68b92c9819d6d19d7ca6c24a16c9368512419bce726dbcd8de

See more details on using hashes here.

Provenance

The following attestation bundles were made for crypt4gh-1.8.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on EGA-archive/crypt4gh

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