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

The gil_release_mode parameter doesn’t have any effect on free-threaded Python builds.

On top of the crc32c function, a CRC32CHash(data=b"", gil_release_mode=-1) class is also offered. It is modelled after the “hash objects” of the hashlib module of the standard library. It also offers a checksum property:

crc32c_hash = crc32c.CRC32CHash()
crc32c_hash.update(b'hello')
crc32c_hash.update(b' world')
print(crc32c_hash.checksum == crc32c.crc32c(b'hello world'))
# True
print(crc32c_hash.digest())
# b'\xc9\x94e\xaa'
digest_as_int = int.from_bytes(crc32c_hash.digest(), "big")
print(digest_as_int == crc32c.crc32c(b'hello world'))
# True

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.

A benchmarking utility can be found when executing the crc32c.benchmark module. Consult its help with the -h flag for options.

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: issue a RuntimeWarning when importing the module, and a RuntimeError when executing the crc32c function, if no hardware support is found. In versions of this package up to 2.6 an ImportError was raised when importing the module instead. In 1.x versions this was the default behaviour.

Setting the CRC32C_SKIP_HW_PROBE to 1 simulates platforms without hardware support. This is available mostly for internal testing purposes.

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

Uploaded Source

Built Distributions

crc32c-2.7-pp310-pypy310_pp73-win_amd64.whl (35.9 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.7-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.0 kB view details)

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

crc32c-2.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.3 kB view details)

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

crc32c-2.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (32.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

crc32c-2.7-pp39-pypy39_pp73-win_amd64.whl (35.9 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.7-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.0 kB view details)

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

crc32c-2.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.3 kB view details)

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

crc32c-2.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (32.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

crc32c-2.7-pp38-pypy38_pp73-win_amd64.whl (35.9 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.7-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.0 kB view details)

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

crc32c-2.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.3 kB view details)

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

crc32c-2.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (32.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.7-pp37-pypy37_pp73-win_amd64.whl (35.9 kB view details)

Uploaded PyPy Windows x86-64

crc32c-2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

crc32c-2.7-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.0 kB view details)

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

crc32c-2.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.4 kB view details)

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

crc32c-2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (32.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.7-cp313-cp313t-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.13t Windows x86-64

crc32c-2.7-cp313-cp313t-win32.whl (34.4 kB view details)

Uploaded CPython 3.13t Windows x86

crc32c-2.7-cp313-cp313t-musllinux_1_2_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

crc32c-2.7-cp313-cp313t-musllinux_1_2_i686.whl (47.9 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

crc32c-2.7-cp313-cp313t-musllinux_1_2_aarch64.whl (49.9 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

crc32c-2.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.8 kB view details)

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

crc32c-2.7-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.7 kB view details)

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

crc32c-2.7-cp313-cp313t-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

crc32c-2.7-cp313-cp313t-macosx_10_13_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

crc32c-2.7-cp313-cp313t-macosx_10_13_universal2.whl (45.4 kB view details)

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

crc32c-2.7-cp313-cp313-win_amd64.whl (35.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

crc32c-2.7-cp313-cp313-win32.whl (34.4 kB view details)

Uploaded CPython 3.13 Windows x86

crc32c-2.7-cp313-cp313-musllinux_1_2_x86_64.whl (49.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

crc32c-2.7-cp313-cp313-musllinux_1_2_i686.whl (48.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

crc32c-2.7-cp313-cp313-musllinux_1_2_aarch64.whl (50.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

crc32c-2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.5 kB view details)

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

crc32c-2.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (48.4 kB view details)

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

crc32c-2.7-cp313-cp313-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

crc32c-2.7-cp313-cp313-macosx_10_13_x86_64.whl (33.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

crc32c-2.7-cp313-cp313-macosx_10_13_universal2.whl (45.6 kB view details)

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

crc32c-2.7-cp312-cp312-win_amd64.whl (35.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

crc32c-2.7-cp312-cp312-win32.whl (34.4 kB view details)

Uploaded CPython 3.12 Windows x86

crc32c-2.7-cp312-cp312-musllinux_1_2_x86_64.whl (49.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

crc32c-2.7-cp312-cp312-musllinux_1_2_i686.whl (48.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

crc32c-2.7-cp312-cp312-musllinux_1_2_aarch64.whl (50.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

crc32c-2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.6 kB view details)

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

crc32c-2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (48.5 kB view details)

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

crc32c-2.7-cp312-cp312-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

crc32c-2.7-cp312-cp312-macosx_10_9_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

crc32c-2.7-cp312-cp312-macosx_10_9_universal2.whl (45.7 kB view details)

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

crc32c-2.7-cp311-cp311-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

crc32c-2.7-cp311-cp311-win32.whl (34.4 kB view details)

Uploaded CPython 3.11 Windows x86

crc32c-2.7-cp311-cp311-musllinux_1_2_x86_64.whl (49.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

crc32c-2.7-cp311-cp311-musllinux_1_2_i686.whl (49.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

crc32c-2.7-cp311-cp311-musllinux_1_2_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

crc32c-2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.8 kB view details)

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

crc32c-2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (48.7 kB view details)

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

crc32c-2.7-cp311-cp311-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

crc32c-2.7-cp311-cp311-macosx_10_9_x86_64.whl (33.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

crc32c-2.7-cp311-cp311-macosx_10_9_universal2.whl (45.7 kB view details)

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

crc32c-2.7-cp310-cp310-win_amd64.whl (35.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

crc32c-2.7-cp310-cp310-win32.whl (34.4 kB view details)

Uploaded CPython 3.10 Windows x86

crc32c-2.7-cp310-cp310-musllinux_1_2_x86_64.whl (48.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

crc32c-2.7-cp310-cp310-musllinux_1_2_i686.whl (48.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

crc32c-2.7-cp310-cp310-musllinux_1_2_aarch64.whl (50.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

crc32c-2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.0 kB view details)

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

crc32c-2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.9 kB view details)

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

crc32c-2.7-cp310-cp310-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

crc32c-2.7-cp310-cp310-macosx_10_9_x86_64.whl (33.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

crc32c-2.7-cp310-cp310-macosx_10_9_universal2.whl (45.7 kB view details)

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

crc32c-2.7-cp39-cp39-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

crc32c-2.7-cp39-cp39-win32.whl (34.4 kB view details)

Uploaded CPython 3.9 Windows x86

crc32c-2.7-cp39-cp39-musllinux_1_2_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

crc32c-2.7-cp39-cp39-musllinux_1_2_i686.whl (48.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

crc32c-2.7-cp39-cp39-musllinux_1_2_aarch64.whl (49.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

crc32c-2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.8 kB view details)

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

crc32c-2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.7 kB view details)

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

crc32c-2.7-cp39-cp39-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

crc32c-2.7-cp39-cp39-macosx_10_9_x86_64.whl (33.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

crc32c-2.7-cp39-cp39-macosx_10_9_universal2.whl (45.6 kB view details)

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

crc32c-2.7-cp38-cp38-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

crc32c-2.7-cp38-cp38-win32.whl (34.4 kB view details)

Uploaded CPython 3.8 Windows x86

crc32c-2.7-cp38-cp38-musllinux_1_2_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

crc32c-2.7-cp38-cp38-musllinux_1_2_i686.whl (48.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

crc32c-2.7-cp38-cp38-musllinux_1_2_aarch64.whl (49.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

crc32c-2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.4 kB view details)

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

crc32c-2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (48.2 kB view details)

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

crc32c-2.7-cp38-cp38-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

crc32c-2.7-cp38-cp38-macosx_10_9_x86_64.whl (33.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

crc32c-2.7-cp38-cp38-macosx_10_9_universal2.whl (45.6 kB view details)

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

crc32c-2.7-cp37-cp37m-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

crc32c-2.7-cp37-cp37m-win32.whl (34.4 kB view details)

Uploaded CPython 3.7m Windows x86

crc32c-2.7-cp37-cp37m-musllinux_1_2_x86_64.whl (49.7 kB view details)

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

crc32c-2.7-cp37-cp37m-musllinux_1_2_i686.whl (49.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

crc32c-2.7-cp37-cp37m-musllinux_1_2_aarch64.whl (50.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

crc32c-2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

crc32c-2.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.4 kB view details)

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

crc32c-2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (49.3 kB view details)

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

crc32c-2.7-cp37-cp37m-macosx_10_9_x86_64.whl (33.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.7.tar.gz
Algorithm Hash digest
SHA256 400a9b51813ad7e3318ee988dc0d3305337c2e9ec95396270d560fb268214080
MD5 53358899c84cf653097fbee13d502b95
BLAKE2b-256 ab2a4c309c094ce51df5b070d7b2eeee32144f71b5aa483a925b7019b2db4c2e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5ccc0127fde6c6d77d268ab9aeead8cd3c074ed00caa29e308504094d160d28b
MD5 ced1c822448cc21cc58d3d5c4ddbbfc2
BLAKE2b-256 2f0583bd8e40643d1d1b7af1ebaa8f38fca30e5e8c0f8ce49a6c4447c3755804

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 220f49c9c31186c89fd08184e3ecf0129c8eaa65b70b84b873c06c300b30f91f
MD5 0db924b12540500e34a19feae9c9099d
BLAKE2b-256 c8f14e905944fb743a4c642b88af730c0c9cc34fbab3fd9111aeb02f0dc476d9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce6db2c075cefd2f9dc6760a6bec0ec58b7930a89a40b1b4251b476ac5099a2a
MD5 a0bd313a78ecd007ef396eb27bac39ba
BLAKE2b-256 17101ccaaecc17aa078705477ee15495a9e6b9af9de8d6c4472fff25443bb21e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac8def8815455635b5a805f43929b60f4cdc44982a7adf115bfbf594a932164f
MD5 b71c87ca0772e70847217fa982d7090e
BLAKE2b-256 8d7bbe35148cfe3a6d7c1edeb9ff04644b501ba37904274ed1bc8ee2ad95df55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d27373d3e1fa58ad81f8a61cf5f7e3e56d0854c5db73eb619c3698c97d76401
MD5 63b0c5178baacc6cffd01c733456eb76
BLAKE2b-256 4a602081b682042c56bf00ad8d2d1cfdd78731870a5eb400100f1841a04bf9f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 10474aeed64be7f04ee24c07c143fe6f922726a362715543e9d6b75fab228fae
MD5 0a6caf83d8e1288d8fa585d1aa9802d2
BLAKE2b-256 a2cfd24bb356041a05e22b93a88fbd1285e38b72ce713bce265c754e80713e4e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c2a6ae14f71ac77d8a6a54e7e40d0635fbdf0208946a972543cef4e37d920a9
MD5 bc9c231e4f5e492e3c96abfcc715f03c
BLAKE2b-256 fa552c55de57a6304d40190a063ac327a6f19208b908b096fabde1064b90406f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b897be097112f26cca1e4c7734a05119e93e16e2d9d355c4de30e40583c9123
MD5 1d6793499afcb2fa065528ee90da9236
BLAKE2b-256 cc08947e1a2fd9e38e6a52f746db89aff283493b4f6988907557a111b3742127

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f79f218bbe64ab7b9e50fc8b555186f8eb435f14fbb85af7e227355ef2d0da4
MD5 af0c36718abbd1cc4b57edd78b9c067a
BLAKE2b-256 bbdba61718668a166f3451fa17a060eac3872a566bceec8f1a3ac4ae1b02ea91

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4f0e95a30f115cd874580382ed80cd905711d1f1d4e2a5a65d73cb062ead35c3
MD5 3ceca88fb0e908e58dae1073c6069b08
BLAKE2b-256 47b961ee301011aa5afb70cc8d797dd30f8fe7bde5bf6f070d1cc2a85649463c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e5750e3f27fcac8a5e097302881c965377e487f5bfefecd9f7bdcb5de379d6ec
MD5 d0fed1645187fbc4c5a1ce5e8e3af107
BLAKE2b-256 dcf926ba4c3cd6103bca32a0bf5a20bd4bfad3b84888e518e56d21ce84ebfe95

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92387591050e1ec615175ceeef27b51405f896c74c23fd8b0f7e090633654133
MD5 d0564215648e8ee768499cbd195d3f0a
BLAKE2b-256 1a2bad8ada7a8f26765bde83cfe26f98e3cf590de6745ad992339ab868ff3127

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4a26598111c0adf70d1ccca80eaa9d91483007d80b6fa0996516e342e71fbcd
MD5 8f60623944eca30f58d0a14301671b4f
BLAKE2b-256 4a393ed03abcfa21fb52bebf0150685fe0645e335b642053781db4601b80f8ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60023ed49bca9f9ca811f2b73ee7eddffc9c4861ca233e555a3fb98c475ebc2c
MD5 c69acb1f4aff3580d6c1686e07e95722
BLAKE2b-256 44d0a5560f89cdc50dd7670920f87a427dd76fd2de6be73d06c0df132d88954e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15baa2cee8627bb91bc2c1e1b86f4af31006b8ff7a357ef95631dda793f3f80c
MD5 622ce963c3b7cf0b279738a0622f4015
BLAKE2b-256 2ee5329cd079f15886fad44f93a6273d9c41ec49913fbdd3d66fe067ac51e1ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 625f2a2cd092791dd1db30bc0b6c0be57534866c2fa3da30ecdc1aa13c569d30
MD5 d6a0b294c632fb09b281ecf0338341e2
BLAKE2b-256 c20b1f9b177b5c538469796135df2f2037440e32d02e4be2b32dd0f6e00895e1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b319b26fb5e4d99ed4aa30ce0b8f2c8a1a2c783a232940c832000aea1f8c10ec
MD5 33f8f63a3b20c844c9f3f811e259c7d2
BLAKE2b-256 574c377b0496ecd2952edab295cb12c0d9d468e7e9584021652d8fa4ea66b4a5

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d15ff920db40eaf5facc20e541b946610c2dccf3bffc72382bf8c8365be3f8f
MD5 48bf9a7bb2a66340f34c9e48c545799a
BLAKE2b-256 2b990c1c2ca480826839d0fb111145f8c907347de147df8cb79aeaa9343ec13f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebfc10c9f413f0878e0d35f9b75a381475cde8e97126936ee0040b3dd49a5428
MD5 c711cbd58226415a9648466aeb90633c
BLAKE2b-256 1cac1af3eac17cb3bedbd5eff5cfbf27f5045ebe45cafee34f072e284d1878c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a20865b22d2ef89db2466475e8bd09849e448df4eba11f4f9fc0396743238af
MD5 1107416d8ed3505b24cd1b779ff5f8d1
BLAKE2b-256 e186713acf0253579e299988bbe0156e52ad5ee213451ea1551223a8d6805f0b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-win_amd64.whl.

File metadata

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

File hashes

Hashes for crc32c-2.7-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ea1c2f1f7a36d0bbfc73f1b03b19ff47e6ec1276c36c56b826fddda8dba48fd9
MD5 69406ec473498df46ffe364a9cd30e90
BLAKE2b-256 ba9c36101b6be59149447844d496c9667e9393c5388004096c0ee9d6c0a51c6a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for crc32c-2.7-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 71976e66f9c26c655a24021635b574b3d32a6be23f52b8723b65f84748c796eb
MD5 b31e7bb0349b78fd9f0b026a092e8cf4
BLAKE2b-256 6f2fef3e8bf60cef23c816d066235040fb7e019da0a3ac2ca26bb4ee3e931a34

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86f80402c0333ce63faa1d50545c9d45e36c6d4b7f07a9b0decaf1986c73a57f
MD5 2f4c7893c47dc78caef75c81d512c1ba
BLAKE2b-256 a6df5e27633ac2a20ad8f7a44a72e3935a9d94badd57a33db2bed88b35707eca

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4480c102d86c6eadaa1a73affeee8175c107e212ba000c51d5488ba13b0ffc4f
MD5 f07e5e7fbc2100d5648634a5cb9d679e
BLAKE2b-256 9e53d694cbf50b4109d0e00706223d1a538c9479db43c8ead8d48852c3dea4b3

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0fdcaedd18a90c8c55e584690725802821351d1a471b3ad7f6b0f3c6e0da1fc
MD5 69d32d04cc3141e0d7df388868e2f5c0
BLAKE2b-256 cf39e4b01f5c30720abee43e71ba82226d0a62a999da70506a08f38388fd0fb6

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46daf249bf56700f18481591ecc80295f47b2832eac0cb4ad3e09862e179e67e
MD5 71e9535fbdf7eb57dee79aff199b99bf
BLAKE2b-256 f16d6e6f4120a7ebc026bfdcce9710582d77cd742cb5363ae507f291998ff56e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-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.7-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e4950067f89076ad395663ce18b64b48cdae8ec66df1fe4d0e8c5e8e02c81ee
MD5 8269dcd514ab6fdc86287040ffcd91e3
BLAKE2b-256 ef61808cc94c9854fc8ad9e693751af6dd8c7b2b68c743c0078689d436c28c58

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 593dbaf2a1aec4cf816a08ac55723e2ffeb1e8d332b3adf37063b1e01932b1bd
MD5 5f5b9b176dca0dc74a10f3fd30e8a37c
BLAKE2b-256 a9b0a53a34be6e1ddf69a5c5b5a5a793d6a4aa07e72ef415325817795f2c7666

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec7b1993cc02d7e74cd55fc24ba5f7d34bd03a1ef53883fb3368ecafc8fa3060
MD5 a43581dc7a534cecec8a66747f01210d
BLAKE2b-256 ae1fdaf5a8315dc10d85dc423d0f320c445bbc6f1dcfe735336496e34d1335e4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6f3eb290e5fd82ce6b353a70975d68ac9bfe0d37b25666532013540eb2d8718f
MD5 868552d7962ce9a75b093bbc99ee8c9d
BLAKE2b-256 a9e7e5edab06ae89fc829b726a8daaf41247e2b2ad92f4d7c6ba1b996a88340a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d098b57d5adf2b4d597dfa675bf649c26140c9587908589073d21e5e8e9bc783
MD5 0aa7c6d003681be35aa686418378edbb
BLAKE2b-256 ecc5f25bdecf309d11ea5387604e684391272184010b1ba2b1c0d3b981404f74

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.9 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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9416fe1edba572b16ea2b5c8da21aaa359957e70025a1631bd44d364849dae79
MD5 ae4efada8757e5c1d7afe78d652e57e5
BLAKE2b-256 29101fe70e4d18e8920d1a97ee5f8e51669c2bb0227df86e3e10db86f786d588

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.4 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d1c7a1a16db0f5d316f402adec93e3ce2b2eb4b637e57fb5b3dd3521f3f2661e
MD5 a7020f8ee58bf9e5fb8c806b29366187
BLAKE2b-256 ea4181a3ee8f80d4672d539d110aecfa33ff7f25af2a9a3aad15f7a34c1a8a4f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2427b53de408ee36f554f57c4ecf3e70a02a5dbe7781ac9fa391ac2518d29b6d
MD5 8064a673a2f17f0d2baedad870db6b24
BLAKE2b-256 88031781bb356fa7bd47a3dfb789b668f7e836dc9a6b721cd698d4f996efbfc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 424fb37436c772d02a9088bf3a3f0a1920e715fe1b136b7cb2f837966023c08f
MD5 80658f7f9a9a6bc7735b34a5ac540383
BLAKE2b-256 97c1d6b93acc13c36a98cae4301b323037db9670eee553df2f3a1282a1bd10e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f0911cf91dadfb9cb80dc28346618c4656722d51817aa2265634acddb4b9a32
MD5 9c4acf796325bb1fc4f78961282d46e7
BLAKE2b-256 26a6f75dd58d53ee48c703adaf86ae025551e319e9825016e62c322159228f9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e58906ac2b0d0a4de5a1e8b450389b1c9858f17e3618f7e6cf0b50b287856b6
MD5 7e465c5850d6ce1484490772f56bf404
BLAKE2b-256 4d7b529135c37c6207af1dce873e49b7cf14ac7166d12032981362aa85733589

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5da488b5a3082f7e245c66c9f37971d0fd83a16dedf6af73ff0517d8bb40ee0a
MD5 b7550e3500035629e1f85732fb96043c
BLAKE2b-256 272cbee34a027cc96e494d36dfdd81750820bd0ca257c19ab1dbd0eda2b12441

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1501ac0853bed89001410223f2e97aeeed02c22c9a4f309a755b89ebcb7fc24e
MD5 7892b40b0cedf85838784eae09e81db9
BLAKE2b-256 abb426f28699de610a72cdaf3959740201722e2764aac04a05a047d563bd3ff7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21f9543e99cb7f320ca3feaed42800c77c41132c1f12488623243bbbb9db6e8e
MD5 f87840cc61bdd08ca384cb9c48b3f173
BLAKE2b-256 99d6c13b040fbe5916d2f63a6561e8df1601f75694785d66c07ce5abd4bd847d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1b1c96bc30cc7708c0a873db2d88d285a3ea53f341c3fc9a284a5d11fb92b301
MD5 9cb8d12c9261f5d2d61026bf7fa13bea
BLAKE2b-256 c12b09c4a940f8cd16b4addd73c6828c27a46d3df3305df73894049c45e20b20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a7b3a48acaf2a35ce4f4074ce37c93d760a0ab421c2a4e5f45ef2ba9dd783dcb
MD5 94ab3dcc65253abd8cbc3d45ad73c2fb
BLAKE2b-256 334361e87ac31d4cce129630c71b4c74da188b41c4cdd2904573fa0bfbcb683d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 35.9 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74abff01aeadf9722465faa17d9f332b0c6beb4d839e96734f683cfb9484b870
MD5 f0f891ce79409ff78b87fc453e6c176f
BLAKE2b-256 7f34c9f3d96fea1dca350bfa6dd01d854d23fccea44408a763b0521027a6b02b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.4 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7198a1e9d7863b50bd83093a8fcd76185771b7e77045f5a8fa29b4b2ca0b14a0
MD5 263351087c43d422f052e061b016a703
BLAKE2b-256 8d4d96d8e299af68b6056c12df0ab1ce074a6084017086b7cc780432bccde8c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 504415e7f5fb7fdb6a1df26f4d7c056da6dd7434c1b3aa8a916995ca77963c76
MD5 91f7153260285f92af6d83c9aeb94af6
BLAKE2b-256 c93eb06a145167f8e52a0db692ee32c4b52ccc38f2d1dc5c34f772951c3a36a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 293c9b62012b8a08556d41564d73a8f5960aa02e42cd6a984c8492a7fd19ada0
MD5 0d2ab65d4f754cf5c1bf79bbb29e68b1
BLAKE2b-256 f063f2cc8c2d77db7feceb7a4a2e95cd1c22cad1216bbe2c8d6c5f5a69733ac0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c0e3bfce1dd8c9f752a4dea5d1c04c4e62bbbc00c301d8d1f8a8cdd6a771aa5
MD5 7ba72db7882f85868ab5969b228c2979
BLAKE2b-256 775e3d09b3a778aafdce87414974015f0e664c180c68a21cb549b2f076102552

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b057fee3e0bf673335ede01db5b36656a7eac653322c7ce0b4a7b92173ec55b
MD5 80bcb451d4578e7c437b28fe9cf6c4f8
BLAKE2b-256 1f6081b69dcb0f21590ffb0adcc2a216a2822f00daeb18e5aea8e7a5a74770c3

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a26f16d042152fc079873e401fc44f1c0c9c6407908420793fa8eb3f151dd304
MD5 299031145d7d5a308a46d8f1612ad19a
BLAKE2b-256 61ba1c43e70dcdb904307af9b31a2e3c476f86cc3800b3b955732ffa9277491d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b513a7458349e46db195f88d999ccf7fc1e82dd52745393efbd2da2fda45e57
MD5 ddfd599a30a74275f10ddb7403cfe7ca
BLAKE2b-256 96aaa018cde9323378165e9ca79ff647af3c64822c266c56ab3bd1f1b7df1786

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21693aabf63953e83312d9fe2bf515e41adea9e2ba0c04909d252fee165724fb
MD5 1ba44c19543e9451dfd984d0e7c2c4d3
BLAKE2b-256 b8e0b79c32ec8a3e3419d3c7c0780921c0d00c7d9d55be7cd7cc1980d7e53a51

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14f593f715a704746c93bce7cd74f962bd48f78fd1682ca91a48cbb8010b891a
MD5 6244a4649325fb116a189e8526089bf2
BLAKE2b-256 c559fac1496d3fc9528da1345f47535ec757d5e5d2c954e69b1106ba4b8470f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7ec03a35e59eaa82f16ad5fe7b53a05f8dada029791d7d2c15f7126914821a77
MD5 14d223d942a5f18ae53ef5f75cadd038
BLAKE2b-256 ff9a73171c76a2eec132fb2d732206c84d52cae6924dcc4ec977e262ab4a1d2c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 35.8 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d4fe5654ecdf73c278b5cdd77a4c78239d6c60dd88ffbd6d94e6a2225502c224
MD5 d6f604813f308b60e5a8cd4b57a7c26e
BLAKE2b-256 2c80b3dadc7522326b7bdb7aa99b1025907609203546f17981904976a548ce67

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.4 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 47e92892ee28ad1e26606382e37d878751ff929e4f6d0536edb76b9462185852
MD5 2ababae118e91c5cf97ec2efa7485e10
BLAKE2b-256 169e488b69a2c27df86161c07824674a71ea4fcc3420a80035e3e1fd8eeab649

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e674639b35aae7e662df9439d665218c416ca62b1faf67f8d3f3ce25db6866b
MD5 9c7a3b8cb0080e8776eaf550d3a858b3
BLAKE2b-256 5b56581c128247cf8e796045e0135b4fd5cf359344aa23c8bbb96df2fc31d3ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cae5ca72a0fc8f708c6f01e9012242350e3e704b245092b884ec0670d14ba5f
MD5 947208a420612c57f9063d494758f733
BLAKE2b-256 2c75576c8dccad70dc247139b68a87c1ba4e43776fe9a6aa831a912b0de6eb15

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec6cd2995c2927ab93eb1be46594972984abc4596724f86be0eb9315180374ce
MD5 c3b5ba040cbf7cb2fd86ff369a76e4e1
BLAKE2b-256 5c693203af94b9717b34069a0e02b2d2e53860d759a3bf060b3558eb2dc786fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e503f13c164174e65cadb0c3864619f82e88c3ea77a933e5d6684c45ee10339b
MD5 f876ef532157f2461c856ae072981b93
BLAKE2b-256 de87765e3145d0939f9e09497a02f0aa56750c0552dbf8320607d30aca0170a4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 802562b4392c180b650b7b638a5333e69342444bbc7d7eac1edcccd56e9890b7
MD5 8ad84847e73fd1daeb51fe563fd5748a
BLAKE2b-256 31abc25dee136fa5158cb0d6769b5207648e1b3d069185a2844e1055cb8424e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74c908520fd7b65ef3932c3cfa417b113bf939a2f9ecfa7ea16c8f8ed52848fa
MD5 f4e8271a025219d38298c5b787fd2677
BLAKE2b-256 813968360a819ff2aa777973c15453ec208eb3212987d34c73694e1e15533129

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a9876321e8bd06e2aea76df5ae4b01a2d3f7a30d214089111a573f8eee9d67d
MD5 8a4a9542a92644f831e2bae49060a18f
BLAKE2b-256 34a66188565aea242715c5fd2946a27d2d97ae595866616852314d3ea784e0f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23efd2881f372a89a8fdbc544d19b89bb352ce7ea02fa5fc75150601b5050a5a
MD5 ff063e0f4398b2b82b87981a38699dfb
BLAKE2b-256 eaca5a5565f23d402cd96f6c2fa31fe38668b14cf49da734a9089ed1d599f944

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 35571bc1b588622f14e57c2e3dab3b0e9c47dca629894c452bbc1fd1dda3e05b
MD5 1218c4175f3976f452f4d55c2200ead5
BLAKE2b-256 ba8abbe7ebd6d57b42e8fd66200817d625eee41e964b00e0b1d89a4769ec9e61

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 35.9 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e26d72a9358d8b2a0ce03225b92cdf3c11072a550a958357d27538c3763544d
MD5 aeefa357575d5f6bc8c379947acb6e7d
BLAKE2b-256 dcfd66e938c856e084211f2ddf9a966bcae03a1f4306ea9c825c95abe0d13404

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 34.4 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 29f7839f81f6c2253ebbee8a3808e5c814342e9c161ef97d08d54d7e584e95a1
MD5 1add3c3640454b6a9fc7215da8b967d2
BLAKE2b-256 cc742c0a956e6748b30f693085ac9faa21f8fb34a4b2e90657f8facb2d49596f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 943be2b45261a007363b2cc525ac4a0047ba29a1e2eb7bf7a8d8dd7c407f620a
MD5 dc84d2974568cfce6f78c326dcb12c6c
BLAKE2b-256 ca1c6adc9bf281d7e97775cdf350c19beb240235958f18b2d2999730e9ff5898

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 441c6c8c3b083b5b6a76b9fba9d9e6483379f9d6ad5c5ef94a4d550fa3c8350f
MD5 e3fc7c71ae1fe92ad78f2b2b4771d395
BLAKE2b-256 82c88cd7d2c8b71970691db8b5fbad425ad367a5c367c0b4d6fd93e239150d7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89c6c98296289f8c6a9aae0f82b24ca38dfe471ebebc39f56afefce18342e958
MD5 8fb5fb94ff36bd072f34194044ec59f5
BLAKE2b-256 dbcb9ea209f2188386b5a612c5e1497373d9708b33fd577e572249631d75ba54

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bafcc44a08cc653c579733b3d9172bfb3f1d952da4960bbbf58d51c547abcea9
MD5 b1812a02aa25b90fc6c93af605e850dd
BLAKE2b-256 811f767eb5b2093728d74fd5b7cc2f639af661235c059364268ce015b0d8f079

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f675f83f8110baa1bdf17c6acb624810ee20445d0164711d81a2d5ebcb5ff66
MD5 a8b651c39824f1b2ea8c4543f04e69df
BLAKE2b-256 4e7bf6fd9b426464c14946b8214788d11df877a5bd2e87e7a924c1d34e296613

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a8905d33e4a734034035a394500e7e62f3acb1907a9335debd0981e450c6d8a
MD5 7097d38765bf377b73eb1a3cfb564fd7
BLAKE2b-256 53a968b3b28b5edf7b0e67e72f280192750995aaeaf1f300d9853fdad799b369

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b929ed3c94e6ff9164006cb54d7ab3b50083cd09da2b8dc6604a38d264377a04
MD5 fc4693a3a49f997019f9a4b52d75b04d
BLAKE2b-256 ee32cb550219d4e3920f39c6b343c2729fb863ec3eab9e8a78a44961fb6a9d57

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07781f92c8d71ccaddfbd5d79842b94b1bd4fc52762bf0c9e6543dd356b119c2
MD5 b5502e511101b4148e32d68e471a0ce7
BLAKE2b-256 4f1545004767554230295ddee978e978615a89323374ad9a500a0b82c375864f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6e5367d43f2efd8bd0a04f792318e7d68e66a6dfe99b1a37739733d3a332f6d2
MD5 962747a2fa3ce3d0291493f3630ef559
BLAKE2b-256 ce2cc1fe52f19a209896f223015771c167e963557c93739d97972e0a5979f7d5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 35.8 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5ef6cf0c6546f3893261efa9a15349bfdfea3f0a667d2aff95907f5652c1e12b
MD5 5a0baad5225b411ec1857db398d6559c
BLAKE2b-256 c251e5dc82f46eead8e6d3805f911e3c2f38ce1af20c337cc5045bd1d3d495a3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.4 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 84f69ab1751c7a649fd185c141f6e09d2feadf1dcdb6e144fa46033b2f593840
MD5 8c3d4b9b176fb4aef9af338b32694c77
BLAKE2b-256 8fe2802e66e681b613cfee1716e5af9331b5a4fa5da806e5531ffad7b74121c4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da34a05247911ca2627acc57d377f2f2e31bc15ae9fe06e98e7999a0f53a75ad
MD5 884f7a3a5711ba8361eafe520b348966
BLAKE2b-256 2e5068a9479a24101c3d65f1a149a3bbdcb81714714ea3ffe8316125127639da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 593b49efad1e593d4a2e092d826dd1847f5897f3527dec6f6240eeaa0373487a
MD5 65f133e6a5567d036ecd6bda46c1bbdf
BLAKE2b-256 0d81307a7c8feec539e3cb43de25286ba11fddc7f7620cdbe9c719c73eb40dae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e97e14942550098ed5252b8f6b8ca8bad5104f0444f62b1d1aa95b1a15dcbc70
MD5 ad5d8cc890b64d34291e44a72c1b4f11
BLAKE2b-256 407c74ce22fd4a5deb3d6067883b8371ff4e32e84568761eed6e3ec82f7e2421

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85fc27ad530164fd50b7d8dc3d636ab5e25592ffe1d6f3af11d5a07e2453d5d6
MD5 113b4b5e936dfba97fb257664905beb7
BLAKE2b-256 56191a6941cb15e25832a14c9f9e5e524c463b792611405b7e0a2b2727097ed7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba4e0dca177b10d794105fe25c7958c0acd08efe4c468d33f5268a6e3510d274
MD5 41534afbb72182dd2ca6fd1546eec501
BLAKE2b-256 b7d106731f0a6cacbc278aa84ab9388aab4435c0cc23511b02b7d607fbc425f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0f6b91e772f7ea966df9d92698097dc4020482b7c36c9c004f1c9c3fe2f7769
MD5 ce8c2d1cb1d63fa6b53bb036240eaaac
BLAKE2b-256 53e88f9588cff7819a97cbddc14017cf4ebc9651a8338255152100c4d44e8d6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d33bd7c40b09f852a1e4e6b85ef3720000aa21b9f23f715272bdd67a17de353
MD5 5edbe3a168784d0bccca644480cd394f
BLAKE2b-256 aac6f85b5d62dc48c0ab498dd996c94a188339ad52c25f33637ad041345ec103

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f118b7b167306890f297440ea85a9e57f5bfb93882bdbef538783a8343724e8
MD5 d0b0174eac1078b6266bf6c6638e5dbe
BLAKE2b-256 cd27f22449c36e665af2f5bd9dfc2fabf6d7b6d9829f138681b0a3c2f9db8e2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8bc18bf7da2b0e7044514c41330542db0f616fbde9e77a42c618ce16072e926d
MD5 ea5bfc8597525982b42da781a7bacebd
BLAKE2b-256 82e89b61f118b9c77ec42b10c24453f9639a743dec5e213c7cdefd290d6b5878

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 35.8 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.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2cf4a7a4d17b576548d2e275c2da55b8d7152dba3f4e266f539f8455dd608d02
MD5 236e001179a7333f2f05f09aca7d2111
BLAKE2b-256 fe0110b880d5952d7be11b560decfe34cd3fed0a44d1f7cdcddb4354668e7347

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 34.4 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.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4c949224352442593a5e58a973611e280c69d438ca9ab6d53872ab5f997b00f5
MD5 0411ba6ba7aef2af8805f23fc47e2516
BLAKE2b-256 4df21bc50e94637460dc57d5b937dd29d89ca8447aca473ec4233d98c65ff154

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b3b0164177a5ccd2d7a3ee2ad7a5957f52d54561fc4360b7812d76e92d4ab7b
MD5 fe6654f389cabe5f0c2855de725d0961
BLAKE2b-256 fbd5220457a09ef8f2d6e1d8706448dd05f8b64d17fdc0f00469ed9823e51828

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba28bbcf2af3fd5029ecff168a0caa41177d14f53929566e2c3b0fa4117106d3
MD5 183e6a1bb2748bb3a1b937d117e9a32b
BLAKE2b-256 eff7ef72077c677a9cf8a7adebfd56697d9f27505f326397b65d0e41507333f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3d5619d62ce544eee6e84a039780418193aad938b4960dce80046be31399fea
MD5 f52d69e31af116d0dd936bf9ec95137b
BLAKE2b-256 f251827177ecbf38620d1e34f0640019bbd093a5c3eb2a96bdd8102aa167f878

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7057622a1428eebc0afcd6f0407c64e096078e881422597c44981512652d3c7f
MD5 2294730bc67a7b987658b3c8f3105488
BLAKE2b-256 a60c79f557932b1fc74d6dcb1f33e43bd484bd530a90053eb27ed0f861922ea9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f55def90124c467a86a1badeb97a0dba8b1f0322925ad0046433147b7d29acaa
MD5 8288927bfb95e813c29afff4f813390f
BLAKE2b-256 f9c874e87c5e2cd392d7a7bd664dc8c6072759e6b923d1c523480e01c70f8425

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83b2c2435673c4ae5abf6b692e507b1fd2a7ec2736fcf8c23bfb01287e7f48ed
MD5 9d67c77c4dbe66540fd4d4e39dbc3a0f
BLAKE2b-256 c64b8f7b08017cf66561e7076f0c7d579312e21cd16fa3cd072459b22588ebe0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13b4c683c06d747b1ada47517a288cd434fd2da024f2d3249eefb98210a6acf3
MD5 e4db4a4fe1dcc1385da8fa785ef00584
BLAKE2b-256 a678236fa506cb4794d961035deab29202fbdce66a21b2e993bc99e5d096c05f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f860ff88f2bc9492a916fb69c92ac20bd35fdb30511624d14b775086996275b0
MD5 ca5da8d98a5ef137bde9ce31c9a6f015
BLAKE2b-256 b339cfe4ce3a0aed1be9355f71c62cb1c9ba0194bbbadc6229f160997378082b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ed174c7fc02d924b224a7cdc5336a2e2ef2f9f142d73ed0c74ab58988948e613
MD5 098225d1d8c660bc9a49ed696c223433
BLAKE2b-256 090cf47c14d13ab75d1735e311abbd1bdedcd1b3f4d394b1b5d7d0221a6c4766

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 35.8 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.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0e26252b0bd2a483c9465e801ed4c6899850703a2467a65d09f9049acf00ff12
MD5 358ac9b82db1bf401e318c5b9359533d
BLAKE2b-256 76d68cb9f1002d4a8b9db8efeabcb1e0c334fa829ace88753d6930ae23a4f467

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 34.4 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.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 20c06c4048383715eb5351b8f575bd1886835ecf6169a4a78fa0f81c7108d922
MD5 908938b3a33856e78f0cd05215ef6d9f
BLAKE2b-256 834e19be9a14fe251558ef29ede16499b8560631f70e157ee16eed94f538fd3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89ef877b84bd7d0125c5598d36e30a7096ea2007af0069f5c6812011ebf6e567
MD5 a2d2a9e5091cac0364047d970a454220
BLAKE2b-256 fc24c39a8b3b5ca12ff9f008a973ff1f6bef445c9b442fb8093bd8e5c9438eaa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85870be318617eea3cb39d43f8f358348fac360900a4ddf9141e94b63194a50d
MD5 2d0bb49b2be90453e21582b95f03526b
BLAKE2b-256 af168f77bef6cbe96515d02f24d8b10030fe392cf51ff1569f53aea9ddf094a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca452f21ed5b06d98676702def082ffba50faeb4e6befa20e728353ea36f7f2a
MD5 adcc4de770c9d56d4667659bfe3a1fcf
BLAKE2b-256 f0bc9b5cac160a79a80b940e4601e5934dc47e49247c57d89127e77af317b7f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b27c5bee4f0d04ef5603b88294a72943417d98a3dabef218dd2fc06a8d8b0c2
MD5 38f8f5d0870e2528d95e51f0032e67dc
BLAKE2b-256 3de7318c3f86cf858f905b32be954f8281fef11ca4b597df2f78790cd682cb93

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.7-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.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02d218d301dc62c5630983f1908070998846e9c778722336ea1bb05938a36037
MD5 dcd3a1b1e884311c5854a7b25920f617
BLAKE2b-256 ba0f5f7f352f35a9bb004ce04382c4e6a0205ef9d588b1b50fb4bdcaffdca308

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ffe13e8e9b8db6fb775b5a0aebbc20c963c1a5de7f42b0b20f9c49b51b5cede
MD5 0338843010ff9c10a100624cd568b843
BLAKE2b-256 732332ebf6eabe47b529b0d1a7dd15bd31062ff0600842eeee09e23f647992c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e81f248317dc2a66f73348b5786bfba640bf7d0bff92ad78d4602942ea704bf6
MD5 b8a1ddce41dfc44ee9c2258c15662e5d
BLAKE2b-256 566ba9a22a81b18b391353558ebf327b13fd938000fef1249f7346a1aeb5c8ea

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