Skip to main content

A python package implementing the crc32c algorithm in hardware and software

Project description

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

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

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

pip install crc32c

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

Usage

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

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

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

Additionally one can consult the following module-level values:

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

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

Implementation details

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

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

  • force: use software implementation regardless of hardware support.

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

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

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

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

License

This package is licensed under the LGPL-2.1 license.

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

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

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

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

Project details


Download files

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

Source Distribution

crc32c-2.3.tar.gz (38.5 kB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

crc32c-2.3-cp310-cp310-musllinux_1_1_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

crc32c-2.3-cp310-cp310-musllinux_1_1_i686.whl (46.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

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

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

crc32c-2.3-cp310-cp310-macosx_11_0_arm64.whl (27.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

crc32c-2.3-cp39-cp39-musllinux_1_1_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

crc32c-2.3-cp39-cp39-musllinux_1_1_i686.whl (46.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3.tar.gz
Algorithm Hash digest
SHA256 17ce6c596ad0d53df52dcd72defb66984aeabd98fbefea7ba848a6b6bdece36a
MD5 62d26798087b61fc012271c079ad13a9
BLAKE2b-256 c29e5fc40bb553db18cd8cbe77f73956decf10dba9e19a556d23d540f3fa3cac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cea0fe7053e36a4809e5bf95989552f52c98bbc94dca9062fb5b8c976daa0f32
MD5 67f15cae235e539ca43c93f3f27ac77b
BLAKE2b-256 68893f06d9baa8062777f1d4fbb21e18dda8dad771cb047471e19c23dd9c94ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c74d81a00972cbe65e27e99838b44ed5e04bced971e5bfa01c27a4bd17138442
MD5 7aa0fd00e9c951ccb17117fd18ec92ed
BLAKE2b-256 7287876bc1bd7997fe23bf20cdf0afc17e2f55d763006d86eea37d81c7156e8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b04c44ad7cde9c21ad426bdfa675ba7039db82a6961c99690f9d2ff2f034c892
MD5 da38bdda541afca81e513993ef54183f
BLAKE2b-256 5a916ab922338da5617309eaa3c42663e467a66fd723047deccc59e4891b1375

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a423c098ceffbd70544d1de3e00eeb45ec4b8463ab5d8005389fbbf3243314d1
MD5 f3fa03e9f5be32347916d7dfa0162738
BLAKE2b-256 3a4360f271b582a48f64f2b51758da45558fa497f77992e2ea00ea6e12f1dc4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ac8738e9cd28948e40fb3a3c89a44660e4ad266f7726964200224e101f5c8ef
MD5 8a6114a3c2ca2ca65b5da7f4e74dbe52
BLAKE2b-256 dddcb8d4d35aed859d0004ffc71d6fbcf19462c8c7f6ef4bc9fabd4e3a72f3dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 250af144edce7850a35c618b4dd1bf56436e031560228c17a7c78bf29239ceb0
MD5 7bc04aa84d9ce732cc9b3b91b2a27c17
BLAKE2b-256 1f729a5c5eaece3d69fde5ea25ba1b48213fd8df2d41e6f3ab3cbcc1fe176dba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7d568eb07473d9bc6fb413a4d3248265212c537b80d494ab884cc5316589110
MD5 2aa908d1d147df50bcfe147081308de7
BLAKE2b-256 c41e0357b1ab43cd213290cc4dc899be4bc74601131e3b149660295196a16e47

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8067ce072908626869b583700da6b4bfc9a538975d77232ae68a31d8af5f1ff6
MD5 736fe68aa2830a645386fa048335af46
BLAKE2b-256 7cb3cc0da71d6b94c469ce25b0ecb6d869ecebb8f0e86fb822edbb3dec2595ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5560faa3f673183eb1e2fc2c1361cc9ab86865a1d5774baf61fec9ca6c1a696
MD5 64fd6dbd2d48723665b12c744306d9e4
BLAKE2b-256 6d5be930530d53e43cbac6a1b679c49e200cd41eb5add01c13008156d44c6349

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dce1deda03c6dbe0f5ae6e3e0f8671caead64075fd19a61b1700d42a88af97c8
MD5 7c176edc45378c03c47641ed229a82dd
BLAKE2b-256 e68b2ee3eb63d0869ade462a3e53b27b52c9272be2ebdf58219a653ff0f9d784

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f347244590f294eaea2e92546100bd56db926305e0603a0d57a88e59f86b308
MD5 a1785501c546f94788a50ef142a231a2
BLAKE2b-256 319ccb64b929a8106d43116b86296ea970854a5b10dd8aaa352ed9547314eb21

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8363b553b33719b37fff46378a6e96106fd9232d2e043eebb6c6da46925c7663
MD5 a4189fe0e9f4850e9cbd753bb9b8d8db
BLAKE2b-256 fbf289010ab09c0bc9b6ec57f7dd8f6985b978ea6d53a63ea7bc8be1ed98cc18

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d82fa5bb0661a7a508e62730d4d9045f53d4ab6a9211b560a014f1d58a8337cb
MD5 3b0beb3656954591eb357dec11210338
BLAKE2b-256 036f126881a9176cde839f62d276010ba7fbb744ff0cacc542eb36b48adf3d6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ec3d9257d0624fb74335f67592b6a30de5e0cfb60322ed8682e35820decac8f
MD5 686a9018d09967a21eb2680255766326
BLAKE2b-256 68dac94b9ca20b23587ba0fa14fd9603516dea706ee149942a676db2ed8172cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a13d41a29d3feea5ba87def9d4dccc3362139345a24997de33fad00b656622b
MD5 be681f4d5f018dbadfb7f849ce760772
BLAKE2b-256 c6e36d0b48049001d96955100afd7dca216ab140d7a653a5ad89b20b25b2c3da

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.13

File hashes

Hashes for crc32c-2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca03d8d5b35a26e0d3eb8c7121de3e37a59042735029eabcf1c4b15343f82cdd
MD5 61de307681ba29ceaca0d5c464a2514b
BLAKE2b-256 68fdb4a29bb8b56807d69db638c3d3cc7de9a987b8f6b8283b12878010ac8bee

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e14f4d57e004fa5a6100ea3aeb9574bee6f95965a96a382154fa40aee1fdeb5e
MD5 06b3c4b01f1b7299f578b90db6c88005
BLAKE2b-256 7adbf81a7e10a51ad61cccfdf40d0ba71c335c9422eb384811f687568d2a8ef3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 865bf66d86809971d4856e38085a4a15a7251b8e780f22ad52e12b50784dac25
MD5 3424dbfe7e7570f806fd2279af5d528f
BLAKE2b-256 6a41ccd4c34c7d40c64b179902a2446060772ec3fde6847a2f8ed6160d801198

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8948a9262d36e2aad3be74aac3ce7a1b090ab2361f7619b3f23418fa536f1b25
MD5 ff7cb21742f00d4603ee7bcedb50e108
BLAKE2b-256 310796e590e8ee04a3cf747aa91c9bdcf511731d1b63c4fb561ac60116350556

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8ab9df0bd9bf10f3d5bd346321d48da8a28392b1f48f7a6fa3234acebe6ee448
MD5 cd51e04c449df05e987519649b6f7a9c
BLAKE2b-256 5a49fe8597bdba2640804d2ebb7508541ee21dd076221db0cb5ba7609e9102d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b7c71a3ae1511c42b7919e6116560c08ba89479ea249f281c5bfba2b619411d
MD5 bc747dee3e5d77c175e20b631481293e
BLAKE2b-256 747555de82d4d28bdd1482feef57f387277f1c274a1ce1b38f7595caf673bd14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9a070dbe10dac29c2f591a59300c37448e3c7a747b6ea18d4826b7c94a956bd
MD5 798e6478fc616b5c75e18805fbd2befb
BLAKE2b-256 9da242bdce9be58baaf387abf41f40a3fe63a017109b92cea1aed98ff2018d49

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f524fd202472d041b9bddb4a51b5fff28767a9c69953dbcdeecc67ef65707c07
MD5 e00a725de46c0522a7252eb6074b3d5c
BLAKE2b-256 13653ee5960ccd3e2c1750b2903f680ecf4907ecff5699883f7bbba921f83fb9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 374d288cc1735932276bc65670db329dd9fe2af4ec323599dc40e1212b13985e
MD5 f57f42368bb03810f2b3bd51c8bfb56b
BLAKE2b-256 e80f4fe002ed96cb04cbc766e9d7c0beac9e02cfa005d25499b4ab5849ab5643

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f641a9bd24a309637cca6c119b8aabdfe6d41bab5ea630124ee9be7891e36ba1
MD5 62926e4bfca9729ce34adc550d7d7e5b
BLAKE2b-256 e06a6b52d563d5cf00cf00f91ec9eba14111050b92001d9fcc90f659c5498419

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 82942ed343e5c884b5c0c9aa6bb5bb47de0247df95ce5d154cc48744d5c2ffd4
MD5 f9e6afb281f393624d25fa1d2f779d00
BLAKE2b-256 5a2c8f6f9ff3ecb1e598e1c72a7fd11db3cf21b5748047362b4bb4d2c578a2cb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.13

File hashes

Hashes for crc32c-2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a2427a9196c2b8b1c27d7e31cc5c9fff13af0b1411ff1565459f65554990f055
MD5 8f4d0a4f1546febe79589f79e4d477f0
BLAKE2b-256 e9722a2c216ff21033fd3aa6ed1668ea22459ba51b8911a5e205298df0debd0a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 90c46644225dc7f71b4dd499ed71ada59d061fd60aa55233270d088ee8cfcd13
MD5 3736b4d1aeb8ccb9d35cc09c3eb566c9
BLAKE2b-256 d9dd531a682ad0578492ae9e35352b10584380d99e1244f5f13499a4605ef8e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d27116037f97a02f1a123ca82008ee993c28afe8590e047a6cd86aca33653cca
MD5 0c260c6f78b95ad07604504ef9cc19cc
BLAKE2b-256 e733fa8fbc16ac0faa93ad5d16bad2a6aab4d1195b5db7ed5c666c625ddebc7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c59c6ea67ab927b2ab958c7b01a6b17c9cad882e7a1da51b9c35fbc9874ff46a
MD5 ab6201551d118deecf29f1f179cb52c3
BLAKE2b-256 5f14b1bd2f35d9da9aef3688be8df814188ae0ba4ba80bf51f9a113ab8d8a044

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 866d1cbe646bdef67fc225371da265f081809bcf238bf562d6874c97e7fcb0d6
MD5 d9bb2aec8f721c8a69fe14f95ecca9cc
BLAKE2b-256 64542fc003976877d82c75dc8dd1aa1283335efc496d5a31f93308b1409ac450

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 554bc2a9ccfa7c02bb8a5346fd546b65ed265965e7fea768c7f2681f2b68d6a0
MD5 eb85d25bee3c6d8b3a7f4d284cb3da80
BLAKE2b-256 d222a6939fdf3cb65e55e35a3a531cb4c371ce3231712d349bf42d7f681cc79a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 327e44184826cd1c72bcd4a9b2c4badfd29501333e158460c7d3ad8b7f066588
MD5 7525a53a059c08653c501bc47ae7aa48
BLAKE2b-256 df9e3816f7cb6049d9983b31dc047e1d276d3c2e5dc78b7b34b717b7904609de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6872d8728f30f2a13f95762801428cf92a7ee6f170c872be81a17b1549b69131
MD5 38c16ad3853db57d32b43c7650e3e316
BLAKE2b-256 f866eba0344cbbf033d02aafb20cd2faddec31f0e72cd75a2cd46b72b017ebd7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 896bda76db13f229c1126d5e384673f78e06685e70d76fff4c5a3f65b4068b4d
MD5 11f2ebb1278ee02d7d7da4a8a75c381c
BLAKE2b-256 46b598ed31252134101d75c4a46f09412ce55fb42cf46f41da002d336caeba0a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e076ae46ac0e4e28eb43932c5c0b8e1b8751bb7d1b0d239f18230aed7cca3bf
MD5 5cf19b3233b4fe3970ba8c0ff296e757
BLAKE2b-256 cc15274a5a979c9172f427018242f6618b9e725e59482dc455e15142f50b1e42

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ad57917650af59c989b62184fc4604d6c5066fc030ced4c6e07a596000f1ab86
MD5 b17ed6dcd756ace2ddf9b091ac1ffe72
BLAKE2b-256 38a0bb9711fb1002130f0bac8f0cd831ccc5630a650bb44bf097a25b2059a19d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: crc32c-2.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.13

File hashes

Hashes for crc32c-2.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 32c573dd861933e2390932cc10e1b78d71ee7827ee4dfcec96e23cf007a1a6d3
MD5 09cc3c3c76e059d28fb404d3aa779870
BLAKE2b-256 625bed238b08a803969a9173a12b812171e6dbc3f2a1cefa2c516d152b2f130e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ad83e4c78379cc3e22b760e9874bc57f91a9cfb85107ccba1c6442bc1a2e2a1c
MD5 122edd4c03517b90cf3d657a10a65c1b
BLAKE2b-256 10a9219ba3e6b41179725c50843750d43e9a5cddc0366ea9d9c4fe5c5fbbe732

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6e16d57b8103fee9fdecb38e908d9ceb70d2196bb932dba64bf7b570f44c0b9
MD5 d5d676cbf0f3542e16908e47ed7a5127
BLAKE2b-256 e699101bf753208b9122cad2df7715b9f381d9a1b7d51127e5cb4018a8a53d76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 61479a60d5a2b3160a4ae17b37df119963a741fd61ca71d4792670cdf7d7ea41
MD5 94579d7c1ca2feaf264e8bacb3512902
BLAKE2b-256 b7f1687326c95f0da85c5bef3effc7dccbd1823342c432a9c141f464b2574071

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 df19ab6ab3884a237388c7720b1fe617dd4893305f62383d0f96fc7980dfdf7c
MD5 bd542dfbd7f734cc41bf7ed54cfbb408
BLAKE2b-256 7b93c105d3e0ab3813bad31205cc19fe8bd4a1f36ad489ca1f04b8052b97d497

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd9bc7e5599f5970fff1f9aa551639336a76d1bb1fb00f0b87704049df8ba035
MD5 2957fa5df9aa0bc7199a95a39d35150c
BLAKE2b-256 c95b859c103912d3d4e59dc743d728a65ccc7b33e678a92d855a42dbb72cd7fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 255e35719c252ce7609cb3f1c5a045783a6e0d6d7b035d507ddd82d5194c236a
MD5 7f98a3518aca106aa51a3bfdb39c961e
BLAKE2b-256 5b95dd7d1b869c0a032f5d1c1c27bdf23348436091e52df80d09f3727a518fd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 682974e2cfb199ebc4adc5eb4d493dbcf83812a031a8ecccae5a7b5bcade5d9f
MD5 1a1c6dc21b531d3581bdcb6fcadf2bc8
BLAKE2b-256 aec1bb36329cae8d694bad0c0fc0987e4646205858abca6c19a29c0b928752f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ce72a40c17636af97e37bad2f2c11a2e740f57d4051ef586c04d1aa83db8b38
MD5 915a9f851cf1a87de90ccef6260dd7ed
BLAKE2b-256 af13473ddcc543b0ed64b2756589ed5aec8eb3325f219ed284db1064763c7e3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fac1b4248625acd65985378f6b34a00b73cfc9db5b8ccc73101744de2e3dfa66
MD5 43f0369d8ad0e684862d2c0b7aa414db
BLAKE2b-256 0bb63820ca16332b2ad5f834f20084b4c973521197e0104808c1fe27bb2d508a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4323f56908b7e5cea039122aad039fcf750974b09e4f993244d4dddb24cab561
MD5 5470736d6dcbccacde73b3d06a1bd493
BLAKE2b-256 93ab40458dae7596fd36a3dee406b13a63b1db64359306adf9794f4e140a60c6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4d223e844ee61ac492f0197b62ccc2a9c23db15e4d2938e698fec6eded0daf15
MD5 b18a8c9494543b0592b5dfb7ee413609
BLAKE2b-256 6ac5e6e2efa8f2eab2cb2ae4dd44711871b987818296bd861af516274ae36d57

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3f372a53e9cf2464421b82b41fb66d98f654284c8fc4363f51bb0f5485fdc2b4
MD5 503d695bf53d0d0eddeb074c85d0c56b
BLAKE2b-256 437268862a2441f3d79d8de2e7c36280219b9d9706118e9043d7c621c3d8d007

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fddf16ed92dcb8ee34a12bd0757d5719d3c750a9dc813d82972477885b114339
MD5 765a5d62dfb45877333f7050b3be633d
BLAKE2b-256 a8a83e112f5a9981db324507894f806817d6bd47bf1c43cea5ee26b03c99aecb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 47088e524a9ec2887ae0ec519d75df40f005debf9d52f10e688f27e7cc0d339c
MD5 3acee1ed38b9dd9fc7f4ebfaa7c489fa
BLAKE2b-256 94d0e90c9e307aaaa802aef7d34f8446ff8ade531538e20848c0dc9246bcdd16

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0369e637d13db5c06e45a34b069ff2ba292ac881e8a44a8658ccf3edaa9c392f
MD5 ddb9781cc9695880f59843af48f298b6
BLAKE2b-256 7d9835afdbb35f56b140046d6be1936fb7460fd41de5bd067e2288a598aaaa90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a51ac079c44297bbf624a598cffe6f85bd0a5faf780fd75d2d5e531d42d427ef
MD5 c998330b19b211a299ce50ad952bca86
BLAKE2b-256 e6910cbe92dc475392a264473b8b7f090146dee9cec7dc2b43bee68cb9e22247

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b917b73d810bcdbcd1461978ba55038dcf2bbc3b56704b0082d2f9b0d5edc7ad
MD5 152aefa16eafd6da06156413fda29913
BLAKE2b-256 b160bfbf8dfa0a9bff1e574847aed6191a5e4de4f0083b5dfcb8e4c1b699a934

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7eb1fea3d9ec71f353a6c38648d074e722fff1f43c1998ae6088dbee324a1ca6
MD5 1197ae43865c45cda8f739386c04ab2a
BLAKE2b-256 f8db81c710467dd67ff0c118e5f7d7a3a23e9dc77376e7c845d94031aacb7762

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c04a27ba3cbc7a9e34c77f402bd3a83442a2c7acd3897d2539b1a3321ed28a6a
MD5 dcb05e8dd4b2dc5c83d54e4ee35aad84
BLAKE2b-256 c88b62e4858cfe50d384e90bc09508570610420b634143177b180cd7162df665

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f1679f7f700f2aec3dbee4e357a2fdde53e2ec151dde4e0b52a9205fac273a90
MD5 a91463f5207cae27dc21357a6ee2fea2
BLAKE2b-256 8f439eeee37fdaad19c932db7dbcd6d9629972e2c13e18383b30ca66c60c424e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for crc32c-2.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ef1165f7f36edaae03fcf03f1ca3bdbf196a5255d656bfb17959ba0405a2c8ee
MD5 3918c890ddcf2c8775dbe47934ecd4dc
BLAKE2b-256 32e4a4c0d865bbbec9f9c92b9f5370f72baecf0612ca938033a5736b60f6667f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5aa6383c0a13a542c3f1eb82a02e29c1141e0a2bc63faedd0062d1c41649989f
MD5 c07cbc606c3485c0c7a37e3bd3f1cac0
BLAKE2b-256 99786446637ff5d0349208c0576c2df886c62f8ed26198f1b653fb86b912758f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5ddf91756d6275f497d0895b8875d1f1fdac6be08a5900f4123ede2c91cd1422
MD5 cea3b2cab9ac6f62a526a5f0f4879edd
BLAKE2b-256 6a4787ca8b2078af9afb3f81f7f2ec78e9f8ee5545e4c77a3e813c20011960b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d334d51d395f78fb649e8442341da782e63d3f9552fcfbc040995d24d4b794d
MD5 5dede983373feff8a13105d760ac0c88
BLAKE2b-256 77422963b388410ebd0e048c0ae917248ab83976aa9cbb9d7a72cae810de6a43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ab21f02c13dc5a0411838d0709cb4d24bcb865ea28b683b7403826c08d14e27
MD5 34bebf8aa0d6a1e4da9e2f66bd297b4f
BLAKE2b-256 e4b2c1b058e72119bd2a7c3e4ade12a1037e861ca129399ea740813bf4959dbc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed14214fcc1416e0dc63be4c88aad7f58e0f0cb2c22d578b861e8fc19d1b2d2f
MD5 e2b2d23f987949423caa6ec7ecf94de8
BLAKE2b-256 1a24df23d67295a9ffbcde70687a0b4e31d1f6ddba8fa6d92be9a95f64e1d215

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c1f3e28b8aec8a0f7727337fafa31f0ace38e59e054c51fecb923535c6dc6e6
MD5 a6dc47804efd9eb4163a14f256127143
BLAKE2b-256 ab8027325c28c61adc9c853f844f6b9e165a1aa5e15dfec0e409764cc859ba24

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for crc32c-2.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5612be1606eec55511ade38deec40c9f1c7647ec0407a4031e0a2e6e6a635f27
MD5 cd89521ab5ee984281995149c0cb10fb
BLAKE2b-256 cd271c81a0884c4e3313ddac63e10325546f4c3002e956677a9908cec9d62e97

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