Skip to main content

A python package implementing the crc32c algorithm in hardware and software

Project description

https://github.com/ICRAR/crc32c/workflows/Build%20and%20release%20to%20PyPI/badge.svg?branch=master https://badge.fury.io/py/crc32c.svg

This package implements the crc32c checksum algorithm. It automatically chooses between a hardware-based implementation (using the CRC32C SSE 4.2 instruction of Intel CPUs, and the crc32* instructions on ARMv8 CPUs), or a software-based one when no hardware support can be found.

Because crc32c is in PyPI, you can install it with:

pip install crc32c

Supported platforms are Linux and OSX using the gcc and clang compilers, and Windows using the Visual Studio compiler. Other compilers in Windows (MinGW for instance) might work. Binary wheels are also provided in PyPI for major platforms/architectures.

The project is using certain gcc/clang compiler extensions to support building hardware-specific functions that might not be supported by older compiler versions.

Usage

The only method exposed by this module is crc32c(data, [crc]). It computes the CRC32C checksum of data starting with an initial crc checksum, similarly to how the built-in binascii.crc32 works. It can thus be used like this:

print(crc32c.crc32c(b'hello world'))
# 3381945770
crc = crc32c.crc32c(b'hello')
print(crc32c.crc32c(b' world', crc))
# 3381945770

In older versions, the function exposed by this module was called crc32. That name is still present but deprecated, and will be removed in new versions of the library.

Additionally one can consult the following module-level values:

  • hardware_based indicates if the algorithm in use is software- or hardware-based.

  • big_endian indicates whether the platform is big endian or not.

Implementation details

By default, if your CPU doesn’t have CRC32C hardware support, the package will fallback to use a software implementation of the crc32c checksum algorithm. This behavior can be changed by setting the CRC32C_SW_MODE environment variable to one of the following values:

  • auto: same as if unset, will eventually be discontinued.

  • force: use software implementation regardless of hardware support.

  • none: fail to import the module with an ImportError if no hardware support is found (old 1.x default behavior).

The software algorithm is based on Intel’s slice-by-8 package, with some adaptations done by Evan Jones and packaging provided by Ferry Toth. Further adaptations were required to make the code more portable and fit for inclusion within this python package.

The Intel SSE 4.2 algorithm is based on Mark Adler’s code, with some modifications required to make the code more portable and fit for inclusion within this python package.

The ARMv8 hardware implementation is based on Google’s crc32c C++ library.

License

This package is licensed under the LGPL-2.1 license.

The original slice-by-8 software algorithm is licensed under the 2-clause BSD licence.

Further modifications to the slice-by-8 software algorithm are licensed under a 3-clause BSD licence

The original Intel SSE 4.2 crc32c algorithm’s code is licensed under a custom license embedded in the crc32c_adler.c file.

The original crc32c ARMv8 hardware code is licensed under a 3-clause BSD license.

Project details


Download files

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

Source Distribution

crc32c-2.4.tar.gz (38.3 kB view details)

Uploaded Source

Built Distributions

crc32c-2.4-pp310-pypy310_pp73-win_amd64.whl (32.2 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (28.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.4-pp39-pypy39_pp73-win_amd64.whl (32.2 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (28.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.4-pp38-pypy38_pp73-win_amd64.whl (32.2 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (28.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.4-pp37-pypy37_pp73-win_amd64.whl (32.2 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (28.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.4-cp312-cp312-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

crc32c-2.4-cp312-cp312-win32.whl (30.8 kB view details)

Uploaded CPython 3.12 Windows x86

crc32c-2.4-cp312-cp312-musllinux_1_1_x86_64.whl (47.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

crc32c-2.4-cp312-cp312-musllinux_1_1_i686.whl (47.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

crc32c-2.4-cp312-cp312-musllinux_1_1_aarch64.whl (49.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

crc32c-2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

crc32c-2.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-cp312-cp312-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

crc32c-2.4-cp312-cp312-macosx_10_9_x86_64.whl (29.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

crc32c-2.4-cp312-cp312-macosx_10_9_universal2.whl (41.3 kB view details)

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

crc32c-2.4-cp311-cp311-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

crc32c-2.4-cp311-cp311-win32.whl (30.8 kB view details)

Uploaded CPython 3.11 Windows x86

crc32c-2.4-cp311-cp311-musllinux_1_1_x86_64.whl (48.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

crc32c-2.4-cp311-cp311-musllinux_1_1_i686.whl (47.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

crc32c-2.4-cp311-cp311-musllinux_1_1_aarch64.whl (49.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

crc32c-2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

crc32c-2.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.2 kB view details)

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

crc32c-2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-cp311-cp311-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

crc32c-2.4-cp311-cp311-macosx_10_9_x86_64.whl (29.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

crc32c-2.4-cp311-cp311-macosx_10_9_universal2.whl (41.3 kB view details)

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

crc32c-2.4-cp310-cp310-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

crc32c-2.4-cp310-cp310-win32.whl (30.8 kB view details)

Uploaded CPython 3.10 Windows x86

crc32c-2.4-cp310-cp310-musllinux_1_1_x86_64.whl (47.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

crc32c-2.4-cp310-cp310-musllinux_1_1_i686.whl (46.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

crc32c-2.4-cp310-cp310-musllinux_1_1_aarch64.whl (48.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

crc32c-2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

crc32c-2.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-cp310-cp310-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

crc32c-2.4-cp310-cp310-macosx_10_9_x86_64.whl (29.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

crc32c-2.4-cp310-cp310-macosx_10_9_universal2.whl (41.3 kB view details)

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

crc32c-2.4-cp39-cp39-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

crc32c-2.4-cp39-cp39-win32.whl (30.8 kB view details)

Uploaded CPython 3.9 Windows x86

crc32c-2.4-cp39-cp39-musllinux_1_1_x86_64.whl (47.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

crc32c-2.4-cp39-cp39-musllinux_1_1_i686.whl (46.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

crc32c-2.4-cp39-cp39-musllinux_1_1_aarch64.whl (48.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

crc32c-2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

crc32c-2.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.0 kB view details)

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

crc32c-2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-cp39-cp39-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

crc32c-2.4-cp39-cp39-macosx_10_9_x86_64.whl (29.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

crc32c-2.4-cp39-cp39-macosx_10_9_universal2.whl (41.3 kB view details)

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

crc32c-2.4-cp38-cp38-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

crc32c-2.4-cp38-cp38-win32.whl (30.8 kB view details)

Uploaded CPython 3.8 Windows x86

crc32c-2.4-cp38-cp38-musllinux_1_1_x86_64.whl (47.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

crc32c-2.4-cp38-cp38-musllinux_1_1_i686.whl (46.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

crc32c-2.4-cp38-cp38-musllinux_1_1_aarch64.whl (48.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

crc32c-2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

crc32c-2.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-cp38-cp38-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

crc32c-2.4-cp38-cp38-macosx_10_9_x86_64.whl (29.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

crc32c-2.4-cp38-cp38-macosx_10_9_universal2.whl (41.3 kB view details)

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

crc32c-2.4-cp37-cp37m-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

crc32c-2.4-cp37-cp37m-win32.whl (30.8 kB view details)

Uploaded CPython 3.7m Windows x86

crc32c-2.4-cp37-cp37m-musllinux_1_1_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

crc32c-2.4-cp37-cp37m-musllinux_1_1_i686.whl (47.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

crc32c-2.4-cp37-cp37m-musllinux_1_1_aarch64.whl (49.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

crc32c-2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

crc32c-2.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-cp37-cp37m-macosx_10_9_x86_64.whl (29.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

crc32c-2.4-cp36-cp36m-win_amd64.whl (32.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

crc32c-2.4-cp36-cp36m-win32.whl (31.0 kB view details)

Uploaded CPython 3.6m Windows x86

crc32c-2.4-cp36-cp36m-musllinux_1_1_x86_64.whl (47.3 kB view details)

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

crc32c-2.4-cp36-cp36m-musllinux_1_1_i686.whl (46.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

crc32c-2.4-cp36-cp36m-musllinux_1_1_aarch64.whl (48.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

crc32c-2.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

crc32c-2.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.5 kB view details)

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

crc32c-2.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

crc32c-2.4-cp36-cp36m-macosx_10_9_x86_64.whl (29.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file crc32c-2.4.tar.gz.

File metadata

  • Download URL: crc32c-2.4.tar.gz
  • Upload date:
  • Size: 38.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4.tar.gz
Algorithm Hash digest
SHA256 d985c4d9b1a1fd16c593d83f8735a8e4e156790a95338a1e0b199aac51ca1e5e
MD5 7bc45efa4b0da7e4b2c29477528522cf
BLAKE2b-256 6f1947ac8d1d5b81a83272fe56d4cf425274437fd619ed0af9a5f9805484748c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5a0f7eeaa37cff2ccfaa155906e7079716535b02c6211bf1be58542a3524558d
MD5 c22e3b4e267742d80040ea0a162733a4
BLAKE2b-256 53fe954cde28c6f7f6cb5ec9fba0c144ef1053bff1c54924e9e59ed56721fafa

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a93e778a60cb8bb609dc4d596ccedb933e833c94d828820bccb929829321dbc0
MD5 d63ec48b4be6947c78f84e53d9d92eea
BLAKE2b-256 684d8d523decdb7d12b0f638699cb88c89a3ec53936d4108c810c81a94d9f2aa

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96a8c2d32dc07872c16113bf2a51803d5101ff7e616d9cd94fad9e24066e75cb
MD5 a81f612ba2412c02f43b24befc4bd2ed
BLAKE2b-256 80d0e0e55a7fcb75238eea8977c27a98c91f0b4bac01392bbd7dfb01f1d65abf

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 625c9fafb4ed85a335ca95c2869c0ad873ae8f18aa8a149314a3b1129b36cda7
MD5 b0ab93e9453c3872a61d2090e614459b
BLAKE2b-256 c65120441c207101ff197898d4feee6644e7f67dcf8197cd9950741816f02879

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9247cc523fbb7e2166a7058f6723c444fd07b9bf5c87c5c242fd635d46fe9089
MD5 532e89b433711daf3b3f0497d67c02fd
BLAKE2b-256 30bf8e0a28b9e3392b9634e114011bc62f2632d3edc629fb6a11bf86e8f5da7e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7f6775d6266f8f72734c2e8e2663262fef3a9ccc1953791099c21f19be58d5de
MD5 030436753c2e51c619673591138a59c0
BLAKE2b-256 ed0910ed57866fea80ef6f41ab7681d052f47f2f432718ab6f72fb7f3b887e14

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a9dc5771634fafd1a548d7f84cfc0f1b8bb03f7fb4913614fb0f5998e2137af
MD5 db11073c0b2c699baad21b3b1da85167
BLAKE2b-256 fe2a6617395bb1da7e7ca0c7b4febe852d04ac4cb72e6f681fbc8ce27e243d0c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3b192e3368faee25f63a544902f242a010974b12d3ee415871c3163b5d7547b
MD5 4ed81de1063b4e23030f3039ca08e21e
BLAKE2b-256 6f4a82ade585157adb3d643391aac192c863fd2f92dba8a47abacd2d615ce2d9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b341f6f4a5222c171c04de2c2918212d8087c9c9955996c8af502169dd6ce376
MD5 a41e328b23872fc44cb2ee00caf16582
BLAKE2b-256 b5238a3ca3dcfe4bf0d1814a1a3aa84e5567eb7f71c8714090f51bf3773a6d3a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53c4fd7e21a69df50611800f97db74f21aa2d4b122bc740a88385023c2e7bf0c
MD5 4a57d27b613cf4a1f063e93e4e32738a
BLAKE2b-256 e1c75112a1ae9a18e771d8a79bcc6f762c11e037da497acd30f9cddba37f53ae

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c96e20f3ea5381126c0c66ad52857942dde9faa4ac4499086a55cc17d3d1bfdb
MD5 67ca34c76d16e1a6dd16c724381f970d
BLAKE2b-256 2cad93a1e8df11ecbecb004a70641ee6ad30b6e2f13ebe604dd720c3dbd4e552

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c0fe3b69f6c1ec9f0600be6564439da7e2af8ee9ffd5ac7b213591671e09a66
MD5 cdc5a68a90829a628009c8cfbae2b104
BLAKE2b-256 c50d7d5c069d4d2a3aa8672d5d6e94d11b486ad175c544774428933c725cd905

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 512af034f21f0fe4f0b599cd4278332c970ddc9122df0aadda5193c3a6edb87a
MD5 1c1a35e886b5225b60f9b21fe3bd5554
BLAKE2b-256 065a430215ecbd0ab74120e2e5bbcf49ea39fc3c1476e4d1a35b3f71e52bcc4c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a90b7c3305ec5d03c5791f77ba7a3cb49ac74de762e2307c62dd6f3985b27a9d
MD5 2f18aa91de751cd1a90277ef028d6926
BLAKE2b-256 59564b1fc018320a92c9c77ca6ef6ea899dbbafb0c7d2e7bac5a6e7b0712d1f3

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62f4cd80d02b0337b33ddd3889267f2ad93472ea36ae81656ad50340aa8e5784
MD5 f28fd812a99c177c590d3554ef04a9d7
BLAKE2b-256 ad4f9e04745e1818fd1f972f0e16296d5ad1285141882a3ead3337c3edb7f6dd

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fd082fa802d2183179554ad6a202c3ec7c101b2eda283e9074e0f7b9a68f5504
MD5 a3ebc0de2f1f98db49ca7ce83bb76657
BLAKE2b-256 930e67048087a9434f49a16b0bf7408cd028fd4ea9825a4a0c3276b393dd587b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cbbefad3c6aea43e74c5a6e968b4226426ba01b88a5922778566bdba65c3f74
MD5 c4d10f576c13bfc08f4b0351a1bb2734
BLAKE2b-256 b0bf4529dae5f7b551e434d8699bec109765b87f54e136d005eff42d0cb2e2d8

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0429062fe7d6568d44548dccdbd0a8a63fc7b0fdc20bbde91f5b1e3ea3cccab5
MD5 fde3d5cd9efa544d07e322b4c2dc174c
BLAKE2b-256 ec6c8deab0e69f0d2b2d0c5a326d0ea297f537ee6e3945b4145c0325489d9c93

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39aedd018ec2e70f7322778a8a2b7ed1a13b183aa6b9622e0f8df59e6af2f5bf
MD5 c1b997d692f15730528abbfc9d4f5c69
BLAKE2b-256 ecb39d335903bc5dd2b419e16836cbcd2fcdaedce5ac49efe8a8208c48679dd2

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a00edfa728279367de8b394822b3439fa5927002b53d98445b6ec628f4269b0f
MD5 ffb103fc7922ecdf0c034535bc63dd72
BLAKE2b-256 ea47407299d7038a362bf212a98fa59786514e6d04b76521589a431f5aa12c47

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 32.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d39e4af6d69cb23fa86030dc50737abd6d5f399dc95ab1bd8a89d69329da8aeb
MD5 db8841f5b5a2f82e563e3c27a20d3337
BLAKE2b-256 2c3a5eaef29d5fc0dff49414768bdde467460b77bb78d03db50e189158056535

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: crc32c-2.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8167d620bf80ecd0eafc0b0dd9b039e6ec181eed06288ad6cec346bc058dc1d2
MD5 c7bc9328758cd50dc4003cac3fad7cfa
BLAKE2b-256 89d49786ca34cd02fd3d6ed6a5579f599e77a8809637bb06af160bc62b535fa4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3975c76e10386e5a9049bc948c13c5cb996e26e05b736723c4c88f4f034c1776
MD5 c9dff8b1bbeb6e97b1f9710edc0a25e8
BLAKE2b-256 b839172cd57e3a3151711ef9f20d2f1334c88ced330a1d5e004b9ac236ea6c7f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 15cc1e2d7749b3096cbca08a707fafb61d63a3d5306aa42ce7a131d504d3b931
MD5 1870ecd05e441b3034c270d088e5fffe
BLAKE2b-256 97e9b6182a71aa97764d9821d33968bc6409d77f8ffd50c7baa19d497d845c73

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a66e68e9cc4c05db725235079d1f3f647120622e29761cc1e8c81b55eb7810dc
MD5 bd7caa718049a7192316447e31e522fd
BLAKE2b-256 b53d30465e8e8de140aebea37961c595eecd01d9ac1cca607b08ae7804fc8cc7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fca7abb3cea2453e136b2439f5bc9202660d057835b7005b2a589c2a6daa4c0
MD5 e27cb439cc3eff212205355c5f099a95
BLAKE2b-256 4ea7a09c1bdcf84247a8a080e93db30ccaeddd8567422754d33ca8baaebeed23

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aec0399578bc380497dc9441d58c7368d83c89f38423f799a315be08b3f0957b
MD5 381f91552818bcd126e45754ebf49c90
BLAKE2b-256 0136770e9d37da0d0cf9cefb1be22d45d6de83a0a12d3cde641471d6ff6916f2

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f529dbc0e22a1dbe86de712367960374073a2dca543a18c2b2e5ea77fda231b5
MD5 403c5a0af7ddee673985fdaedc5a4101
BLAKE2b-256 6a9446ec1d5be865cdea7684014e91510451f89df8c6d82da438c60127c1ca97

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc34af7d14ae61061d0f15eb3b819692471c5e7403fa2d9284c5c6fdbe621c9b
MD5 4907ea80f5868776b59d2494896d7c64
BLAKE2b-256 066f6b655582995d209e03f1a5168573aff91110c6f198634a163f23a735b50d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a95845816b739860684bac663bc98cc1a4358711a73d8602b4efa3611cab4d06
MD5 9df0480fd17113ff42f20d4a4880c124
BLAKE2b-256 6d8c71dbf6e0768a68c48cebf7072d8da0d8ffd79c0191ca784576c90dde691a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f7a2de234982a4a5b299b753f08c41257912c5d12076558238ceb4efdc5b07b
MD5 9abdd389280080bd8bbacdb4ce045244
BLAKE2b-256 befd0f86f8f9b2a340d9e7596f75469295e64fd8093b04a587d817a719cd383d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 32.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 977a748205dc7ab775b26a4f1ba5372b0ddf3e9bcb24ec78fcd8e9eaf836e572
MD5 17bdf031721fc28b876761614eeb1291
BLAKE2b-256 bf56a849667996c1def689588c84966c21b171778dcc66c68f5e33c3b6e71e76

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: crc32c-2.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 988c608cfc8e708690102e7abb5e2f98e68641cf0ab43ef8777430a963b02d70
MD5 0dc18d6eda4abd05eadb05c58041a535
BLAKE2b-256 0a33b584191653f8a4df535e8fbede43fb53ae4b88b400ed00dcb9506d882c74

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 db91b486df07a622553b64fb5d2a67696240914c63d7230410da3a636ea859dc
MD5 758100d3e2cef9f74f40c4074bb86acc
BLAKE2b-256 923029877f48331fb54403e3577f30c0c42adc3013ec1b4d4a929a21d93194dc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f50a52c10682e56a8fe6934a4e86600e93c4b42a5481b8ff3da0fecca1fa7bad
MD5 fb7358ce8d231a65eb504598da44011f
BLAKE2b-256 bc8346337bc8c12b68e5e0a28679a2f7ce9519d7c1f5d011389141810ed21990

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83e79881d47a0773137926f5beec89575906f3dd057e6b4a181c890840b9e08d
MD5 85cad69a35541c8d021af13aa6f99190
BLAKE2b-256 b53a7590c85fbd2058b967bdce9b2dd4dcc430481bdc10aa22d79aa51bd85a4b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a76ead3fbf8aea7170c5c32b680491551a6195f17b0e05765fb4b452594178ea
MD5 b3f447d162328462ec1ca79600df55e0
BLAKE2b-256 28d4154935d019ad1616a2402ea54a5a1633132e79544108c595565f6e86b355

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4262e7bcb578f4e86eb04c4bea02762889249480e0154adaed01bec4c25a068
MD5 111089e16a9a031c32bd5fa6a7b68e89
BLAKE2b-256 77cee8c97443f25a21fc03b2c8b0c95e4e49d3aeee76f88d3b006aac9011a4ef

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28c335908504bc84a5779cc41a9200178562c2c79050d8458ebe94d5702a8cf0
MD5 9ef9edd1fa1e2c5c1f21576c2793ca13
BLAKE2b-256 c28712ec2e59fd7d50db00d8168af75bb5324d49e7aef4fe6788638bf8d14fdb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bf83f8840d256d2d05d83c7ca2f5971e8a022e6106a14a70ea3667aa5981463
MD5 bb0f9f44493d2afeb05fd370c9754a5b
BLAKE2b-256 5f657b7d9f2eabff4ffcd902bf67f9eb930f6c20f097862f7658924980f538c7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37a8adef2aecc4158b2e3cd60e65b89a67368b3d01cbf05a80a57dd3a8cb785f
MD5 e232d597243fa724f9089ac1fe080e32
BLAKE2b-256 f5a18e6e6ff9673f64edf0d7cae8321c03054582247d69c5b67de36be720f780

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 77c4066f2093f50f2c400ac50b88b07739747088d1498c00d24a3166caed7213
MD5 324bc77f558637e0f975b971ffe9e3b3
BLAKE2b-256 a4feabf769576cbbb69904966a594eb97da8b0b65a085f867ae8a61c83d1b8fa

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 32.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c4f3f547f68715525d8fd0bb04c890e4968c6c20d04994dbac533631f7c4ad10
MD5 abae5568cf95a505eb8bf95b72ae2bb4
BLAKE2b-256 51d913676147d7baef620e2d54d79b6437eaa0c026801374ed5ce800ad7e9d21

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: crc32c-2.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2a64596f336c9d57fed222bac0b6b37432c9269d86624b7a3dfb9ba018e6c543
MD5 cc6f26166d6eaa4b7d770822c543fcb5
BLAKE2b-256 f14cc615eb994f2839cc983a201be9664194975cec327896537e7d011a0df19f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3c12a2c03fa27f5cf4d28f59c6923568351e0924e2996d878dbeacf83faea4d6
MD5 016ca8e0ad4e12852972242c7e79022f
BLAKE2b-256 0a682875ac974e68f60af07b3a9aa3d9a5be850fe5f6e5f50d53429597a45bcf

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 05f958a1a3f1a60c86f0f60079ec57b626251331b321a3b261c2a3ee29026d5c
MD5 c4536b89ff991209c3d46cb408c4f487
BLAKE2b-256 2d373f8428da732a023103ab30c051ad96899a8bad1782db00557a294b5f7fdb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b55f015d76b220eb4cb213ab3353f17c96fb76ed3d06c6cf404c091705302d89
MD5 5383bf4b9308bba88b96a8b50cf7b06c
BLAKE2b-256 e8f721f6a3ebb5f22ed7fe074df4f27209b8ee42704e64b278c70148709cb989

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d73e77f63f1a9fc3a6497b539fbcfde62dfe90daa2ad6edaad7df595164f76c0
MD5 2d08084d8db35af56d7490915b30624d
BLAKE2b-256 5b02e6558278d64325ad2c8101a28836c5d6e5f8884ab5a2aca6e2cc8d7b739c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4c9f501bb48e0a24bef9f0965ef83fcf882dfc2d4e9187e2721ba40d1e75c0e
MD5 11aec47d22eb32bd852bef02a2b5cd03
BLAKE2b-256 e1477b0e28e6482251dad83f521662b95677fa060e4a2f42e9b5bd6c84220bb8

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95281a7e1192c4a046986e8e3e4cf766dbd45e91b22b501b1ad2b19446e5a825
MD5 2aa98557e41bd5e44c489600087a1407
BLAKE2b-256 d24eaef4a0d3d6ca38ae9a3a05ba85f5d9ba80064e2cf63ea87931c34c7c38c4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e01e3651a7d56808b792a381485e13366fd20a507bf41e48f266ca17af4c068
MD5 b2bddc11a087168f7b052f3d1406922d
BLAKE2b-256 091533ee3da897a602ae9cac35b80b7b494a3d5808f4bbbfb95bdcfd8118b737

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95d46af714e01a091b17ac60526c7d78f21bf0c390cf013efb918a56191d0782
MD5 b16cb6289d199fdccc3a3a52ceaffd4b
BLAKE2b-256 65a1da0e5c49e9532d9043aa348f0320489354e996db6584cf96311133f865a8

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b26976cfd4ed65b8ea91e5b5dcff27c4bf227594216d89944cf04e3821b673a3
MD5 03f2a5c2d57c81dd891a34cae30f48be
BLAKE2b-256 241ed97b2441d2d46d12580c314bb15636a425401f806afb24bfe1e9979c0173

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 32.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 55775065e2c806acc3ecd1e72de8936e1c56dd967d81c89bc219477d65333c01
MD5 26ebcb2ac05aa17d6a9c5cfb71926a42
BLAKE2b-256 1077b49d3e19d2597af3aa7aa9b8bebd60a9cf9391472c929bf2d4c0f9291e63

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: crc32c-2.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 240f60443c1b8196b619e899c4eae30a09e38151f92c4436d24e119647e9f71a
MD5 6ce0af443c6c33b4e9c2d5bb20bb3bb2
BLAKE2b-256 d0276d6f1aa416b294b13e3e7e8e812ac42050de963abd811b03f2707e26a01f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a176337bdde989f3a1f0a930619baf2406521c12be744074c6f0eb4e7b6ba346
MD5 aeedb9cdd7db95aa37d617617536e595
BLAKE2b-256 077bf36ac29b5aac5dd7f27ffd639478e6a3028c1f7b6c5bc824aa7a6a9a75b0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 94820b8e069d5eb711afed7920b2b9eb7919869204e09434d71c7d1b8e1a00bf
MD5 21ece07248a71a109f0e867f5073361a
BLAKE2b-256 c80dfbc238675b672b1349eb5a6d9843d2d965f9b3687d5c91e3603165595f70

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b9b218cee7d820512a5d76d1e0d3aeeb24886f5a9f543685f5acb23d956c3f1
MD5 7e163fc94817b656f6efd07dce7d281e
BLAKE2b-256 4b6d5e85c77fccc3aa2001e3df5e7cffe8c837e99019f84cd491ec787483e6b3

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc06d46ae9390ef2ef973f1e609f388c40b2d120aa81bccc506a48534d7ee9b5
MD5 fb303355951d7de67e56469c697beae6
BLAKE2b-256 49588c513db153275d498ec752aad013672a139d9cdf68bdbc79e777231da849

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5124e149fdb0b6e1c58024be3b944e3650125d209ef3a2b07de303b6d619c60e
MD5 195962125c0946b68c39ff6e3afe01a7
BLAKE2b-256 d1ca2c5a0c85cd7fe8da67d33924d170770839329de9bc850acb9cea27b47c84

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9ee7970e7abb18f4a3700c0a0e10e662feb4a20cc4b7a5cb69693dc9d4cb858
MD5 c9a46a76f7e4df724ebf060d89bb67a9
BLAKE2b-256 da6423f01afeb7b5864614e4a4c7a5e71894b28245956e2d452af7070fb33dee

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e19ff2bb106a2c1afed9ffa1c38c877d0003cd5b4e8d821afcff743e18c8777
MD5 2d39dbd68b5a4130cab6fc696cc88596
BLAKE2b-256 b513548615b7bd0b9eb8be6f195a8c47d77f55bb14ce7c64d61dc9b76088f54d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8549d8405eae1b420ecba6d32ca8d8e37de98722b18f4254bc60fff7162b56d9
MD5 0a0cc9f788e4d56abb2aa4f0050eef86
BLAKE2b-256 bc69923f096a67709581589e584bb7ad58e41f3527dcd015cf077260c5b31b2a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7020406b9732001f29f4d77fbec664b3f85c1fcf5f459ae3977fa6e4846a23b6
MD5 d631dbf41fe217d6122d1471a26c8e17
BLAKE2b-256 b0b5de069122d12cddbb5d66105baf3d703b6fd42bd961b587a072b77fbbdcee

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 32.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5768230e26ebfa35e167eb58f7d36e72d290545e436cf3e50ec94071743be16b
MD5 50caa56ee09b0abd06a45f2660df5315
BLAKE2b-256 58a9435f60328f16239e77492aa51dffd0122f291df21500cea955b0a5a83a4e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: crc32c-2.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8bed35233cfe0af313b3b881af16f3ea9d4fce92e7c3c17120011103e063374a
MD5 6358d12b7a1152f9ce611dc06180cad6
BLAKE2b-256 fabe88274b1dd2db2577d8f9ed0a999c85323f8b7236d73e787296b03f6cf803

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1ccc74911a9815f0ec1d21130aa94b4d33ce04b4612e0144621dd5a15708ef5d
MD5 04fbb8e906ebe3784acf5f19eb76ab99
BLAKE2b-256 bb1dfe05a50c818b6d77c58c5ba76d05ad2b4df21479e39846c728ba33e70370

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9d85331942b9a9af00648cde7ee03fb6b51b7cf49cf98384c642b453874e30f5
MD5 808fcb3c34432047d12b58240852cf50
BLAKE2b-256 b0038688ca85d30690c6f35425de45231c00b6157b4c7b40461a56b1b1c2073d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc590453e1f3fa940c845338419947ffd765860f6f421abeb20bfe4d86517b5a
MD5 a2bf20800b856edc6eb354471e4479c4
BLAKE2b-256 8c9bf71a88b47f11c3a948eb2ddf955f095fd5f193d580411e41bcd0198215d7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fbe7a12a1ca4de17490f08518cff6e2a83610fa8c38c1cf7eadbcb7b7aad806
MD5 ef5d2c494a0076413c7cba00e5280984
BLAKE2b-256 a2dce119c7016fffccc8eb8852d3ecad1dbed1e7320c75ed17b3cebeb0b6146d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2e5dce1731925a9395240cd33edf15aaf17521694acea5596f5a21868492169
MD5 efee6b890d581b532a32d6fa23e7bd00
BLAKE2b-256 51d62ed2f9e0f735fee1372eee6027b83468f091bdf0460b2526915c55e4859d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 031339d84e80d8724e27f208bf4899ffc87854e0e6b743fc98f7d36162d7ce3c
MD5 caa4968b05e104df4f2cc2e704af9cfb
BLAKE2b-256 4096fa78f70d2e8172ce165d850a70d6ba088679538a21b1ecab5e4955373ac0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16b2fad68d0f79cd4203940988a3a4bd406a283e73d9f77a03ad8ee6ca92ae20
MD5 14769214c51533e82ac490c6fea6d30e
BLAKE2b-256 cd81e7d33e01757dd624d80ac07223bc5138eded35134dbac5f2e86d25fd8608

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10817aa19b6c97d358a28f49ff85057638ae6e750d602b363b138a1049299e97
MD5 2c74ba6f89105e7c21048483c56ac8d7
BLAKE2b-256 7a1a019ce4855477dc8e321ae8601a42d038b56e045602c68a275720c7ac58fd

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b9ec8a8c91cbd17dd86bd75ab96db6adf4fcb450e7f0cbed6140174251ad79a3
MD5 e98a0c89b4c66e9d9fc6dadb0995ddd1
BLAKE2b-256 03a262ab5aa1c62430638f9f8c4af10537b482864d7f527afb7aa3576822139e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 32.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6464b53971ac49098fec692cf022d69548fbd07a02290033f8ed00a23d69055d
MD5 8aa5051ab635dd88fa2bd6549acc5e41
BLAKE2b-256 cdff08f5dbcf474b7b7eb635af163118f9adaa5d46ca1c5dd4cb2fce91457c68

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: crc32c-2.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 866747ffbcd86b49176ddcc9234ef2ddea58d77f3fa9fa1207633fcbdfae37bd
MD5 38532ebee65c206f785fddcd753d9ee6
BLAKE2b-256 194a066abefbe5678eb0e069fec22cc63fd1ee6d52a04e3a8148a3f810f694fc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 057d1d22033e44611eb69ffbb67bcaee6cc3dab3e1635874908de959aece279f
MD5 4c5c881d38c5bb16b9f8a9563a1b7122
BLAKE2b-256 d6af3b2e235d93908e969c7254b943b2c5c21a6f9161dfcf23fb77e459ca9a46

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1d5df23c0ef1564ea5ffbb6476f34e0f289fc18c48562e13fc7a402ba02847b7
MD5 1f1fe48699a5fb1d47bc2b06de0d1eba
BLAKE2b-256 27044891a74a205fad59e2fe6c696f8b4da0a1282da580edd50a27f394304afb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96c3e4c940ff987cb15f41e0f5bc582c0dfa9c961f82686ee8478afb38056c13
MD5 441b07955ca1ac3b03cc61e39083ed95
BLAKE2b-256 5d476d0e7c3a1140d92a3cc786c721474fdc0d20f976c3c184f605f661a343f9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce14694790a85b60cf3f4a3244f6bb6cf2f303e51538734a23f9a3698ba7d53b
MD5 de980e29ef3ff0d84da469cff9e99fc7
BLAKE2b-256 e87ce3e4c8d041eb0eb0a3b672228dae2a6b0b89af9470368658bbb04dcf17ec

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bc180735766f8d85142ee89807c3414b0179456ca5149018d697ead17c3c014
MD5 9ccab99c70e6285adeb041e0c5f421ab
BLAKE2b-256 c32b06e110248fc8b5116b0ea1aa78b380818256ed7113369bd8a4e53afb03f6

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 954eff112ad1586c3b719c3d6e5c00aa97c9484fdb629643b0b800a9416daa8d
MD5 a7a97ea0edfbd7e543165fe082e818ef
BLAKE2b-256 7d3de31146d03f1a98433ef25ef20737a6b224febf796c496a2529ce609a81d0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 031353d47819b0d6d4ea683dd5b6aecc72e3682449e88457f38a670cb3f354b8
MD5 11e1907d3df4cf46f266f0f076bc7423
BLAKE2b-256 d8fe715a59c80c98a9b3f84ec1cec96209fccd48a74143493715ec7f4613d28a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 32.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5c291a08519d170cd58787fe6d70e3828df10a86c72cefd2758dd6434e05888f
MD5 d7a76846ac9a22cf3586ad90a96a5394
BLAKE2b-256 27fc623afc97e6f8e12a369efbf8e123954fc319d162e5efbb727f30b0989ff3

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: crc32c-2.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for crc32c-2.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 34ea2c204b8986c31789e8ff297bbd88e340a8a8c53d02d1802088494322911d
MD5 84d4227f9fd5753d2ef92847ec555211
BLAKE2b-256 fc599d3d90a4ec5ef60b6bee660dd83f06387bde377b450039ee7a974a24da70

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc8769c407f98a659c7694399d0b8773f0f7b9b5424e09e45d4e1036037efdf7
MD5 66de9ca065b99844e2dd8127b397d515
BLAKE2b-256 3931a6a7350a26e3f3fd1190ff8a71104c4805cac260c3220979f6f5dab821a3

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f23eaa542d2ebb0222d96d217a346c398f0ffb1535c694a76a3d71a2752eadad
MD5 4935534521ffdf8d25c374f64366da98
BLAKE2b-256 3a73bfc13afcf8cb3c71b7d4d0843587340abd9c2be8a6659efca4c8e55635ff

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9cde473e48e566f4733607ab91e25ff13fd6859bb95fb1bef5ad8bb6e182f15
MD5 c72014f43ec369893d1089721f0df200
BLAKE2b-256 a7200b48056a4a8ab8f907ed8d6fc1d05a8937b3425ec899dba3974e6c45d314

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c360a88b6acfe0067516df616e7a9c8174c99803ef39815a8bb57efae93b72e
MD5 eb4af5b37e6ec48768be6a542c3b9369
BLAKE2b-256 7f2da3b5ad67b406a5ec1a90656dcdd3fd52613b0ec57292783b3a01e3b2d0ed

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e3c10c238dd16747a532496ef608ceff755c2635c21657248a8c032d32c8e70
MD5 3c470d6f33ec0d9957f22f69a2c94284
BLAKE2b-256 29563065aa055d2a06cd5a5c6b2d818f0c7d6e58410683f802eb82a3b2a29826

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c58243f207c836db732165fbe3cf113029476e1e8f58f3c7d0b7fa29c99dcec8
MD5 06f93c11e0f0d5ae22685ebf234d9534
BLAKE2b-256 2702434345d05bece8c72c60efe7c423b89e7f342d29b9ea1068ad89f21a9289

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3742a602867966b088a6ba245fa44f5f6c232e352e2474bf8a53992df97f3f9b
MD5 250c0abb03a8da605095702aeef28e86
BLAKE2b-256 d24bace02b0fc57bc840cd4b74abb301f611f090938760a4a2f35d4be88e3862

See more details on using hashes here.

Provenance

Supported by

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