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 core function 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

On top of the crc32c function, a CRC32CHash class is also offered. It is modelled after the “hash objects” of the hashlib module of the standard library:

crc32c_hash = crc32c.CRC32CHash()
crc32c_hash.update(b'hello')
crc32c_hash.update(b' world')
print(crc32c_hash.digest())
# b'\xc9\x94e\xaa'

For more details see the documentation on hash objects.

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

Uploaded Source

Built Distributions

crc32c-2.6-pp310-pypy310_pp73-win_amd64.whl (62.1 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (60.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.6-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.8 kB view details)

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

crc32c-2.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (60.2 kB view details)

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

crc32c-2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (58.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

crc32c-2.6-pp39-pypy39_pp73-win_amd64.whl (62.1 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (60.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.6-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.8 kB view details)

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

crc32c-2.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (60.2 kB view details)

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

crc32c-2.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (58.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

crc32c-2.6-pp38-pypy38_pp73-win_amd64.whl (62.1 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (60.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.8 kB view details)

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

crc32c-2.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (60.2 kB view details)

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

crc32c-2.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (58.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.6-pp37-pypy37_pp73-win_amd64.whl (62.1 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (60.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.9 kB view details)

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

crc32c-2.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (60.2 kB view details)

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

crc32c-2.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (58.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.6-cp313-cp313-win_amd64.whl (62.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

crc32c-2.6-cp313-cp313-win32.whl (60.6 kB view details)

Uploaded CPython 3.13 Windows x86

crc32c-2.6-cp313-cp313-musllinux_1_2_x86_64.whl (74.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

crc32c-2.6-cp313-cp313-musllinux_1_2_i686.whl (74.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

crc32c-2.6-cp313-cp313-musllinux_1_2_aarch64.whl (76.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

crc32c-2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (76.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

crc32c-2.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.7 kB view details)

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

crc32c-2.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.7 kB view details)

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

crc32c-2.6-cp313-cp313-macosx_11_0_arm64.whl (57.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

crc32c-2.6-cp313-cp313-macosx_10_13_x86_64.whl (58.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

crc32c-2.6-cp313-cp313-macosx_10_13_universal2.whl (71.2 kB view details)

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

crc32c-2.6-cp312-cp312-win_amd64.whl (62.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

crc32c-2.6-cp312-cp312-win32.whl (60.6 kB view details)

Uploaded CPython 3.12 Windows x86

crc32c-2.6-cp312-cp312-musllinux_1_2_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

crc32c-2.6-cp312-cp312-musllinux_1_2_i686.whl (74.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

crc32c-2.6-cp312-cp312-musllinux_1_2_aarch64.whl (76.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

crc32c-2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (76.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

crc32c-2.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.8 kB view details)

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

crc32c-2.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.7 kB view details)

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

crc32c-2.6-cp312-cp312-macosx_11_0_arm64.whl (57.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

crc32c-2.6-cp312-cp312-macosx_10_9_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

crc32c-2.6-cp312-cp312-macosx_10_9_universal2.whl (71.4 kB view details)

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

crc32c-2.6-cp311-cp311-win_amd64.whl (62.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

crc32c-2.6-cp311-cp311-win32.whl (60.6 kB view details)

Uploaded CPython 3.11 Windows x86

crc32c-2.6-cp311-cp311-musllinux_1_2_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

crc32c-2.6-cp311-cp311-musllinux_1_2_i686.whl (74.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

crc32c-2.6-cp311-cp311-musllinux_1_2_aarch64.whl (76.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

crc32c-2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (76.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

crc32c-2.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (75.0 kB view details)

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

crc32c-2.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (74.0 kB view details)

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

crc32c-2.6-cp311-cp311-macosx_11_0_arm64.whl (57.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

crc32c-2.6-cp311-cp311-macosx_10_9_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

crc32c-2.6-cp311-cp311-macosx_10_9_universal2.whl (71.4 kB view details)

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

crc32c-2.6-cp310-cp310-win_amd64.whl (62.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

crc32c-2.6-cp310-cp310-win32.whl (60.6 kB view details)

Uploaded CPython 3.10 Windows x86

crc32c-2.6-cp310-cp310-musllinux_1_2_x86_64.whl (74.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

crc32c-2.6-cp310-cp310-musllinux_1_2_i686.whl (73.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

crc32c-2.6-cp310-cp310-musllinux_1_2_aarch64.whl (75.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

crc32c-2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

crc32c-2.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.2 kB view details)

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

crc32c-2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.2 kB view details)

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

crc32c-2.6-cp310-cp310-macosx_11_0_arm64.whl (57.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

crc32c-2.6-cp310-cp310-macosx_10_9_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

crc32c-2.6-cp310-cp310-macosx_10_9_universal2.whl (71.4 kB view details)

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

crc32c-2.6-cp39-cp39-win_amd64.whl (62.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

crc32c-2.6-cp39-cp39-win32.whl (60.6 kB view details)

Uploaded CPython 3.9 Windows x86

crc32c-2.6-cp39-cp39-musllinux_1_2_x86_64.whl (73.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

crc32c-2.6-cp39-cp39-musllinux_1_2_i686.whl (73.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

crc32c-2.6-cp39-cp39-musllinux_1_2_aarch64.whl (75.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

crc32c-2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

crc32c-2.6-cp39-cp39-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.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.0 kB view details)

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

crc32c-2.6-cp39-cp39-macosx_11_0_arm64.whl (57.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

crc32c-2.6-cp39-cp39-macosx_10_9_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

crc32c-2.6-cp39-cp39-macosx_10_9_universal2.whl (71.4 kB view details)

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

crc32c-2.6-cp38-cp38-win_amd64.whl (62.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

crc32c-2.6-cp38-cp38-win32.whl (60.6 kB view details)

Uploaded CPython 3.8 Windows x86

crc32c-2.6-cp38-cp38-musllinux_1_2_x86_64.whl (73.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

crc32c-2.6-cp38-cp38-musllinux_1_2_i686.whl (73.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

crc32c-2.6-cp38-cp38-musllinux_1_2_aarch64.whl (75.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

crc32c-2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

crc32c-2.6-cp38-cp38-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.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

crc32c-2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.5 kB view details)

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

crc32c-2.6-cp38-cp38-macosx_11_0_arm64.whl (57.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

crc32c-2.6-cp38-cp38-macosx_10_9_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

crc32c-2.6-cp38-cp38-macosx_10_9_universal2.whl (71.4 kB view details)

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

crc32c-2.6-cp37-cp37m-win_amd64.whl (62.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

crc32c-2.6-cp37-cp37m-win32.whl (60.6 kB view details)

Uploaded CPython 3.7m Windows x86

crc32c-2.6-cp37-cp37m-musllinux_1_2_x86_64.whl (75.0 kB view details)

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

crc32c-2.6-cp37-cp37m-musllinux_1_2_i686.whl (74.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

crc32c-2.6-cp37-cp37m-musllinux_1_2_aarch64.whl (76.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

crc32c-2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (76.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

crc32c-2.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (75.6 kB view details)

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

crc32c-2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (74.6 kB view details)

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

crc32c-2.6-cp37-cp37m-macosx_10_9_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.6.tar.gz
Algorithm Hash digest
SHA256 f8c0d09e168c8af4c98fe61c772c775a2ec5d5bcc7a57f095daed423730309c8
MD5 b9e00f2c172f8e751b137efc9404f5a5
BLAKE2b-256 0d49d51f2ad63f7afc4a3c426c725c298ec6f74c7c00ce2609fc717fea0c533d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5de80c60b4f4099f72476527a4ac4823852bb17854d505b4066d067f96683e3b
MD5 51035a522ae12b8bf43efb0224bc4fdd
BLAKE2b-256 2588c2b9bc6efe523a780a15156960adf8b73394df17032007ba604198ac350a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 404add3edeee7213d3f85d065320ce16ce5ab3f97c0ce8bf65e8c4a5e424dae1
MD5 10c5dbaedf783d8de6278299d44ed4f2
BLAKE2b-256 44b10d15a7ea96c5e61347ffdb2c043a0eef6e0e87d3a873854e5a97ffc47197

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d206ead42cb91b0ed07ea94990d4df4f10ab143e240f315cbdb802c2f6747a3
MD5 badc6248fe82aa2f2a5c13da0895a231
BLAKE2b-256 d8cf1316daff769def9a415f6449d59707cf6932777cdf6537dfcc8526286e63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f86a7562149836794c54f0b381f5df053bdc914f71e665248e971b1fb64f77d
MD5 e8fe71975d57d9ea98ee24e25e26c9d2
BLAKE2b-256 2bc1ab4c1e97e5ef522a4f22c60ba2370d321c002104fec8f84b8d496ace6a3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a02a101d962dea5c31f2cfab18dfdf1de2dfcd698b4aab3c774de8f7decde583
MD5 e955ddcfd9685c351fb24aa7d6c7a14c
BLAKE2b-256 0e2389d8358ef05381b1e308fc5e309e28adc48b22bb4687c7e51a82dcc69a8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9fed9847381ddee789bf319962c7fc3291e2bab871dd95bec3d36bbd2cd13ba7
MD5 1b70a6d09b88a71a1c69295cb034d75d
BLAKE2b-256 3cb96c11d399d8ca56e2fbc6514f6bfb07f24f201cddd1c2862726b320ebbf98

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a57ad387c804fce0e23db30c23b3c4bfb26923affb361f54708eb93566538e86
MD5 879c7731eb9a7ebb97347765c8c9edac
BLAKE2b-256 efba2bbadf5fe86fff7145c1bc363b3de3ee77e2b9a5766fef54ec53bc502275

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b3360e282ef7bc4f0ff522353f9c7eb876653624e25f99d09859b4f0255a7be
MD5 a3110c4e8a8e77c9f6b775e6a55b6239
BLAKE2b-256 3e776864c351a04f9b95f4c69784f8717dc015d60dd648697c23fe167c21e710

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98110f90fab18e6aa6df5e0c3fb591c5bf45a50270b014b2f6993bf34f037412
MD5 86e43e6e4f79c8d5943658aabfd1f425
BLAKE2b-256 257ded69b5be46f8f7104f8ef429d722e7bb5e11902a0b6df6db0d427cb1f1bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 665c1957ec5e1bb2e8548bc6ecf60267319c524865fd345f4413a2c2895bfdb9
MD5 412dbf5d4008984425e64b54445ea9cb
BLAKE2b-256 ef0a90a62a4f8b495310ffd4e690cd754575f2b690df85b23387868d71447478

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2203423835c17e12255c279559fc1830e4b31f110936900e78ebe88d83d21f23
MD5 20e612daca2de6dbc13fe74e9f69a697
BLAKE2b-256 a59652a9bfe59219641e9ec8dcdfc60a4329635595f80ddbf136a191c53a4e22

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef22e9630bc66890db995bde967e48c12d1efc5e4ca841e76143cfaf5d924c3a
MD5 3098999623227e7cbd21659091bdb4aa
BLAKE2b-256 06c9b9bd106d1031faa42a0dd8d93f27f0ed734ce6dea7b6a141175d840fc2b0

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 635c24e260edfee8821f13379b9ac25bf12ef3cdf25967f3b61523670fca80e8
MD5 b7e1707be7523443e7a36134e36b50e9
BLAKE2b-256 1c7e052d4bfbc06de6747d6093879f3858eb58c04b966c13cda5805c719cbd38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d33c6374fbbc1659ce012b9713bd0c7b7369656b55fbeafd18fe9d258335163e
MD5 8999b4670ad064a7a83059b6ee783466
BLAKE2b-256 62df36922bfb7010735396c82516821f752bb1981dc1819c4981bd4c34cf476b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf5fb5f2694f68bdc16d586fa66e5e9b49e9df612361318cac15043fe75c2d86
MD5 e7e6cf298a8ea26d173d559a8ac2a18d
BLAKE2b-256 0b54829324c36d3cef11a686b2e23179be4de693429de991f38689e9d92d8208

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 41b660087ea058136ea90ddf776425b139f2b4b5828219070a38b920c2ac160c
MD5 f71d5b4f4551af2b7d51e9a4c4cccb65
BLAKE2b-256 a298b04fec10b836f2b93ba8dd7cd6c868f91aba38602716d938307412228f10

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2eafbe70cb403adc9dc72c602b51125787b6d2e1f24c1488e99c80bad0e9aced
MD5 a32c485f59fc71e4964534e060ea6288
BLAKE2b-256 797bde011e3613fa8233f2d6b2f7e6e7b908530732ec724babe639c22f202248

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d99c4029f2e711c68a3f76a4494e73b619a1998e5f096810533ee250a3890510
MD5 1d5ad20766ecd8025f3873a73f2bc937
BLAKE2b-256 8e93049b7d1989d91d739b5f827fe0f9c256f033dabce6c771a96007457f3c8e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 797a6d94bea10e59d90c0e465aa4e18179f7d071dd7029a3eeb65e7900cec569
MD5 dab489c9e9952103fceef33cb6e959e7
BLAKE2b-256 3d3168985c0da34b0eff39c4eb10e79e950dc163f542c3f448c14324a8c161b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d640492f9412d9f3dfb9118cca8d5ebddcff083d41f66c4288bf8597f1e000c0
MD5 085c4c4087c303f0aadf48e02231bba0
BLAKE2b-256 6813db27d7b6d7d2db27305d21c1062766cbf50ad5b2be57333cafe9db1a1de6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 62.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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 726a720bcfc1e23061ab3c49c1e8790e56abc2ed46b778b1f72aeb9a46eae1b1
MD5 8c00ef7d67b62e734524aa347c1d0714
BLAKE2b-256 ac09b3aa1e941d83d160f16f91e6a996812b0f29520229ed5cda97dceb6ca6f5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 60.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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2207c4197a8e8218039b2f1e42bef42f767231ea575a529aa30ed1862933b827
MD5 56ec256d6b9bd6652eb60cfec461b9c5
BLAKE2b-256 b4e22f92eb736efacffbaf6497411771fb10fe54c46110143af78d0f720a2215

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3afeaf978dc66b89f78c4e1a6ecee042994aeddc52aa2b1f30e4175c15e20856
MD5 8b517d681e5588c0a0b5ba2781fc5bfd
BLAKE2b-256 d5f3fcb2f453e9901c34bcdb968b16fc380baacd7ebc0f6da239ffd9d2a05681

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9558ff93eb096301258d943c04935c245be53c1e44433389865cccb0cdee1f72
MD5 e50db6f9bd60ad36c02790595ef8abcd
BLAKE2b-256 395b479d007e6783dbb188a59e14a6689ec13c340ea2b0ebcfe210a80f1326ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84155c27667b589eafc44f457698026523ea058ba2dc79d107333af6c8a7fae9
MD5 d6f5208a2efff3fe6a516d8073d1e0f6
BLAKE2b-256 ff6097019b5365fbce66d6c04869a9773b865602d0fe748b11fcfe0c6698640d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82df6a4494c2fda538d4e047b63d52147cb2fc8ceb7a3960293e97c1a49ba012
MD5 57ad0d397151f65727df21eaed2170bc
BLAKE2b-256 e538a52199438c456f72ef6da76527769a8652534d9bd001c3bede6fb7397fac

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b0e4752491ed8e23091ee7e06b7a11f235570e33e6816db0a1f0dc2b97362ac
MD5 a83c49374491638f1221eb65333546be
BLAKE2b-256 7b9e6bce1304ad5244e623c6db11a43cbe63dd5a3f969cc9dc5a2ff928444b9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1edcf7f97ceb6f9b3c743ba3310fdcbf75c5bd641ac17e327e97a5a24eba367
MD5 845784b3d91cce565a6e43044a2b368a
BLAKE2b-256 6b49bb43a7800696c7bd036fb2bd916fc54bb346c63f0729af771c47fc10c8a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4cc10bdb224f83e32fa14faddd71accffe5866c3a5aede2aafdaf7f6bd2da99
MD5 03865708f67e57207cb58375a6453019
BLAKE2b-256 017c2cb46014eff3ad5b4402c79bc1fc8cbe291680f7593cd8bb88dc05046622

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7377312389262e1a8bdbcbf55195449fd936a2a37e5f3622b3c96f32ba4180c2
MD5 3bdc77b17c2095b8f55ec75693234141
BLAKE2b-256 23616c74936cd85e6817094f78b30b09523607391a2c2d0d5d7bf944cc563556

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 536c50872f671f5d4e26c72a35b032eec3f0a4f13ba806d6ccd1ea03094e149e
MD5 959426ed8d5178f7bf36ef7cea0e7bb3
BLAKE2b-256 5b5193384ae0cbf425cb9898375a8662bdc38afd203f02d83bb6ab78c1f7f592

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 62.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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 58bd0e96907ffb2273c182dd41fdf0094a91643f42e92eab8b584f696c05fc03
MD5 fcb9d7156baf47bbce6fd209e7a94c73
BLAKE2b-256 82666f212b6cd2080534d8c847fcafe156fe73a2ac8487d87f443f955b5ed3fc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 60.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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6cf32ceaf28b5c733156356100ce789109fd86a07f0c7315feeca612ad9f34a4
MD5 3763849e7c4524a6fb343cdcd5d50bc5
BLAKE2b-256 11c076e9aa35b5c9549041d040c87ddd51fd94d3e9ffe145e0a7988d5e195716

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21ac9be11f630a50889da2589723f6e2c5af42f47c1237a896c34a15a68f81ed
MD5 e5d5bbc3525ede544a472b4aaca15871
BLAKE2b-256 5095db65fe3f1c3b7f853129ad62bf81ce945be09ece052236bb40996536c9b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d13c0a4489e7c70adddec5c7ddd6b3193beb69a74aecd47736535fa1d973487
MD5 d4e35cb69b93c31dff9555e33eb10321
BLAKE2b-256 76f567c05c5ed98acb17140417dfd3d592311af74dadd75b058f4c2af5604fcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ade07cb248d92dd8add37ec0b58509de41170b6e7842db65c2dde2001c3be7d
MD5 778acfe9cdd59642cd9395a49fdeef14
BLAKE2b-256 20601017895265efdb95dc25ae254bb6e8b7e5ea81fdb35e5a660b695402c50f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3aaf8f4c6db2344ab0d6efae9d964971d1c9c24be47b57147cc71ba92235add
MD5 7fd1a8e0af0311390d28b8d9d1082f0e
BLAKE2b-256 2ae4f2520fed10ddee9218a1c5713ba104877dace407fc9aa259f0936d2d13f1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 705038fcffe106715553edbd7f545f484c9214059952ba9fefc6ee9c722082f9
MD5 30cc3fdce87180677e3578f337a53611
BLAKE2b-256 93d6714d25a8ef22d8ce652f72683da0a9ed209474a86a99ade9292d6e76f811

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bd888fc69556139469b4169427ef541e6756a263f6355f8e0f186e16b62b1da
MD5 fadd4d0915b55585fcf241aa11fd35fe
BLAKE2b-256 b3222ea0c9f45eac369b80a9a19d8e8c6c08f6de65bcd2c6eef915ecb55a51cf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1add46f473c13fdc4eff3dd97261f38536d8b4860efca9b1203a5fd54e52b749
MD5 7f177d9c775375a67fdb79c986136fb2
BLAKE2b-256 c57c3fc56891c2145f3b9354dfec63680365c957045f6b1d0274f6d03749acb9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06425f8ad249174de7e888dbee23255168a9e49d733cfbcf888179817ee3c4a4
MD5 cabd7cf27bca4cfb5dc71e11ad59abc4
BLAKE2b-256 ee37cbcf710c12f0ff1aea8859970984b8f7ef257fa347b70e4742d18240edba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2b0a1acd02e3674cba923f8e94133c6acaae13cb43ddb521cd724951b2c67b80
MD5 e58fd4d69e24ba16587780b01f66f545
BLAKE2b-256 76b98e01b18c0bf490fdae1db034e5a76bc38284d6f29000442521f17420c33d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 62.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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 434c959a43a13ddac0554157baa3cea71298416eb0c56d7a97565cabbb14f595
MD5 0e8cde1eab931c2bd7b2394c90e95684
BLAKE2b-256 2bc3859637c28fed6b0bea06e1bf3184d2397c9e79484c1b6e51bdf65fa61f50

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 60.6 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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dea13ed384af5042cd0322a06a2e1ae06f20bd7a31b0cac5619f96f530d20154
MD5 0094de95579f401116f6ff91dbd72991
BLAKE2b-256 7db6b4a918b7a57c3880c8840be348a4b8a502cf99b598d1375cfe13f0ba5cad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1133c330e54c24fc22d4b426095c7d7bd73f188933218d33d79e69ab643b376
MD5 25ed8a2f2e2f15e717018846939d7ebb
BLAKE2b-256 7ef83e62f1eb1d2b869a25d49a30c0d304a4a461954432af0f224459e714288b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ea8c91a6623d1ab396c3bb007d5cba288ecfcbc01033ced87afb1b1b1ee2923
MD5 02eef9ec6eac72957a721889eeba7b7e
BLAKE2b-256 65d07ad7938dd493b88ea8287e57bdb9c67c5f1fadd16c34c96abc50f9a00485

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f2f10289f59ba2ff7ee1bdb147cd2f5fe26d6c3cae45cd136b70524e573b92b
MD5 3d24b91892de0bdbc5524ab343c42314
BLAKE2b-256 ddf10d333bd71714d322ef57fecb7032bff4cb1af98d8b4270a8862528b198e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59710a18e784c288d96ed39a8f2a36cd5e3ab477f654586a582d96e79bc18ef9
MD5 439761256f05e4b7a7f120ec2bfc04fa
BLAKE2b-256 003101e5e3599e4ce809992a512f4201929b1ecc398a7b88e8ab09f2fc01f661

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb867368bcd541933dd117074f836ce59f90ebac57df06dc1194ae669ad8f6fc
MD5 031dfd79b59e87fd6f144097b88424c2
BLAKE2b-256 bd95edb7fd426f2a092e4d36377814c47d095c642710c55b1754679294bbc220

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86bc2e2cf3af26b4345b69d234813c565657cf21f9b1c6642f2a0b5d2c0bf92c
MD5 f1c355ad291fc780a7a3a01143af2359
BLAKE2b-256 452b268620d2a6ebf74fa289c4a75787896c39bcd8bbdd348415a82c5e6959e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4104b8993abc624f66d05c70353b024e1eea28e555fdfc2304833181ade8e770
MD5 c7e8d485c2630169fbd2926853df64f1
BLAKE2b-256 46330936d3133e6a0d9ffaa8e2cade3d31e3497d03e9a8d88d2e0d46eb17f98d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 947f016b06f22648cd603d4daa4a37766a5d1c1080c799156554e8356b22ebe3
MD5 59c6b124753b27fdc596e41146d75ed4
BLAKE2b-256 a0862aa729081b1b3b1430f1c9068f7198ec980cc4f7d2dbb0200892a517b5d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 618fed55b3668676d38e74e7fa694fdadce395c15e12cb6f10defcf7f9ad27cc
MD5 7c7da4e20fc4fa58083b900e1c29a00f
BLAKE2b-256 2381c890eaa9517fb20015773b4522b62c60b6e5f080b75c6dd4a6296276f925

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 62.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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7bb16f08984770e4e905ef7fee64cdca4787c28f16e96926e105931b465c1691
MD5 14b98e1467e9777c927160a1669b4ef6
BLAKE2b-256 6d333f3c9020c7fd4941af829d7b2d0ae5feb6a2d5a16a31a58559da302da7f0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 60.6 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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 39ae1b64c14ca16c4fe54a963adb9ac4880c3faccbb8fae438fb03a54371e15d
MD5 dab3b00c49395ca2bf0698942935d127
BLAKE2b-256 c47e56f866ee158efe605e3ee60b46ee1479158c9550e33f9913c16097d8350d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15b3c10855900e28cf9ec7641e3a270bcbf642d51d920d61694728e3d423afa2
MD5 858f488b1a1516e170fc80a2651a5f08
BLAKE2b-256 e1d76d49bcc132fc968562bb0636f5895b5f87526ad2fb73ee178c36afe7e106

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d0047e6beda269b5e0d3d607587cfaebe0c7116fcb753326087283431d8b45c
MD5 a4acd8c9f127bb619bd0f383e5f70bd6
BLAKE2b-256 adcdc88dd8b871709c428f5b33a8e1c22c57cd85c5ade5664fcfe746ff690f25

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdcba67225f2626e9520bf2f0d59bd056696bb0b8486f11a798beb4fda8e7865
MD5 2a87c4fe689fd042a9795d851b5fd01e
BLAKE2b-256 d3e718a0bdd75d209b829a8c32ec63a1ba0462e9639252c5f71346fbc642d953

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c67d403c3e1783330b28bfb09b810a93021b1cd03ec2918b76e6ac1ae8f6a799
MD5 46ba5ec95a95f24ab7fa197458fa79cc
BLAKE2b-256 4598e77c6ee2f22b16c21808c45cb38e77778efb3b5d2048b68c9a07da46ea6f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ffe9a3bd2fb7366947f4432c98899dd758446a9a95441fac4b046e8f320e9f0
MD5 16f99de34a05a069c9406a2aa8dbfc4b
BLAKE2b-256 85e5f817efc16086b427d537c2860554d0b7f2d1cb605ea4009f4013bf55db46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc2049f4918da19c960bcee091a2bece80eb1b73e30506c0fcb92334c799d339
MD5 6b9a65492fb4117db2feb8948182ad44
BLAKE2b-256 c005390cd1805b8c973f425c2480b70b6004dfa81200e99ef7363d36d3cc83dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa58e70e3322e0a0d0395c850704600b2ef498083bca518214b0d66745120e56
MD5 1a581f189f200dd096b32eb01c872f78
BLAKE2b-256 e7877edfb403e604067aabdbabbc7e2dafbb81dc0f54e50366f683b622c0bcc2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58945c6b6d0b3658e434e87ca396c97533a160dff9921deaeeb86dfc521c5f00
MD5 1420031b9efe8630dfd7d1c269ac6f48
BLAKE2b-256 3f30be7cf994650e5eed76fe91d5114fea93ca0c4cfdeb0c6695aa25a26a5589

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a5d1c2c7efd52e9da683280d0933fbdd243f2fb72be7050f06517e79b1ef9c64
MD5 b07c33d3f4c07a278fe60f805cb1557d
BLAKE2b-256 9179922eac1adde6c072fec2e88a7a012cdb3d0172286e850e84fa4849608dca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 62.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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e1662e521e69b7e97e300f981464acc03bc7c4f216e89eae470330797a8db12c
MD5 7431c645c5aebbf25268da6e477f16f2
BLAKE2b-256 df7b963ae7dfd42768e196f314173994def1c689bda2666b9543d1bd7b8d2db2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 60.6 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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 54f4c2c16dee0bb15161c9bbe81570b8fb56dee98434afffc13e7816fc95b671
MD5 54a9d7cbd01cc7365607b3ea5f804c76
BLAKE2b-256 864506023030fc416ddb67bb00aa8eb46546cf4a113909f94ba7697f4c631461

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98957876bac4bac0cc9841cc2086698c07fec0f4f0418c40024fb057e4d1d7bc
MD5 e9d1e61fc7b30650f3984a8d04358512
BLAKE2b-256 273c5fa8114c351ae850b4d090a107d6a0ba0b6d7a9d23f8a2a1cd3a2e32b609

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2adba4b00bcb46ebefe359979dbbfd99b23fdef47e7c6638351bf293d571ea5
MD5 2006171e0e741f82edc3914b32385d68
BLAKE2b-256 b12b3100763464690453f728dc5f0cb93e454ee9d109c85d8e0873984780bd78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcf3ec5a33e0b026df4cc853d122ca449a36c68f989f7f7972ebc577c1e85174
MD5 f2b423904f54d8ea63cbe0dd95c2b069
BLAKE2b-256 6c1c706fa6910936d12ea6197ae03d7a40857fc4fa628fa939cee81727337827

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 730fad9af887a56f9c188c41e36ec322f843e057bde3ff609c8dd4e285946a89
MD5 d8d9f7d3797f869793da70b7bfa49c80
BLAKE2b-256 0d218c67e227eb3971fbf47e1487d898e07c86e753df8d80b35fd9a0afb20b08

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e3b771c001862645736ed73bea6d7d1446a7a239e50838ceda148abcfb92d71
MD5 a2c9945d8926d84c7048caa34fc97353
BLAKE2b-256 df34f4af42cadf267a1df780c758af55579a3e10b6dbb5c3663c5c116914b891

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a90d4bc67c584121bb4294293b9ca2808d3cff79a6e264a0334b05ff87b5e92
MD5 01e044999ff09f4d88fe33d10f8ef470
BLAKE2b-256 b4930eff57cdc1787163b7422917ec0ea5163430193f3a50e53137f13e1ade8c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 246c4c7728a5ee1b0c8b99f0cb8b3515f7a88e252137a2f3051bfbabcdf27f13
MD5 3478b8501a3d56e99a6f1d77bdd7c85b
BLAKE2b-256 224d19e787f19972108f8bc4781200368bf7e98147460e945f59e90b860f2232

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3d6585e42709409ddc35c3c1a1bd2aa073d5c471d903b2ddf98965c147f651b
MD5 dc0ccd935ac4698fcaa9b9682f86fd5f
BLAKE2b-256 4d585967160e055a11313e2ebe65589379db49a8aed76f0aa505058547192f81

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 47bfa663ef341c9ab362d86f7d11d18689cc2e21bea7fdc216964e65f84c1a2b
MD5 7030ba699ac07b288e37a6e6d7340c59
BLAKE2b-256 235330394dca9a67f79d5cb45e742e4dca34cddccfc5d4fc0c0dbf124384fd9b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 62.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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8bd98143f30407465500a4e75f79f1c1c1e1203a7a46105012af2fc3b1ba0387
MD5 759b25eb7a5f008293e3f99c5280a847
BLAKE2b-256 612b614206a22626f6f1412bc356919d696f74a6d5927968ff9211a8b0357424

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 60.6 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.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 92abbde82b4a0606bd62136470f4fa3ea7fd0ea11becb584e1730d03b27decfc
MD5 b9ac19ea98041960f06b16fcfaa76cf9
BLAKE2b-256 1fdbc3591548947e0356b7fad01766ca3c8c43a8d5f2623945cd3d04b1286a18

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a64169bab97c5a972b6e577232b4daaed1cc4cf53aade3d3e36df75ebbd4da41
MD5 486f27e860bf4543a058e36b3c285ebb
BLAKE2b-256 d30357ba7a635fd3477b06c2b7d03912ef1520a3cf9e4fc4fc633e60129d887a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8d89706e2bbac798a80399f796b0a0c39c4b7e2afc9160e78278fd73274d7bd
MD5 4506cc06454ce8779951265174a77bab
BLAKE2b-256 ab2aab3a2d4aebb9a6d774f92d4e7da058fbe2fc64a4257ae16d460f87a46e4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 847be61fcd3ab2a0fb5012bd1ac70be1c41c3398c450e0c0b92ee768314af3f0
MD5 2a5d3767567f1c4065b9e4731a99b016
BLAKE2b-256 ae7682efcdb267d88ec776384b534d084afea4bb13c4d29a1d744d500bb3626d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffc5209d99eb6c2ad8007086074f38792175a54d012b22703e9faa4c22c5c819
MD5 2a24c49856f44dab788c224484396170
BLAKE2b-256 5d06abfc6c104052851cab09cd8a28c26f43aa5bbdc48a5aa44a0e5942312522

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7164652e58e74fe9b8828fa6a5f0d32aaaed493c1b69dbf780b2c020017b8948
MD5 569085bb8defe74118d3a440aa131fa9
BLAKE2b-256 6f0696b9d8047a557426cd8b5a3f8228ebe9bae8e4d1075cea7b75f2eff4abd1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9a01240a90ffe9a67e71d4c1d3ced266f81531ada03ba817fb2783369854649
MD5 c6d9052c9d1df8d4e5771ac87b2d0125
BLAKE2b-256 84e6987285d94f777970aa5875d0fd644bf21c299bf39331a76b668475d7a99f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 766a619415a545200cf628e452a5517184a751fdc5d38e45191a2df938287dfb
MD5 1ef34f370e2c79dfef581299cece09d6
BLAKE2b-256 bc62c98c7a0c2f86a754c601904ea0269998639c7ef1e8474477bdcd23bf41a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82c9bc85a6f0bbd2be43ee02466f1239733859163874ea454e2c48d49ef3a116
MD5 06961376b8d0a005cfdf831e32b58eda
BLAKE2b-256 60cd413b1f76f8eaaeafc59dad81228cadd4f3b585f84c17dd7f55351b3d5a7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d0e304caaf79ceb22737e6ea881109d66403ac26d72656740136734427161ea8
MD5 5779227104498b2bc58dcba3862bc4e8
BLAKE2b-256 624c0d380c5b2e458f052348f0824ac59461d9169c08a5c67a2cf26df5268d62

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 62.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.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 080a4fb222f8d25f21ef49fc288ad1f3698d3df329bafe3d0df833912387694d
MD5 15e9ad7cad4b987a402e6e0855cbcad8
BLAKE2b-256 5658689f4e16eb7713fd7d8a290aff482f15c685bc3fc88edb3f9c0e000c19b4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 60.6 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.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6d2d18f2aa43a36dd2e8c96850f67788f261c3d1d36703e4345c87d1a08152b5
MD5 928a6c637269a7e31269457423c875bb
BLAKE2b-256 4df6a374410942828faaefa273df03b13694409d9fc44616b5b13eced69bce97

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17345510c4c094a32b3b475b7c1c4449d0be873e6083f8afa32e122070826407
MD5 f096d2fc0f937f05e6c69b802e35af23
BLAKE2b-256 18b46e3d0ded67c59e3063fb87c9f84009d0760957f99a264524f617e940b424

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c040a1a4f1c8b6657e074d282fc75b91475e4f5d74c3c5c8986c07525f13e15a
MD5 4fe2a1e7f10b37b1355473faeb585233
BLAKE2b-256 8f8fe0c30a316549445324265e68449622c09eacb63f9667433ef7e2d96ed194

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61f4d19d7eb18bd0fdaa56d997123f221caf106479185acaf932b9352ef55435
MD5 43b0476b895f469a606d37a5e20e6e62
BLAKE2b-256 d3270c843ab81363e37080231cf99987cf3aa11e3f4de776b46ab371bc63e70a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34bebd071b11f650c3afdc5d69375d272d95079657ebe4341ece7d5552191d57
MD5 3fee39c11eba53475657eb49cd080054
BLAKE2b-256 e0ccabf4057a3291808af07a329fcc8ac02e491ffd10de4cb224d03e271cdf9f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.6-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.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4efc499a09abf92a8c8dc72bbe8ad0521a0b6fc74c4a03593ae5379116adee8d
MD5 19d847f0e0925295389268ef6f881d3a
BLAKE2b-256 025b3aed92c76be5a0b84ace8d7a255329c423e648aaadf7e3e51d5ab62b54d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 254af6eb2fb03b388736f5f18ad6d5bc9133b04cbdc0405a25c1b73ef4329c16
MD5 550028b561e4ab7dd7c784c8d223c4fc
BLAKE2b-256 3d034f4b8b766667e2cbb251ca8c1f6401d6a12b6236b80b6ee8fdb9b960b770

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5e2be612fc29a499c8dfc845187dfddaf5fec88de166a6ad356574dd690c1d2
MD5 3d2f52ee9ca3b3097a5debc461a05dab
BLAKE2b-256 76a0def08c5cc3c46485b36196312f23f86e11632e20efd54df520ba89d45290

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