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.

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.3.post0.tar.gz (38.5 kB view details)

Uploaded Source

Built Distributions

crc32c-2.3.post0-pp39-pypy39_pp73-win_amd64.whl (32.3 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.3.post0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 kB view details)

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

crc32c-2.3.post0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

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

crc32c-2.3.post0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.3.post0-pp38-pypy38_pp73-win_amd64.whl (32.3 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.3.post0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 kB view details)

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

crc32c-2.3.post0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

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

crc32c-2.3.post0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.3.post0-pp37-pypy37_pp73-win_amd64.whl (32.3 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.3.post0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 kB view details)

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

crc32c-2.3.post0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

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

crc32c-2.3.post0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.3.post0-cp312-cp312-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

crc32c-2.3.post0-cp312-cp312-win32.whl (30.9 kB view details)

Uploaded CPython 3.12 Windows x86

crc32c-2.3.post0-cp312-cp312-musllinux_1_1_x86_64.whl (48.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

crc32c-2.3.post0-cp312-cp312-musllinux_1_1_i686.whl (47.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

crc32c-2.3.post0-cp312-cp312-musllinux_1_1_aarch64.whl (49.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

crc32c-2.3.post0-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.3.post0-cp312-cp312-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.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.3.post0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.5 kB view details)

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

crc32c-2.3.post0-cp312-cp312-macosx_11_0_arm64.whl (27.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

crc32c-2.3.post0-cp312-cp312-macosx_10_9_x86_64.whl (29.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

crc32c-2.3.post0-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.3.post0-cp311-cp311-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

crc32c-2.3.post0-cp311-cp311-win32.whl (30.9 kB view details)

Uploaded CPython 3.11 Windows x86

crc32c-2.3.post0-cp311-cp311-musllinux_1_1_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

crc32c-2.3.post0-cp311-cp311-musllinux_1_1_i686.whl (47.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

crc32c-2.3.post0-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.3.post0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.3 kB view details)

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

crc32c-2.3.post0-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.3.post0-cp311-cp311-macosx_11_0_arm64.whl (27.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

crc32c-2.3.post0-cp311-cp311-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

crc32c-2.3.post0-cp311-cp311-macosx_10_9_universal2.whl (40.9 kB view details)

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

crc32c-2.3.post0-cp310-cp310-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

crc32c-2.3.post0-cp310-cp310-win32.whl (30.9 kB view details)

Uploaded CPython 3.10 Windows x86

crc32c-2.3.post0-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.3.post0-cp310-cp310-musllinux_1_1_i686.whl (46.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

crc32c-2.3.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-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.3.post0-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.3.post0-cp310-cp310-macosx_11_0_arm64.whl (27.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

crc32c-2.3.post0-cp310-cp310-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

crc32c-2.3.post0-cp310-cp310-macosx_10_9_universal2.whl (40.9 kB view details)

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

crc32c-2.3.post0-cp39-cp39-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

crc32c-2.3.post0-cp39-cp39-win32.whl (30.9 kB view details)

Uploaded CPython 3.9 Windows x86

crc32c-2.3.post0-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.3.post0-cp39-cp39-musllinux_1_1_i686.whl (46.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

crc32c-2.3.post0-cp39-cp39-musllinux_1_1_aarch64.whl (48.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

crc32c-2.3.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.1 kB view details)

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

crc32c-2.3.post0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.1 kB view details)

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

crc32c-2.3.post0-cp39-cp39-macosx_11_0_arm64.whl (27.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

crc32c-2.3.post0-cp39-cp39-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

crc32c-2.3.post0-cp39-cp39-macosx_10_9_universal2.whl (40.9 kB view details)

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

crc32c-2.3.post0-cp38-cp38-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

crc32c-2.3.post0-cp38-cp38-win32.whl (30.9 kB view details)

Uploaded CPython 3.8 Windows x86

crc32c-2.3.post0-cp38-cp38-musllinux_1_1_x86_64.whl (47.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

crc32c-2.3.post0-cp38-cp38-musllinux_1_1_i686.whl (46.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

crc32c-2.3.post0-cp38-cp38-musllinux_1_1_aarch64.whl (48.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

crc32c-2.3.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (45.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.7 kB view details)

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

crc32c-2.3.post0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.7 kB view details)

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

crc32c-2.3.post0-cp38-cp38-macosx_11_0_arm64.whl (27.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

crc32c-2.3.post0-cp38-cp38-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

crc32c-2.3.post0-cp38-cp38-macosx_10_9_universal2.whl (40.9 kB view details)

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

crc32c-2.3.post0-cp37-cp37m-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

crc32c-2.3.post0-cp37-cp37m-win32.whl (30.9 kB view details)

Uploaded CPython 3.7m Windows x86

crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_x86_64.whl (48.3 kB view details)

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

crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_i686.whl (47.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

crc32c-2.3.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-cp37-cp37m-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.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.3.post0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.6 kB view details)

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

crc32c-2.3.post0-cp37-cp37m-macosx_10_9_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

crc32c-2.3.post0-cp36-cp36m-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

crc32c-2.3.post0-cp36-cp36m-win32.whl (30.8 kB view details)

Uploaded CPython 3.6m Windows x86

crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_x86_64.whl (47.4 kB view details)

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

crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_i686.whl (46.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_aarch64.whl (48.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

crc32c-2.3.post0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

crc32c-2.3.post0-cp36-cp36m-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.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.3.post0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.6 kB view details)

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

crc32c-2.3.post0-cp36-cp36m-macosx_10_9_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file crc32c-2.3.post0.tar.gz.

File metadata

  • Download URL: crc32c-2.3.post0.tar.gz
  • Upload date:
  • Size: 38.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for crc32c-2.3.post0.tar.gz
Algorithm Hash digest
SHA256 7d4b39ca6791830c4f1c053d2d8983627af702f0445535ff53d3220f35cf6ce6
MD5 fd5f7346b95cfe5d5c623c2b172345df
BLAKE2b-256 a722072a53af9b2c68442ce4f6b314d32de424b024243f4198fc6214bc4d640f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3e547c06a1dda463daf398661af6bda767debe0097630b48c463605e38ade31a
MD5 8381390175f940aff37c7fcf6ea607f9
BLAKE2b-256 b2a5b05c9f104d22da084f8c16344b439a75aabc9704ec7caea7c848d1dbe0c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0467261c67377a92ad6665a9590b3820cfb12d59c3c6ccac6326200e032ddda4
MD5 e93b0ddd64590f34ba1c8c1beec9fffa
BLAKE2b-256 5a3e3e983c89d11fba85237a77bda7758d5ff817a713b41fdd2f7f3a076a9e11

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80ddf6b0594bb980a635ff4818c0c64927193c1a09e8b5b6986769e94a7ba9ee
MD5 bab34f4a97b9dec2dea00307c45945f0
BLAKE2b-256 ae213ca3e4fe01f6ad48546c1db67fcb603ca870773fac713a0e1c89dbe696af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1101b4e680085ea7c01074d38378610392262bc56936ec17eed61f1372197193
MD5 b98f13852e40323bdb76e10ab7997079
BLAKE2b-256 f473619a83e15485fb2f31e8a8493b283dae9417bf00833b57f4a1db297a9b2e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bce06be1d9aa7e4b3e3038fe80facafa3526bec9e484ec089c035b8018727c1b
MD5 95666c6a240b29b5db20439b6dd68a0b
BLAKE2b-256 1ec0493be99c5ca06ea14e6e9c9ce6434d7a428ba614962540a35c23e3464030

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a4d98142f6e40dec28994846a6acafd96ba822d81b3c6671633fb11d41692c32
MD5 1f0c572fe963223aec5f9e6cf28766c5
BLAKE2b-256 97d62c67edecea39dbf34ea512bc9e53b1e4ff7773f47551ebc5429d8bca1d07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6ad74ec499a3d6981900c1e2873b1e6a19e2ee3c650a3e611c3076ad9167f3a
MD5 2cfa7b0c497f430784ae1c96a76892a3
BLAKE2b-256 902380fd28b93025d6d38924c42363a719d3b3ba5cb357df6c6add8cb9e92972

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b823aacfefe0001a08667d7a4d7dd87133537e3628ed581fa416829a5dad26fd
MD5 c2432220c1af1059fb317ba95855278a
BLAKE2b-256 5ab92aa9542a21e0f5c0b9ba4f30453e0f1a6b67983501ce73116f766b7d18ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69cb66a0c680ae531df7f32833a3d6df26aeeb144c0f7a8899d2d5bb7c9cdc2c
MD5 23bcdc546cd647ae0da9626e3e95553d
BLAKE2b-256 56cd04a319593d3fdf2bf039609f538e30b4cc38c2e7b9e62b6e5d4e15fb63a2

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 129b0ac8ee712ce42aae36d7e6e5202ab080f06117f57ba2c894226586e80050
MD5 5f6793787bfe3042f704fb763c3dbd6d
BLAKE2b-256 c504938478284085ed5f4c3f4a338ef1935a330836186af3c9e9d9de872a54ec

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b6a4df4a978dbf43e548a008dc4686f6e24d52defb8c03a79b67aebfeaa2caa6
MD5 6c77288af863793f5c694eb4407faf5a
BLAKE2b-256 4e90f475a32195ad3bbde96a116e5e7e782494f834517ee3b7552b4b4b51231f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ef1b87ac755e20933bc8136a45ca9993a03c0b0ba16dd946ab287108305332b
MD5 37bd68619cbc1b10dd30a8b8fe368732
BLAKE2b-256 c10115ce67d216eb5dd3689546da47192700dced4235110b6ca79d529eebb44b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 335f1fcd5fb346be4ac4c982f89bb66b39c93a2c2d4bcdb3e3188d8adcb225b2
MD5 e9cfe43177eb78b6de30bc82591acd35
BLAKE2b-256 e1e9fa72bfb97a4ef758a6a8fee7e8ef18c42d6d3887b64a76979b3050df6071

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ebbcde06765fcde3d2d440153839a9ac675866fb25aa86219595c370e6d3f7c
MD5 87167d4032ee7135a76d61fa9dbaf135
BLAKE2b-256 4e55d6175f9b98b7bf8ef08b9d773c281b245902dec7e9b921a408f074074e65

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3628ff77ca4cf3c3f0209d5eb824b79d8e324bbb1feaff3fb6bff8adc23ec08
MD5 a2ac68d61dc26cfb99253b3e34888315
BLAKE2b-256 1634f4c5a001e4f69cee5a99471beca272cb2101636f88fc92d5e0444a127c6f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5286061b6050689892ac145bab0a441c3e742b8c0f29a9be8f1c97eea5558a7
MD5 9d6629fb7ff114feb6a4aff878461215
BLAKE2b-256 c43ba2f4d349fdd5808f55b287e72655de3342743cd60af3e86dae6fc13b998b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-win32.whl.

File metadata

  • Download URL: crc32c-2.3.post0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5f1d5c72daf5560daa89fd123bd6fe7dec58fdae142330f244850b20f61c518e
MD5 4ca9eae468287ece330f615f927b2107
BLAKE2b-256 cb1f20369d8b3f68fab02cb5e201c5af522b085e44df76093c31dddcc4f96ed7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23a534b11619965ff8ce73775d703be2c59566fde88a5a03efd4b28eee023e90
MD5 e894b7e93153f9240d9fcdf1aed76ae4
BLAKE2b-256 43b3ab7634f0aa0c6816456ffc3e09f148df43cf928c8ca4cc04a003d1588083

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 69b5c270f326a35777409cdd9547eada1f69fffbf9fd340862c00a655b2d9a3a
MD5 3310c31da669c3475dc0537ee5c142e0
BLAKE2b-256 cd6a055261955a1d72feb88308f1cc8a0c6b0e38828322c68d94f8d7037fe158

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a05ff1275350368e4e4e4d756e6a2924892e6160b4655ac5082d4f9b4a11a71
MD5 f12364df969d729622218cd042df7c73
BLAKE2b-256 b14a1fbe9b2861a7f8cc7ca16137db391cf325b20df304b1698acf602dba4329

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b81590ffd92f90dee3ff823b69392cd2640f527efcc5d637829b4a0cea370de
MD5 5cd792997f95398f59cb2f1517a73a0d
BLAKE2b-256 8aa1dca6875350a954492d6725c2bb7f5f609ca7684bfa42769a16dc090f0ee9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 712474ce37ea262cdd8a46be5696a3d72aff55d02463428eae1ddee265feb882
MD5 128f2092476f5e796fbaac3bb3a11041
BLAKE2b-256 9f8a77c54bbb896fdf6dc43a72faae7752e1e42e4c96b8a4f658830b43c282b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd62636466bf6b24f5ac32640b2401fe7333dea09cc46506ad3a855782bdfa0d
MD5 4bcd4b9b84a4d33e897977043992e784
BLAKE2b-256 c93224188ad8f82bbd4d5a3d46cf67c36146d093f73faeed9a97a2f33cdadf98

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fed4b5f61c6a3009b522faf218e9665da71917756a09998386869b293145cfd
MD5 49a2a2d71a6f55e0b3d6add458e9a43d
BLAKE2b-256 a9dd9585b3fda01c4d2c38d4d3690119e19cb9ff5846519216b1891b374c1b3c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d14f1b02e763edbd5039665b1c7decf7714e55b992ce89971a997862a236394c
MD5 4eae9f607972e7f9476024166276e179
BLAKE2b-256 a3c1c04f4da95d7542f54f71acff5040903de0feb1b47993986b2b1116389501

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6281582e919e405fdc4bf0f3ecd5f2ad647767cc5c6beecc094476356bd6ad09
MD5 d03d906e35ef7186fc4b0f4d9c362111
BLAKE2b-256 3470f8aa4ecbf4c6667f3db1a73431ddc9a17cce4e7d444ef1695f91f249e424

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05ad2f6b6392b2a0af159142e6ec029cddd15d67a76b7762b3316cbb5cc8e22c
MD5 ad927749119738f69efc646b7ff55a8a
BLAKE2b-256 3aae61b59e3b2879f623e854f32c76e5badc232c47f210a3644427b3adf515d9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-win32.whl.

File metadata

  • Download URL: crc32c-2.3.post0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 295053584dc3a11d8f02d6ccc6dd3698331e252cd816d7652b0723c516ef3c41
MD5 a2fff54aad41de8f3f6bb1c635908d95
BLAKE2b-256 0f526c75e74eff0a0ce61316f34d20933cf4b59640b694eb55a85b4b628632c6

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6072cc60102a8ac86f45ab8d29c8679a8ac0445477eed3d0af6d0becceea1392
MD5 5d9699d5fda5d6f22748c5d2fb35fd1c
BLAKE2b-256 67d0bc7c7237186fef7ed8f9a1c2f644f1136541734b35f85844f33dcd97af42

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c102e8988618e3bd15f4297ab95631c6d9e59326f9af17bf7d71c2ad4639a7f7
MD5 613c5373aea88ccf43b78c9160f9dc29
BLAKE2b-256 7dec1d73d5fd9f5cce1b86cf2da43bf56cf65926e462e000ef8d735b8617fa3e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 21919937ecac802e436c1a9978e8b27522ca87bf67dc5ce3a5b5622c0b5c3a06
MD5 0389ad33c2c25741d1e36bece0e022df
BLAKE2b-256 f4e5f998ba04af0c08842b7371ebf9e44d07ee5a61a9769c5541899282896052

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75e9a588e7241d09de9023dc51174cc2c9ac7c453ae0e26a5718e266b48ae392
MD5 c1c1682724c0df600024af8333b7a303
BLAKE2b-256 8a8764e5296b9c6e049e921fa7eb17d30c8fcd3827c40fd5f7632911a39d3bc7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08fdba1351d5cbb428d9ba3ce5c03d43687e7b23c6bc0cf99973306e5549dab9
MD5 1e492aa401524f825ce28394b37d5254
BLAKE2b-256 240f870fb3713856bebbbe94d9dd2ca14a4fe2a4c936809f7294d6eac3ba5ab0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5be4ad72c198c4a22515ef2ad728f9829ee3d75e6c7f3e41030c8266e46c0c7c
MD5 b61c835c81ed538310060ba87f48d20e
BLAKE2b-256 e9fd5d06e9c082b86a59238f9883386a3dd0600d628bf7ad020bee4a830c5b78

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acb0d4a1cf19fdc2946ab9b1dc5d4f1347e97b356a863fbba2d8a3d3c1cbe815
MD5 1c91fc1d232a176c60250d05940662fb
BLAKE2b-256 468064b5d6c337068899ee0eb3992bca153b310bb9334e82309cb19190921fa7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 585ab3307a2aa73b935f0b0358197f0af5306204d646ac321ecf01f2a3725f94
MD5 965af161ecdcd98eed3eaf1d419e0cde
BLAKE2b-256 2971e55e37aac9b3a1256736d183348a26e6c8bf3f370f61d76500718ce7c407

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8a3ff6b893ab482f0841a2b7e394adb749b1a896c854ce92f72c60e2ea3a3553
MD5 acb6762ef339caf67430af9705fe15a9
BLAKE2b-256 1aa1901a18e67b95627fe22934e1fce5b05be6bfbc7f124563995cef910844e0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01787094f281ae7c8f645d7b3c309a02bac45cb385206eee651aa27d933a87e5
MD5 ac4db291c8e46f12904deec204d6f108
BLAKE2b-256 edad27a5e82bb64ded342a768edf9bc5c5ade0af5c9775bf1cb5f2fc7b6f6a00

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-win32.whl.

File metadata

  • Download URL: crc32c-2.3.post0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7fb366626bf7ef66e55656c8385fcc94f22f8d3847a7a84c810d2e3f63f54c62
MD5 475759d31f51f19a8cc28a53988ed1e0
BLAKE2b-256 68322889e03c25a5accdef7dbc242c6ddef2302034864eded12eca1cf74748ca

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dbae415e9ec7dfdcdeac981cf4833d9942ce9de175b2be5a21c641c3a88e609b
MD5 914ceb160fbba54984a9671c01e7df68
BLAKE2b-256 99949accdec34a5e33042e42bde72c34aea06b55fa81f21a31324005610307ff

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 04220e1db5567dc234d1e9dc182c5b8241905057ec19967ac3a917bcaf06d70e
MD5 fe226a070bcc6f5643aefb92882c5e27
BLAKE2b-256 7d2959a646a2d7bb5e1effac5e556775ddd43c89bfebde6efad2660f2ed86631

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3bb11668f75a7f4f699b9a125aaf15259687f691beb95e756e3bea80d7163645
MD5 6a5f3560ccfb9aeb5a39bf45baf04522
BLAKE2b-256 e7dd89661171305f8e7b550a6103f2c5c15f7bcd89900ed96dff0129eb272338

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c24ebb561e10a5eada2128a7357e41969155cebe7b34656176fc24412d45c8b
MD5 f5a5d0ff7a95f042639bf62118dacc2c
BLAKE2b-256 62daa803b70d8fe4d3c4fee0568962292f7c8e626c6f9d295be350bbcaecfbc8

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 217c1b64be777cf235556066c363f4dec22b29a956a174f6361037b1b2065c63
MD5 d6bd14c08a16d000503c98b4eee19332
BLAKE2b-256 f9efdab69655770d37a30510ab655695bb97c8e4cbab81770bb29bd7d3531054

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb4222a766f59b1cd8cbe56af5dbdfd3a2c0ec40b60c9ee6efe4a5cabc94112d
MD5 f38432b2bdf892757dd24d61cd8f5815
BLAKE2b-256 94d99981d753102dd2c86055b80dfa1dc865ac68a0cbbead607ed94e5f56216e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1285d33cdeda2d2248994d41706f88f0fe58265ae907d23221c07028e79f9670
MD5 bb433845b06663ed4ded87f3dfd7c9e6
BLAKE2b-256 fd70449c8bc211d2bd4761dfe744f69b5e7ff8ca076b45e14beb58e177290a9d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4459462c732232ffb29b58decd246ed5cdb8c16ae141f57f03cb2e3445dc1d2e
MD5 fbebe64bcda310d5e070dde48043c66f
BLAKE2b-256 3f78a7ba8383a9409b35717a4bff52ebb1706c80e219a538dcfb98d1c4c9bee0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e311f52e24b633e8d588ab9a0e7992bfcfe8284a1655202bdac5aee80254a3fd
MD5 2f6aa55d97e8ff68ce3e619b8e560805
BLAKE2b-256 f3b3119d9354d05c99f8271dfd0735c3e6d3b98740c5102e664e277aa94a3c84

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c55e8a45e360aeb3cea2cf9d9fb3771a711ed3c3fce2d91c874d767aae4f5cee
MD5 6b47a41b513dc61722ca1a075af9564c
BLAKE2b-256 1e65001e5cab53a99f712ccc9342ce70f3cba5c0f02d0f7905b26574ffb90886

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-win32.whl.

File metadata

  • Download URL: crc32c-2.3.post0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e88bbdeba430dfee6d83192a9e55c8e89884a3c5215d1b7643395ecbbd1b502b
MD5 4259e4d04b64ac67825d22d28f74c850
BLAKE2b-256 37e6763c993a07c14be638651bd0ffd11ebc411a18b8bf23cbb9b954590d1141

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b5f5a18e9bfe98a273d9618d5c04470fe983dcebcd453fac07c398dfac7db10
MD5 0ccb4a1dca2d96f923cde5e37e5408dc
BLAKE2b-256 011f1effadfd0c9be42bfb505e8939d775306588456f589bd2607ba3148695a7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7d02e45cddebfa82694fc9fc7df2f42366431e90b0abd40c5c63758bc9234123
MD5 c3bcbf341acd8ef32b34d45871ed9566
BLAKE2b-256 0d6abe3c9f2f9f8b32a7a1d657788e3c17a8b4e040dd831c9e3fdc48080103ff

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 69cd27f493a6bcbeb1b59eea4a978734ebf3ce2b6f757a99405d6eebd38af551
MD5 5d8e53672f77e7a5d419e195031d6a7d
BLAKE2b-256 8ee777d2bedd375b7b3b3bcdef3307b18bf0d7d00e595692e7c4b7b38e22292e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00de0d157dc17bbf01fef615aff6095a78b3561aad37b4ba4a300b11311aae55
MD5 d22828d6a69455110963e03d17ec34ed
BLAKE2b-256 ea7f0cd49ae0220e7e5b1a1f6e0eb96ea3fe7d394faedb2f0cdb60c2033722bc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2f6105a430f4f1f393cc660bf8ac3a4860396fa9b5ac8bf0c7ba1de044a3cbc
MD5 bc7b67bd37df53870518c750dc720f3e
BLAKE2b-256 56709bc4e4b676472af3c052d81a3e8b83fe72bf75f37d4d3a1fa226588521a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 061b084e27d92dc3e1a9efd500e6e3feee9e97e8cefe2fbdcc0011cba7f3242a
MD5 c8bcf0d588fbd182400b497215834ad9
BLAKE2b-256 69b90ef6cdbfa97c8d328fd1d7a826d411a5da3ea776da5ee0b1770845831529

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68941ac55632f231120baeeba72690cdf2ec2531fea3ceab4612dbf855411b05
MD5 d058896bf4895dacdf66b7342aad0579
BLAKE2b-256 a9973dd16f1c1c25adf346314f29e5b1c35119e67abf401677f686af41ea992d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 176b3c5ff7fa4e2f83c241ab9dc4fd1584d1c9333d4c7295c16c9f6097c29933
MD5 a80580ded83ab12b807e4ec5578d7492
BLAKE2b-256 291d308322e4de7010b3e50dcfdaef5eb73d0b2ffca6c64c99a013a9debd9ff1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cee4275dfb3cfc4a1e4c338089f3223fce878d7151cebb095937c07410371908
MD5 f6b137d54e08bbac5f00e34677989244
BLAKE2b-256 7c8529baf5c82f24f6ddbc055e8af48f095446eba4ac6781c7ed67e8e035d80f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 05b69167116680bd40116c8fac847950d1eb170fdd42a814602223b4e002b0bb
MD5 32ccee19c4f22cbb94c6dde6c11d17bc
BLAKE2b-256 18b2521820e434107b59e9982ff776ec55b26147341999a972ad82c85735b2cb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-win32.whl.

File metadata

  • Download URL: crc32c-2.3.post0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a57d1ec8f1aa45c14a51770b011359b511eb7dcc6ffd7c8fc9e918e2aa009416
MD5 cfd59a3b2cdc9c86610cf0212d3412ca
BLAKE2b-256 d9fd2d164c8617858752b61c899e1dbbc1948fabbebad549b49229e1c0e12406

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 771ad4abacb89a14e1f5cbbb291ead652a0c9ed4be2c9b579c869957c0b03e3d
MD5 febaa16140a3702b73fd39c2a4ba4e04
BLAKE2b-256 6e74eabac9eefe7d475a42a536312774e33e8c2cb12cb1e23cf0318ae3c8c5c9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6bfc277c43fa1dd4c4a91a1b56347008e34c8214dd99b1424b5d636272f2922c
MD5 fab2e42fabcf6db3808708eec44630bd
BLAKE2b-256 6dce92bb72712cf1ed866934d81bc8f5f545ee86925b4b23a1a151e2124f7c97

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d9ea9e6eb2912051a40ac6877646925ee3a058c4aa3868988fe1d8c4577f57d4
MD5 e405f083ef7388756c2f41a7e7ab2c97
BLAKE2b-256 e9b6c62db9325c409f806267036cea71425fe80cace737ee5d5fcfdfad7a3476

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 470bb05c224ede904af0278d18ac26f1132a8cfc7a11cfa0406c26ef75765427
MD5 ede03570cecfddec4d8f8af8afcf46af
BLAKE2b-256 64d2e4331923f114fa499058baa33c8eb12198506542816ac9949d55642cf019

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0925a7a8fcc216744e86c21f1749c22f950f9bdad512cb5c80ee85017625bd5
MD5 6ac659497109033654a352d18e421389
BLAKE2b-256 a1102c6080f1944e14a70e95e6444cd279dc78a328d59d8f398fddb2b6f1f96e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de0307898c24a8ae29d4b94ddd3aa81b73d3b2b0e490d226e3a3dd05526dfca1
MD5 060fb7bc0a2aa216417674b0b0cae721
BLAKE2b-256 710ad0d51f9746ba22902bcafe553459ffc67af759086800c1d29b7c9c707bfc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a61e6754ee54bbae9253035eabb5658d0ada9162eb1b98feabefb044b95e6c0
MD5 c4048e6b20049dd92950d8f05bfeff21
BLAKE2b-256 b782c8cbd1cfad652534407cd2b12a4ffe02745b17f575f1c692c1758fb2bd1a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86837a00716056c29f9d84c980cdac050ba3c7610c9edca1b2ac01192715725d
MD5 6318d9a6745c0e5dd932898ad53869d7
BLAKE2b-256 b467afb30bb534fe46deb64bff523adbe47d8ae855f3306f2e23989483fdc607

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cce0c79dbf4d4f2276cb9e32f4d0dfc3ce5d8cc5c3f0a0bc62612505cd779c67
MD5 e2feee58ead362a71dca84bcf68f65dd
BLAKE2b-256 c5d6207b78a95a31e6172bdd03477e4176930198ee0507015adbe950c172ce19

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 19d6a505582194ed0b2bb257cf3729c922e7e92f457a9f7f5493cf821cb19afc
MD5 b7f5231c39b6d5c429cb6d13aea39693
BLAKE2b-256 fc9c2d9220187ce785db28e28b51e26ff6eabafb4609d1a2985ebb68f16e28cc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: crc32c-2.3.post0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 31f59b051a7fa4a2ada3f76a79014be38c45e9d3c906eca381e9007677ffe506
MD5 69680273b920b1554161de437b4f4abd
BLAKE2b-256 6e29afe2492c0b24a05d145eef51d5b1366bcfc2e3f43843e147018ea9eff8e7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d18e82f66a0c25c8fb10b21e71cf2f2aa81441fd1a062809249e98a338ef9c81
MD5 42550d838ab1ddb22d8d8ee7e8a73ee5
BLAKE2b-256 e2f8c9aa4cd32a3bbcf547d907c047c12107898dfe310ef8ecbac3560e965597

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 89bcf1158c577635bdc61b27d29deb2fe0c1191a54a490f976563a73abe3b2e3
MD5 d7020504f2ba2be9af381be7e7b7678c
BLAKE2b-256 d2cb7f5863cf613418e6da89ca07b4d6ea96a04c8cfc8e1f8247403271186977

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d7bcc07f3a63cc8be7536ca35a4c5b96763b8e0ce5d48f30d9374ec7e381b057
MD5 ac19174fbfeba966971a3d8b50c31a8b
BLAKE2b-256 e4c2bce9d6db3bef312714aa61a95a2669456eb966c771dc3c8f03ee2a7b3be0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85b3395c476916b098a20cfb8686558865ca3ef71caaf9e6b0a548b2049ee87d
MD5 6146cd179ff179454e7a04a04d7b6cbf
BLAKE2b-256 00858ed394c57f359a24e67a68131778a37157b9caef2c60c187fb470346955d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75eb7cc4200745cbc717bb0b83b538e6582be980d4f8c9f9bb0740a23e93a4d8
MD5 70fcac8515db47544bcc9c743a0e1713
BLAKE2b-256 560f3266260e20bee17a5364312ad50d7ff8d167bf662c8f7f13242bad74e58b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42c0363d68a95d133af02803772395b42bc202840ea70a317e2b46beb9e53af0
MD5 67a10e9b0c4da216d6633c88b336c464
BLAKE2b-256 cd9ebf04ce159fc372129fb8aee7c80e156c8e014e8c303f0c966748b05997ac

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21ef9ebdfe4f2e45c94327a1a9a222a899be784d78674065ada6e8e240d3a4a8
MD5 9577989ef8ec3367e4998123333435b0
BLAKE2b-256 6922a44287e1a2c620c910ad9443830527a486002d66c56f2907e5642139ddd1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5c9e58f96a0e56e60ea683504f605b76c73b7f885837bfc8bd8346b054133045
MD5 b231d773f769daaeecf98b37018810fb
BLAKE2b-256 b524d004f7555c456aa65385a9043e12bdd30575896d54bc50c36637b9115169

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: crc32c-2.3.post0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 305ca4eb8c399081a68ca0274ae176753be8430fc874d1e7397a2cbc95748733
MD5 315570427e498cfa34a35747bb9b6cf5
BLAKE2b-256 6f765630d54fe881bb1479423d87c8650dc1e4f0e33bd7f8a62a28afa526fe70

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b60dd506177d2ea68fb548caa9cc383f46c024947d1990604c11aa615ec9da62
MD5 771f2dd628b249fbf7b7974a15e153f6
BLAKE2b-256 b42cf78cd74e9a9bca35dc2dcf8c79d9b2863809081591d4b6a6902cec5314d2

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8af10d0c3752db01dfa77c6c4c8fa070bdefe939eb9ab94b4dec1dcc2cc11fa5
MD5 534da6bcf381fabe2fba880c1b7d3d64
BLAKE2b-256 e9e7b6821a79edb6aad6f6209d84c59bf052bd3c54549fc336213458b82b2b11

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 363b8f2993f07eb8ac665c7227cb2a569fb1f4eb1551a05695bc2f94c23307e4
MD5 e67257db5474dc0b6f483ffd78a808bd
BLAKE2b-256 d11e9352f181f9d9db49e2b18f91172f239bcaae8ce07e7e2bad6c2f50e767dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec216adbbf7ad1506918c8199a144d26740650b594f79755f5f1affec7e7820b
MD5 e8dee6b713f73e7ecf79affd75fe24f2
BLAKE2b-256 0ca14366a729fd5463b6932538253cdca2fc070f1457707d28b58fe19465b54b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-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.3.post0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 247ada85bd0a54012e910ff46697871f80bcff9018b59f7de23161726a146b2a
MD5 3d2b306430ea3de1a7a07de7d6889a6c
BLAKE2b-256 3836c8f32e68cb7fcd2efa2ceea9b1e98614de10e5803e82cce065269c98cf39

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38f4c8eaa77fa9bbe690b58546dd3f2e244c13d5d0a01fa93076d3817a22bc68
MD5 65d4e8c01a9813cae6ec360f5b3603ec
BLAKE2b-256 e58a1675a523677a65bcb8cff5fb214e1718cfc18d5cdbf5f4424b1a4fb53fe1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.3.post0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.3.post0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c002f55429a12ec87a0b33a073b384d26edd46d89b3cf7cfb6ddf5abb6e2bfab
MD5 e87b26021133783a343a26af9473fe2a
BLAKE2b-256 c99cd7f959189b32a8b941513f39ce2bb0c1983f6885004f13ff2dae6b34d52b

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