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, value=0, gil_release_mode=-1). It computes the CRC32C checksum of data starting with an initial value 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', value=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.

The gil_release_mode keyword argument specifies whether a call of this library shall release or keep the Global Interpreter Lock. It can be set to the following values:

  • Negative: Only release the GIL when data >= 32KiB

  • 0: Never release the GIL

  • Positive: Always release the GIL

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

Uploaded Source

Built Distributions

crc32c-2.5-pp310-pypy310_pp73-win_amd64.whl (61.0 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (58.8 kB view details)

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

crc32c-2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (59.1 kB view details)

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

crc32c-2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (57.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

crc32c-2.5-pp39-pypy39_pp73-win_amd64.whl (61.0 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (58.8 kB view details)

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

crc32c-2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (59.1 kB view details)

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

crc32c-2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (57.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

crc32c-2.5-pp38-pypy38_pp73-win_amd64.whl (61.0 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (58.8 kB view details)

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

crc32c-2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (59.1 kB view details)

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

crc32c-2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (57.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.5-pp37-pypy37_pp73-win_amd64.whl (61.0 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (58.9 kB view details)

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

crc32c-2.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (59.2 kB view details)

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

crc32c-2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (57.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.5-cp313-cp313-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

crc32c-2.5-cp313-cp313-win32.whl (59.6 kB view details)

Uploaded CPython 3.13 Windows x86

crc32c-2.5-cp313-cp313-musllinux_1_2_x86_64.whl (73.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

crc32c-2.5-cp313-cp313-musllinux_1_2_i686.whl (73.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

crc32c-2.5-cp313-cp313-musllinux_1_2_aarch64.whl (75.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

crc32c-2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.7 kB view details)

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

crc32c-2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.7 kB view details)

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

crc32c-2.5-cp313-cp313-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

crc32c-2.5-cp313-cp313-macosx_10_13_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

crc32c-2.5-cp313-cp313-macosx_10_13_universal2.whl (70.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

crc32c-2.5-cp312-cp312-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

crc32c-2.5-cp312-cp312-win32.whl (59.6 kB view details)

Uploaded CPython 3.12 Windows x86

crc32c-2.5-cp312-cp312-musllinux_1_2_x86_64.whl (73.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

crc32c-2.5-cp312-cp312-musllinux_1_2_i686.whl (73.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

crc32c-2.5-cp312-cp312-musllinux_1_2_aarch64.whl (74.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

crc32c-2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.8 kB view details)

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

crc32c-2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.7 kB view details)

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

crc32c-2.5-cp312-cp312-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

crc32c-2.5-cp312-cp312-macosx_10_9_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

crc32c-2.5-cp312-cp312-macosx_10_9_universal2.whl (70.4 kB view details)

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

crc32c-2.5-cp311-cp311-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

crc32c-2.5-cp311-cp311-win32.whl (59.5 kB view details)

Uploaded CPython 3.11 Windows x86

crc32c-2.5-cp311-cp311-musllinux_1_2_x86_64.whl (73.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

crc32c-2.5-cp311-cp311-musllinux_1_2_i686.whl (73.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

crc32c-2.5-cp311-cp311-musllinux_1_2_aarch64.whl (75.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

crc32c-2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.0 kB view details)

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

crc32c-2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.9 kB view details)

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

crc32c-2.5-cp311-cp311-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

crc32c-2.5-cp311-cp311-macosx_10_9_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

crc32c-2.5-cp311-cp311-macosx_10_9_universal2.whl (70.4 kB view details)

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

crc32c-2.5-cp310-cp310-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

crc32c-2.5-cp310-cp310-win32.whl (59.5 kB view details)

Uploaded CPython 3.10 Windows x86

crc32c-2.5-cp310-cp310-musllinux_1_2_x86_64.whl (73.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

crc32c-2.5-cp310-cp310-musllinux_1_2_i686.whl (72.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

crc32c-2.5-cp310-cp310-musllinux_1_2_aarch64.whl (74.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

crc32c-2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.2 kB view details)

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

crc32c-2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.1 kB view details)

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

crc32c-2.5-cp310-cp310-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

crc32c-2.5-cp310-cp310-macosx_10_9_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

crc32c-2.5-cp310-cp310-macosx_10_9_universal2.whl (70.4 kB view details)

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

crc32c-2.5-cp39-cp39-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

crc32c-2.5-cp39-cp39-win32.whl (59.5 kB view details)

Uploaded CPython 3.9 Windows x86

crc32c-2.5-cp39-cp39-musllinux_1_2_x86_64.whl (72.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

crc32c-2.5-cp39-cp39-musllinux_1_2_i686.whl (72.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

crc32c-2.5-cp39-cp39-musllinux_1_2_aarch64.whl (74.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

crc32c-2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.0 kB view details)

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

crc32c-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (71.9 kB view details)

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

crc32c-2.5-cp39-cp39-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

crc32c-2.5-cp39-cp39-macosx_10_9_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

crc32c-2.5-cp39-cp39-macosx_10_9_universal2.whl (70.4 kB view details)

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

crc32c-2.5-cp38-cp38-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

crc32c-2.5-cp38-cp38-win32.whl (59.5 kB view details)

Uploaded CPython 3.8 Windows x86

crc32c-2.5-cp38-cp38-musllinux_1_2_x86_64.whl (72.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

crc32c-2.5-cp38-cp38-musllinux_1_2_i686.whl (72.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

crc32c-2.5-cp38-cp38-musllinux_1_2_aarch64.whl (74.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

crc32c-2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.6 kB view details)

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

crc32c-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.5 kB view details)

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

crc32c-2.5-cp38-cp38-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

crc32c-2.5-cp38-cp38-macosx_10_9_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

crc32c-2.5-cp38-cp38-macosx_10_9_universal2.whl (70.4 kB view details)

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

crc32c-2.5-cp37-cp37m-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

crc32c-2.5-cp37-cp37m-win32.whl (59.5 kB view details)

Uploaded CPython 3.7m Windows x86

crc32c-2.5-cp37-cp37m-musllinux_1_2_x86_64.whl (74.0 kB view details)

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

crc32c-2.5-cp37-cp37m-musllinux_1_2_i686.whl (73.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

crc32c-2.5-cp37-cp37m-musllinux_1_2_aarch64.whl (75.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

crc32c-2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.6 kB view details)

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

crc32c-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.6 kB view details)

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

crc32c-2.5-cp37-cp37m-macosx_10_9_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

crc32c-2.5-cp36-cp36m-win_amd64.whl (61.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

crc32c-2.5-cp36-cp36m-win32.whl (35.9 kB view details)

Uploaded CPython 3.6m Windows x86

crc32c-2.5-cp36-cp36m-musllinux_1_2_x86_64.whl (72.9 kB view details)

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

crc32c-2.5-cp36-cp36m-musllinux_1_2_i686.whl (72.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

crc32c-2.5-cp36-cp36m-musllinux_1_2_aarch64.whl (74.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

crc32c-2.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

crc32c-2.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.6 kB view details)

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

crc32c-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.6 kB view details)

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

crc32c-2.5-cp36-cp36m-macosx_10_9_x86_64.whl (57.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: crc32c-2.5.tar.gz
  • Upload date:
  • Size: 41.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5.tar.gz
Algorithm Hash digest
SHA256 549e13b809d54bf0de44ec5fe11e421a7d910a7e5fd63cafd6cf879bb37e4ecb
MD5 1bf10f10a0a6ff3a4bd19cdd10bd74a9
BLAKE2b-256 94b93bf8ef6fee73c6ccf26db8d9b126537a6dcb94057e7d977ea280fa871f17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2918ae3d5f7dd7f212f3e6222a1bfef4d0615a4ae5e4a3de7bb3712920fcb4f2
MD5 7518915ab62bd40c60c8439b67dbdd6f
BLAKE2b-256 4af7c7755d9cc1f87f303d36315979ae4492179dc836df10dc706f101841641a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ac226469a0c13a9298dfad962a6bfe74b840bf6afe5514b27c95bfe29fe3b5f
MD5 8b39cbce42084bd4edd1e6853eb4d2e3
BLAKE2b-256 99e4b350165f6ea63acb651dbcaec65f17de2d6afe4dac57d2c4de15c86f7c6d

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34e29cd76f74e9d6d013eb4addd071fc39d546cbb9d5cfb24d5a41524abe408f
MD5 d7c0ef71bc14e0295a5f7f9d119530d1
BLAKE2b-256 903a5ad2e1dc2a0abd0495b7affff6a4a7f774dcf728de12a88025b44b500eae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a3007ac1ff5e49cae9f0e5d6d77928c764e2eb69b029039700bca4e7cd0d745
MD5 db7c11eb9ff2536e9f4c7b2eeb302670
BLAKE2b-256 ff1da14128ab91b48340611508ebfdfc2d2c6f457c5094f54e0da31762cd85d5

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 46aca754c6fea86296d488ede84b332a09a9262b4d11ab0bad75ae3794d6e6e8
MD5 7c03ad1038658d6826af37abc02dc275
BLAKE2b-256 c5f380966db38fc6854a023e56039d98f8b7161b57618e03e7a47635bcf9d7fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 73586403256d87ad6268c713ed2b1c299bc1c6cadce6be28fb602c0256b35465
MD5 20af346dbdb7aa10a5d11b0eee4d9f39
BLAKE2b-256 92b1818405e72358e1a46dcd258d119175d8c1b9b065ed90710c36d2c8c9b9bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ac5cbf23f4672d34f12bdb2b67d8b0b5723edfdb02ea38d3faf6b96d6b8ae81
MD5 b7ea18d0f79f1ae210b656bb86413bc8
BLAKE2b-256 0ab73e1932101e32b27484200d73f4d4e875777b4035c869ad6ed35650702108

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3c1095ab9d29ade14a4f6e475b991bfd58fc0baaafe3f67956ca5828e24ad48
MD5 3df250914cc97083bcf1a0cfc06bacb9
BLAKE2b-256 68fb26d18e4ee1ace916a3e3fe4e925a805bcf0da2640e946b0cbaa591d87d1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41638b673451bc5860a1bc1f47b6b13694ad9be8668e5e09fb04420d71e69c05
MD5 e811d17b3cc48f0b44f7d937520e2118
BLAKE2b-256 b86da16296444f58b75297d17a0df8ea97b1cadea21eb61135e282a1b4a26547

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a0ba74724766361568ba3c0795d565569368660e63d225e16240df029e094ff7
MD5 3e58d8083e08bf3b2e9df1d8183dbbd4
BLAKE2b-256 549aa298278cf719071b8140953aba03be6d3285456363b1243622e45f9c3ffc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 40f532df893ce1d41e05df555652dcfa19807731c2098e022e801213f1d97171
MD5 8eb028195f987949827bc5a35a376ec1
BLAKE2b-256 dbddfb34da468164a154c1fe03505d138979eca4680002fb3e393f4e1038c5a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a0fbaa1e5b9757f3d90693063362800a6e577f1c09c2cd195650bf4147df1ae
MD5 f27bcd52b9609a778fb058cbdfec5a21
BLAKE2b-256 089337f0a595ee5e9646e805bc213502f0bd9b631dd5c76b29d2dbdce1c7fa65

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eac4bbac8e457855f39301a411d066ffd26124a659037740cffd985f5e34085
MD5 371b8de62868f74c604711cbd9b91da7
BLAKE2b-256 e193cca711bd8b6a98dedbbfb0882563e1fe684b8a941e5290786d4f730034ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd6b7122a72eda894c8ec856a8ca5c2457f47e71174742aa26dd91342c954ed8
MD5 b9153e40c7d496b2530070fd893c01cf
BLAKE2b-256 aa2898e6201d68d15e0baa22e2fbaaa97d7a3904e514cbca9ebca083e7adf3a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ded92732c1ba774e8e800f1c9b4c5e080c9f04d2a3ca2d78d995b02607117f72
MD5 d1f8836a0e448f046ce1ada35890a31b
BLAKE2b-256 e1be36bf3168bdf4b61a58884623b155237708fef806b9649adaaa96528bde92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 03be52e9f8582ea51f3cde4f98fca3beb589df6d53e8db2cb0116ec0f7293d84
MD5 e123053ef124f91b686f7d203db8dbdc
BLAKE2b-256 aaea0a70914e269a65f22786550bad79513e21932cfeb7c4804bca930b64717c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1ad99b8c9dbc5b73659f4c1eb5f0fb0e8977a8f06e34dfc24b1dbac8af447a0
MD5 1b8d459425f2900659cb16b8905e5188
BLAKE2b-256 3d3e470bd1b846d50bc0448729fc78c5fbbc2b374b6acc8ab630ed972ca801d1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b71ca3af7662b789d2def3f14677f06a8b6eaf7337684d212141fd4ed9f0f42
MD5 eba4adbf96b4f2e7b274582be18096bc
BLAKE2b-256 b32099b819237cfa4d5dd21ab9a1111d7705f0b2fb7c43afd5ded5e7b6dd51be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b695265b313e2bce57c54943830a2176ec26fdbc2275a754724d8a30bca8bd0
MD5 da909a369473ce8b1dc43e6d4cf558a0
BLAKE2b-256 f92810234c971e01ffc9c39a82e0a5ae5667c324f7cdf0d8c1d6371869f6d4be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e76d61bd6c37bb8ed3bd437fe77d2be99a5cfa5b648ceab4115e5b181e2f4d7e
MD5 583ad2d11b5336e51f0881e3c973f71a
BLAKE2b-256 4d4abc8548ebb1ffdab0a9e1dab00fbea6346d33502037b8c9ea746d456a4cc4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e93ece84bcabb57d6f27255926dc6ba6ee73ec0379b1547a06634ecdb2652da9
MD5 4b09d70db86d9829b732ab99d06fb945
BLAKE2b-256 8cb43052425134cac1591e62b7a4398c8706aeacad86ebce001efc8669e34d8a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: crc32c-2.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 59.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f86f89507002fef30f41719e91f896b65feb023317e3604275fc4f24a7d7a2cd
MD5 03d8f4b099ae597982a4d33172b5d44b
BLAKE2b-256 f317b65c8b0fd5445cecf1d3fe24321f5bda96b523b810db432ffdc75cbf02dc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 685156f9afed272d556dd547aea52c0a3b4fb7b229dddee5e363311baad43637
MD5 51beebd3b65c63025870b899bb43e6c9
BLAKE2b-256 1c492b61e78b52c668cd216380566d838ebc41ef41e4d6137384d8c9bf41cfb1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b392571c6fecb19e37104b03e57b1543b829c074863d7923981c69f5ebb4ca2f
MD5 c5caf1db26d898161227c50e434939a8
BLAKE2b-256 d25ef8a38e1d6279a86bb0c3d9226ce860314550d3b68331e78cc98a62da5859

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f064d2f4d24038a4a128d00b3c1799225dc71562aba4695ce2bdddf8bcc12e26
MD5 35e1f0adbbdc5d8392b841c71c6e1e0d
BLAKE2b-256 0747a0bfba8e5e55c494eacd7844084ae9e0c239b6ca3a1dd42d15f6e396636b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bd3533c4437721eb0def24865d58573765ce19a6cd87e549ffad33a85cb2b3c
MD5 8308e37dc38142355bce8706c85495e5
BLAKE2b-256 e942cdd99cf5347b44a40cf03ed18b8990f40ab8e2e024f962a2b3cf8f887d30

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-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.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01f629b1b5f952ca76b6ea7a44bd143ba490ddf2000fe2123803727c0903ce48
MD5 2ba4ca66368bb8d153d60f0d97a68627
BLAKE2b-256 94657c4bf4832e1c9056df9ae781515e235e35fc7288ca15e198d108555203f4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30f3f21cc9c4bf0ab49c84f764c6e499764874a2b6e7934e5413381bfd41a85c
MD5 1f54d6389cd68dfcb4dbff9dcdd6946a
BLAKE2b-256 daa2463078999a3f1da6a4d7d435eb01b6856da5f5387aee4f659c4b6322cc30

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 330b4e4e87e1fd28c1b4127c6e1e11a97061162bdb3207ebf9dd1eab50cf0182
MD5 336423b456a24c254ea9ecaa1fa777f6
BLAKE2b-256 9d921adc7f19c477386c6071aa19c1c9e49df7dfb46109dace2a6d6334948ddc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2a2cfc4d1c43ee002ca5c1069a82d28025ab7b72455ea296e78621461e268ea
MD5 addfa6d99913c9ff4196188eded4164d
BLAKE2b-256 b6ebd2739e33a7ca0ec5043670d72bd4ceb462cd20594815a2e6d3ed962bc080

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c3eeffb0048729fd1f6cdc3fba31222f73b5e07d6fa0ef98ecf899ca4eb02b9c
MD5 c599aa25966beb28d002c79c64270dfe
BLAKE2b-256 100ec4283f5f32d06b05835411e22b17c11efcb152942ff97426326ec48a99d9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 118c840a432cf89365f4f1dcb839c02acbebf90e9958958f099de58aa35a9036
MD5 7e8961cea13573c65ee5da9be90798c0
BLAKE2b-256 7caa42aa1f963658a322208066532f7d7420dfa44853c989a4530a086a4b3cad

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 59.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 167122e8089248ae9de7e8010c8b4f162a812c3171791631fdb3397c24e0e4aa
MD5 2b19e0269a4704dc18dc1c2d60d98f04
BLAKE2b-256 ab5d51830304105db40c31b09108e5b26861e60bd3fcf30ea3c603cf028332ad

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fe120f5d169515d2eacb21ca2a426bd668fadd851cf0b92af668a0cd1f2b9e4
MD5 4173526ccad3861db82cd90f6f0d7fac
BLAKE2b-256 052fdfb5cdc4ed62e0e20d2c4e49edc0f9c9e83ffc190ed7375143eabfffb301

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2922d9405e29499ae6e8d4ef25cf0d9a5a1d2305d04411c95311d0d080153bc0
MD5 4b288eb1df014193ffb0bf2b4148ada3
BLAKE2b-256 060b372d5ec28e4375511a82c7451b29e9ce083a0369a0f8793e4fc97a892edc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fd08d2236fa91ad6888ddb3bbf3672d70d50e0f0a487017daea11b15b6a0a2e
MD5 e0b5933c46fd42754fab2c7464b80538
BLAKE2b-256 4e676f56fce09061aedb92553e8c780f62290cacdd9144b432e80e28304295ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f16a1ea800fd02ba0614b464c110dfd127e11420bebdbd41aacf102b3aad6d04
MD5 fd387f88944234388dc81df0398fb2f1
BLAKE2b-256 42e16d708e615ca1a88a5b2f1bdafd44fece520026fb285e2adc0d27bdfd230c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58be2919141df6ffa4b531e6eeda2c57f1e1496f96aac56bc23329ea717d4493
MD5 b48591088b60b002b739529bac1112d7
BLAKE2b-256 51bf286b4cbe5afcc811ab428c9240a709f523ed0f2777c919426c01437818ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c7f5428d2375dfe10617ae0dd7e143118bc62b50952c73346b4c71efdaa3fa4
MD5 8a7c8e18f33bdf7600b4a05f7cc99785
BLAKE2b-256 d26c45a89658be8aa400d4e08d5d51218acfa865e0ecc524ccfe3e3edb0f039a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09c74d00975ec3d48bbfe080affb4e5904fd8f403489ee39715af45cfce65e79
MD5 8c73ab4fa5e11c2911357a8b702d8633
BLAKE2b-256 a57d0c21e1dc2d9137186ce23f963d56c15dcb57e64f3fd8f040c8e4601c9a7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b5e1e89e0e113701ed440e339cb7af3c1f0a4e790a2adc1473aa1a9c1557ad0
MD5 76cf897938ad9341aea3c545d4195d12
BLAKE2b-256 e6ba1c48c4b2d8fdf8801d864d037c5180f5418a8fb436c62c0e2ad8a7eb39a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 31ee7449816e9dfc197a30b0e09bec8e89efd5013567579b191520dd9e508882
MD5 7f158cebeab2b166ca4aa808c9ac630d
BLAKE2b-256 b38506f071dcf40d2a7bdef1a47781bd0eb0a822cd0be2a013eda9467824e298

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7cf9bdb89ad48c46f03dce0c2ca9ea67e283be4f9b45ce5fb8e592c637675d6c
MD5 37c3c5e7aa09f3bb25cab577dafa37ba
BLAKE2b-256 49a4fd631231f213b3bca57e34b7f0dcb7662bee0e100f978ca507975d4e49a6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 59.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c22231e2f60d9e05a480f606b46db3fb0610ecb2e0bd54af31bd26ff5fb52cc1
MD5 6e1f5c0ddc121fce2e6a1c0cb0be4c50
BLAKE2b-256 03586590b1f3eaa598aeafa613d10a75868a21d357f81782df167555f682676e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8366eaa1dbd7fb488829c9eae9a0a862e75a9e32ce18ed8aecd03fcb176e63bb
MD5 6939caddb103663a8165a4cb82b2a9af
BLAKE2b-256 7f55242a8caa94b956896b70946dbc0d17e9c54830e6486edf1cc6bfcdc65f82

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b20e84d6a707d8b7e09bfe515f7273a60d0fa5575fc3608c57257d7d71a6273b
MD5 d4913e782ce71e846f73147db1c7e564
BLAKE2b-256 71ac10eda8c09c64e5d6f94cb0837f3d1cd3ab4d1dcf0568914f90c05ab39323

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 961df023cd177b37c871ff923e3eb877ed457a909df8b5dedf68654bf7d25068
MD5 daed0d8579af9e6b2619b5709649eb48
BLAKE2b-256 df8aa8d0ea390c62ec606d92df035dee4fa905dccdb779cea1d09ef7feb253ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c864a4027190f9fa1f952273b5de18a772e6e5df0a066ca57ccb318a943a6a0
MD5 6e413b38f56a9315951c691ce0024175
BLAKE2b-256 b38d252b347aa3aa445e16fd0e1bffe8f37342b56dd8b86909f3d1b4da9cec34

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e471cd50b0bbeded8d1ed44e8ba60c337d3eeeb4909105fe12d3bac90935a92
MD5 eb024c8d6a45779e9692b0d1c4b3a4ac
BLAKE2b-256 8a1f58a95eec38f4518c299673f1a534a2bd14dc7aa4a38372738d3cb3b82441

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90589a139a7539b7908d44c3edd3a4219171835d2b2605715c3645000020a00e
MD5 bda805d3df1c816c400984b2dcc8795d
BLAKE2b-256 427c903b5ab05acdf87cef2483cc00ca7d2a157961e44dca5a514e66a523ead6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37535e2b635697d4c27375f2e99e9a9b8b98067b250bb8680141b5da62af3a27
MD5 7a429900c5c01dd2303ddc23124ff756
BLAKE2b-256 35f6b8f72880ff48ed6876d2ab53c78bb802a54aef812abffd2bc377ebb25748

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40065633af70a6b46f42722e7e003d066411739a8d2b982d6a2818ce3321c924
MD5 181a64e20856906b74d5b2c905398b11
BLAKE2b-256 5b79a0b11a08353cd12b0d3aac23549e54b8a9ee18d261c6dddb823181962970

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 989e4165683ef01db742b7f3cea9ab4ceeccac5f8365b11a2d6e07613070c7b4
MD5 ecccfeb39261397cfea3bfb1943c81c5
BLAKE2b-256 0ad889f2d647a105cbd888d3459619b390e4899d6f25d545ecc70348b31b1534

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 108723287e2b96a1f57be2b20468ec505279e5549dc74f40282e8d7feb9b50ff
MD5 ff30f24875e3ca563ac906f4f8fc8292
BLAKE2b-256 46c2c001cd381f9f9d69d5ebbb67e57b2c7961db0bfe7bd92b0f077d48f200d7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 59.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b65aff9972971478b746fb0ae0b4ecbdcaf39ccef570807713e220c1b866de84
MD5 96d4a5ba944645975782371f96ce4e96
BLAKE2b-256 caa19e5b9624891b336d5eb2b21d6019d6e0320eec9dd53923d0315b6a3a34b4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5c5172f26bc17836b822525888a4086f4d3dd6decb5e0efb46f9e472760a4a7
MD5 f36b148c114159ea725707b6b918314b
BLAKE2b-256 7f478a17c164eea5d9067400108b176157220fb9a27557f2d2d5b61782e121cf

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85abd923c4a207ad47d3d8fde48da4c84b2eb20d2c6a36982f336bc91465206a
MD5 cebd1a85703fe9eb1e64a1d25a894997
BLAKE2b-256 352e9892fdf07ea01287baef430adaf7897859fe120c1beb4b4e9c6c496ec3e9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d319dfb753e4a6f93db3c6e41801652d3601992b628be4bf564b4b83754e1d8
MD5 7906e0b4a304e3cce56d0b89723ea3b6
BLAKE2b-256 d1f4496dabfab4a52ab5f13186518ea03b38e93ce45a3d006708cad84720a0b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55eb42fe8a9a51b6276ee2e06d6a2723fc170095ee19097a5cd5742cdb34f4bb
MD5 9ebbee3ea8237aa4e1b6816cb7ccc017
BLAKE2b-256 2b539cf9f5b7fefc8595d2b48dbc79c99a9c48f071a7a5315b24983ac6e2d2d2

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a5d3a37e84c6e77c5d99c5bb0d20f146008ee530ee5c3c957fdedc880e47433
MD5 51b53b4c26bbf3f56ca2e50d92ed8777
BLAKE2b-256 f23b1cb6bfc553125b42cc21e82a2e66d815559916cbe92fb4f4871ee41bc0ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17f576fae399337f13f6c0ea8d118bc80f2d862e4073fc9ca6f73031403a8f14
MD5 c4ac31ec66b629b1099f6173683b2bc5
BLAKE2b-256 297802406810848f907ce2806ee7af8ce7ea9eb82403942e7c961055324ea827

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94690a5d1190eba3df8f36ceb93c812dff9bfbd89c3769507f888ac681a85106
MD5 fcca8b9d309cbb86dc7760f9f2f86432
BLAKE2b-256 49d1ee34ff47df15f26c88e4cffc46398badff4eafe913afc44435c36c78d55b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ba6bd3667ac8e2207c815d4bd0f7d8d1fb0b2bbbcfc8d2d976ee0c11bddca60
MD5 4449f5ce8340fddf18e8774cda2ce1b9
BLAKE2b-256 3dc6e919e32bb9debe30e61407e02663ebe6833bebb9c6eeb4abde31a14a708a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a70b361db6bcad8bca437bca4fb9c5b487bd2ae3134dbcbca22d4b08d9e3a989
MD5 c71add693c8bc9d370f863d372c76f34
BLAKE2b-256 5d6f39f279501ac7a25e9e0e04e0ffebcda6efb6968a89ffab0a0b5717a2cd24

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d2fe34cb11d902d55125593644e7b4b62ddedd2d2c4b33f74609d936bff3e61
MD5 0f91db549b422089ddbe889143c66f1b
BLAKE2b-256 1c2d0db65e3402b8d1cfca1fb1a582c704648ab215ffabf7a3845db12db2287b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 59.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0aaf2806eeeb459d462a9c2bd854c9228cfb951957e044c136cede33a5049217
MD5 58d2b570a0bcd5c9b59494d06afdf6b4
BLAKE2b-256 f9f7a495c9e33b8ccc0d140e9b400fd591e4390a21b2d98352442a7f3c535645

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb0629d6e4aff5bb2ddbd493fb96c37d9a229efca011acf287cb23d10cf51dd6
MD5 697f6651c945166fdb7c02127f54b872
BLAKE2b-256 060898256874ada37fc54dd8ff2b30c4a5cc982aa95b11ad61a263b2b3347741

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfc9a9ecdbb195e8c3c3980f10f915736312c9438e8c05276d2b29a523fe5540
MD5 1d8291db375f136fdb9b5fc6bea9bf93
BLAKE2b-256 867a8fc0565724c01b33774704b7ab8d6beafe62a8defd7bdf1a848059faaea0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb09ddd31a848d651bf28b6ff69aa2a0a65994d84bae69f9c877f5552a63d7d2
MD5 8d3f17a9b3a1b937d5c7f3d5b647f4a1
BLAKE2b-256 6136c0914a71367a41f81942bdfb3deb1c62fd100de2f4036234466862ef42f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f14abade415d392ac25f75c703da653cc76e06980681e89132e119a31b371c38
MD5 0908fd99ff95866a49d9c63d4f327193
BLAKE2b-256 d29280b2b46f0cabf8719b43d40d1006f7b9a24cc1359e9b1107c7d83984a453

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 798ce9fe1cf70f9eb25f70193c1429c433642137c38c79e084e318332baf9a85
MD5 ad7998852c1e36dd67df9671f02ce0f2
BLAKE2b-256 186b313c5921b8b4d1737cc2d63dd9e6babf25d846feccb3b928796e6ddde042

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a437ca9c29afb9542b169402c7613d450b03bf87c83d822b03289ae04791266c
MD5 769594e7e6a8aa038abcae85f9f3aec8
BLAKE2b-256 e6dbd3515146a53692bee5447e00e2a2541cf2dc5976b29eac057fda5fde1ffc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0da32401301c9771a7173120719fec0e128d79f8248b74fc9c060969c824c8c
MD5 ba9738dc4cc947ff5535a288b36656a3
BLAKE2b-256 544c6eb70bc20a2bd63948a79175edf22c07e791548c1043d0c46696964ca798

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 729cfba59b5d83a7fec5a9766da4da69429054829d5b57dec1ae1c6f2edc5345
MD5 7a5eb7517232ab0b305502fa3acba6d4
BLAKE2b-256 71a66620f27c2185ac125a3ed863e8b29b976704d79804009c677e537357c20a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 30f5b0938830c734992d6089f59de6eaddceb038b6e60bb9cc9a2999b61e58fe
MD5 dbe2660297f1c82f2d45e1d7ff3fe0a6
BLAKE2b-256 a5f5b8d519a79a2a6acab832976cf2075867ad309f5b17a7229db38fc15b5641

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 99bdf24d658116c4af8751ec7643f2d4f80fdca8eaaaaafbb334f058a3508990
MD5 491a9bb999431dee1e57de6bf54f632f
BLAKE2b-256 d9b533917414dc99ff397b2dfbdbd107fe0301a6b6b7e7b9c557b2e611017a97

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 59.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 464346fc369beb60310fcf5a28589477e0deaf24adc995664c6889229c1f7ee6
MD5 00d7ae512af608592676806b91f8b859
BLAKE2b-256 5bc29bd6da787c3e02e773e3544e40de30dea4d422bcf5147caf2bfb8445a73a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0479b36f2854159c5e1987babb5a6026bb400b21e8fbde6a435785208d68439
MD5 67a12ac44012e80316b3507731faa87f
BLAKE2b-256 8045ad2805083362ae6698359fbd452f16bb47acc8e92e138d13a1b71feb173f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50d3b418a658d3e77b39e535fe3effb6b19d76eebeadaede821e0906b87ed82d
MD5 e9d5fa531886b3d537abdd6e4f5b5c52
BLAKE2b-256 76e3063548caf779c6ddb1253035be924f7c802216527118099f83c74a3a8639

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21eb3f9a069a9ea426ffc87accc8b9109e436b33262c4476556a4934a4c95eed
MD5 b09907bd7c377336c4744d7bdd9b09c6
BLAKE2b-256 fe73748a53dfe61eeb3b301d75139f37b42a2064f9defcb8f777039ab2f2a6a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7b4f484b19d46b36e1a3b460df54cd2325228ec2863496579b850c7129fb6bd
MD5 64cc2ca19fa85c702ef0beef9e3b7558
BLAKE2b-256 43ba53daea2eaf6fd26cf68e3808ad9a14d77b3573c90f3ad7b50d60072fd357

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 923412a93afca2d1bc1e63f1165b019a3da7d3e38c39cc187e7b62ffe3f717c4
MD5 79f5a47222a615009b105b701d685b9d
BLAKE2b-256 0dfeeacb2d1541bc385a98a1758346fca0d033ccda931a847ae240987f484462

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7433b4f039e66a6158bf6e25914a52f4cf9564ed5a6a90891352913df46d5ff
MD5 8e9467155e147c2c8d7cb90de5c15c0f
BLAKE2b-256 d16d15e9b63f4d0ea8800f655f9a66a291588994134b4a7064106143cb329cf7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cf69344b683063b9057b158698f495e978ff80caaba49d8bcde05e6da94f02e
MD5 4fce704506ccf4eb10998b22e44b6185
BLAKE2b-256 72655da4694522752fce85a7d17de4cea05ed43b1f79632b3639bf0859f829ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c3ccc095c91a3747d98ea9fb6c08b44b08c3bb90aa25396db23e9add2ad4e04
MD5 c7e5259fadb342dfd7a4026a4e57e0a3
BLAKE2b-256 21c193395451b2ba1f3b9ce05a08bc4120b290d615e1cf4a56e19c59f6ae2084

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0cfd9974e75b906a781bda57b7bd807c95836ddf9cb673d5dbd29ddcdbabf028
MD5 21aaeeb6e4f6305a48e8810740ca0d46
BLAKE2b-256 40f4435f1e8aa0152532437ceb54b76573cae330136dd4f312561aa33b1c3378

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 391fbd08654ddd9f2912f13892ebb4c7389cb38bfd191fda7bfbdb66eaa36757
MD5 5444320bfc415a45a3dd9f6a453ec274
BLAKE2b-256 4efb1e745a69693648cc7ca59d5bdb908f8a9f3ff32fb73e52af2366aa540456

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 59.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4a3e3e05eb666bd294d25999bdfa2d61d7ab96d3631c94f46bae4d74bef0473f
MD5 eb2ad35bda31a9076c0c7b1a23223e8f
BLAKE2b-256 eca0d9550f1e954046d29249963832a63696590798ec482c176d033d31ce0441

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd9bea6e1ce6b7dc64a7c2b15d29ae1615d3bf90a736c847f609243fb9456aa6
MD5 97a1ffe0f3a933deeef17416de71427c
BLAKE2b-256 3d7e5543025ca62004fce0d86ce07478d5f6c164188a5bb2c473760475e6fbcb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc55c8838d554d3ed66fab5cb8c10b426d20838df1cdfc60b9aa0916d57a9c0c
MD5 2464622c4302defcdc103e567f290d9d
BLAKE2b-256 ecb1e4681a5e84a6b00328c74805a316c2443d5ed00a946f53cc4d06c6263310

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5659a7258fdb7a0c9228565f0a083ed3399953d0a24d06781789f8cb985d621f
MD5 1a56145eb37ec3c24505912ddacbca64
BLAKE2b-256 21d1b66dadfc07d4547438dd4edaae64c484b9b1b413c2f7a1130b2e92aaf699

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c477ed63078f852ce2f26af643f37680ce6a98f86e562735c3e3059a6e0aea5d
MD5 7b23094654ee795a37b3b197e04616d4
BLAKE2b-256 4dcf2ddeb448c5b93e75a6e35740e7bedbe2e3791608d731de38c79a9ba2bf94

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9271d2fb7df51bc67939a2f620976fa6daab6f89d93dc78d595efdd48032c80
MD5 6eb3e4f406f208386f69658632a6903b
BLAKE2b-256 25bba91b43046cde5ac94ad108ac865920033f2d35e95b2abfe30d293d20aa13

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85a51bd119b04b265f32c96239f0a08d0f4859b8b94f52f72d85461d68b2ab85
MD5 90a03fbccb0555b95c6dfb3d106c6bcd
BLAKE2b-256 db3d783f14b266fe310ff942071a0661903ddc9d99831515a043b5332f09e72e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05a6e56a265610347e8b7714acb489ecf8ca720b8be6690632db044dcdbe5062
MD5 237e04991e5ca8efc34ce40fab74b048
BLAKE2b-256 cb67d221ce86378a08c64a19295e4188ac1714a2bebfa769556ccaa764885e27

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dac9b9da0208fa79d926540e0c880afec53d9b33e7a88a0d1edb564475143f63
MD5 26dd67aad1ccf5b1df184e7249018476
BLAKE2b-256 0c39776fb6cc125e7cc08c8aa50c93b4d6a4e061813de5c2bb54449c3bf3e70f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 35.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for crc32c-2.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a248b3122163b26c01a01fd2355df6efb9554a4ed4a2f15f7c41d242c3467f48
MD5 a42626c56604ed1ce2c8ae583bd5e19f
BLAKE2b-256 5a04aea29dda991f85a26fd9fb30a644783c9c9703ce781e8171767c22d42cb0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43367c004edea1ff922452e1a76abd8b748f5fd437b40cb528a46e11814a84f8
MD5 c926fb444f16ad14db983e0b2a0c9cea
BLAKE2b-256 88c3943f417ef21ddd3a1d234d479356a9b4b2ea1eef8aa062d784a2a2150065

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7c10a335cb41a927993bb116e192fafc149d0c44304b1e71cd90e436f3b5a75
MD5 83f60573854b9a426082ce262d9e408e
BLAKE2b-256 57a889c18d21975ec5c82fe5f2cc941a3a1ab42c158374053d5995325be24401

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.5-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 073fef4febf5f1961452c8f904974b76fbbec6d5003cedd7180d8bd4b9c28839
MD5 263fb56d8d75d51dfec6983480523168
BLAKE2b-256 1e7774e36b214ecae8fca90b5725ef015a622c122e89a236ab8c5c5679ca002c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9380bc6784517ef11ebb208e555f80af7b7269c7ee1c44026e73a5b8fdf6fc27
MD5 b455a3198dd7b5e5720130111bfc71b4
BLAKE2b-256 b616254b37f31917ff6c99be5b9721a6ebfd941324ef3bf822fc500c0f5ef153

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.5-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.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aafb644aadc049f307d92fc02e863d8cc1a7a48a73cf69520742f2b8204e15b3
MD5 d7bfdce5ff5555fc2da9b51891cac755
BLAKE2b-256 33d52c80840ac3b0ab72f83aca9b9e01584e2de2af4bcb9f0ff641b1a7891370

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b57c3fd4d74c1e508475678fa6bfbeaa3622f068a45da16e6c3bc03df884360e
MD5 a7f94fdd896e844eb5ffdf53d23891fa
BLAKE2b-256 147a2d7aa795642875fe8ac2aa6ae9af1d4456c263ec330fbb4efa56136fb5f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 249b5405253a6d64a2d6295af6861cb1b4609efe00e9ec74a102f96e3611f70a
MD5 65b622ab979001984b1b23ff9f9706c4
BLAKE2b-256 1517a07ad856c1bf5963e8e0b3caa980a9baee90868b4220a55ab63749139f1d

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