Skip to main content

Fast deterministic dict hashing via mypyc

Project description

hash-utils

Fast deterministic dict hashing via mypyc, plus a 64-bit FNV-1a hash for bytes.

Functions

  • dict_hash(d) — deterministic hash of a nested dict's full content (keys + values)
  • shape_hash(d) — structural hash that ignores string/int/float values, only hashing keys, value types, bools, and container lengths
  • fnv64(data) — fast 64-bit FNV-1a hash for bytes/bytearray/memoryview (C extension)

Install

pip install fast-hash-utils

Usage

from hash_utils import dict_hash, shape_hash, fnv64

d1 = {"name": "alice", "config": {"enabled": True, "tags": []}}
d2 = {"name": "bob",   "config": {"enabled": True, "tags": []}}

# Full content hash — different names produce different hashes
dict_hash(d1) != dict_hash(d2)

# Shape hash — same structure produces same hash
shape_hash(d1) == shape_hash(d2)

# Fast 64-bit hash of bytes
fnv64(b"hello world")

Why

shape_hash enables massive deduplication for jsonschema validation. If 13,000 dicts share the same structure but differ only in string values, they collapse to 1 unique shape — skip 12,999 redundant validations.

fnv64 provides a fast non-cryptographic 64-bit hash for bytes data — 2x faster than dual-crc32, ~2x faster than md5/sha256, with zero expected collisions under 5 billion inputs.

Performance

Dict hashing compiled via mypyc to native C. fnv64 is a C extension with zero Python object boxing in the inner loop.

Method ops/s Notes
fnv64 (C) 1,750K 64-bit, raw byte buffer
2x zlib.crc32 → str 950K 64-bit via concatenation
shape_hash (mypyc) 390K nested dict structure
dict_hash (mypyc) 340K nested dict full content
json.dumps + hash 115K stdlib baseline

Development

python -m venv .venv && source .venv/bin/activate
make install    # editable install with dev deps
make test       # run tests (pure Python or compiled)
make bench      # run benchmarks
make style      # ruff check --fix + format
make clean      # remove build artifacts

License

MIT

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

fast_hash_utils-0.5.0.tar.gz (9.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fast_hash_utils-0.5.0-cp314-cp314-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (112.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (111.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (112.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (111.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (57.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_hash_utils-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl (58.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fast_hash_utils-0.5.0-cp313-cp313-win_amd64.whl (32.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (111.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (111.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (112.4 kB view details)

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

fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (111.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (57.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_hash_utils-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl (58.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fast_hash_utils-0.5.0-cp312-cp312-win_amd64.whl (32.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (112.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (112.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (113.6 kB view details)

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

fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (112.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (57.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_hash_utils-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl (58.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fast_hash_utils-0.5.0-cp311-cp311-win_amd64.whl (32.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (111.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (110.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (110.7 kB view details)

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

fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (110.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (56.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_hash_utils-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl (57.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fast_hash_utils-0.5.0-cp310-cp310-win_amd64.whl (32.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (109.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (108.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (108.3 kB view details)

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

fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (107.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (57.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fast_hash_utils-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl (58.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fast_hash_utils-0.5.0-cp39-cp39-win_amd64.whl (32.4 kB view details)

Uploaded CPython 3.9Windows x86-64

fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (108.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (107.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (107.5 kB view details)

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

fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (107.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (57.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fast_hash_utils-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl (58.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file fast_hash_utils-0.5.0.tar.gz.

File metadata

  • Download URL: fast_hash_utils-0.5.0.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fast_hash_utils-0.5.0.tar.gz
Algorithm Hash digest
SHA256 7f1a6149b922075e38629ad4107af174df419f2147b688953527971307b2194a
MD5 26881cfc573e89a499c56a80959d83ea
BLAKE2b-256 08b79992ccf11420cd44d53f3aaf56f5eae452eecae01cbc2f260f41433dae6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0.tar.gz:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 97141de00485c6fe9e5b97a0823b533469475a0c2ab26a4ac4821e3ceb09edbc
MD5 673d4c5b0ed5ba0563bf89529988a041
BLAKE2b-256 e8a873050a8a179f3f0df7f64c09e3d070c17512b1d264b96663005a4f7c3ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 603643547889b1ed53aee95d48e8d2d6c6dcd4ac7e52d4357fda01656f8173bf
MD5 5e097622128be7659f3a9ddf7c6d0773
BLAKE2b-256 11d6d79f2841fe3e0549e3afe7c76abad0a5213b31b5cf8a126e65c1384dd561

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7ed320eb9a74141f8206d1be37c95adfa78a98c1bf0ee7418b321b9322a4204
MD5 ae0d8fe7abdb84b86450bec23c23ca41
BLAKE2b-256 defd7e59b0f4527ba2a84fee61c7a76513966e74f687778f53d87deb96251e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc712fccd900ef545e88d423adccc291a0bf9846d2d8b808b9aa0c9769ddc259
MD5 1bfd3673f31d451bcae2aba7cb43cfe4
BLAKE2b-256 4351b4e7fbbc86a92bdded9b49c9aa416bfe91b047149fc1e792e026babe7f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9173c6374ff3ea7d22620ae4e473cc3888dba84078ef9fe84dfad370ded9f889
MD5 38fbc6f5f3e5b7e69c881566b6d4719c
BLAKE2b-256 27e6ac1b6ad3be3ac5c74b0a682e8842cc33d23f594798a22f78910740d6b7a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06b6dd4b7a0b155709b54b84d40859a83e5252eb5ca056604215b637b18b2f2f
MD5 573137b38fce9ea9f2ccf8b925acf8cd
BLAKE2b-256 6fd41fda85c17d52ba58e224bf65ac9c716e4a4ec9a8c6d688c632c94e996db2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e99f2f6bad7ca9352702eea43c2ae71e2793798425984c80ec73330c1b0fcec5
MD5 562bc30c731140780009178e52a013cd
BLAKE2b-256 a201b415a71e4eefb466124acdfe9b00525e9ed4f5da2c30b9cec2c11d15a1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc85194956620848727301c3de9ee4f651e9f5ce6213b5ea2759568b8fb573c9
MD5 54ec6f27aa373c5598d3ca9454bb7cbe
BLAKE2b-256 818d55f50691a43624f0d45c5e53a29863b6b3e0aa4e09ecfc063f2d3f8da84c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8f5348865a91c2b471be090a46fc309fe09e0b1473d7d92b2af6a3cd70c9bdf
MD5 f4422d352367086b6377e6f5d44d85bd
BLAKE2b-256 69a1aa3c9101953a4ccc3b039f99df5ca42796fc2fbf3a1169e577af2a2ac459

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb6c4a027721d2c51d5bb40a4078664b1a710a07863c9f30a303e58b1ee82ae7
MD5 50d881cfb3ae2d80a52ba44dbe58afe2
BLAKE2b-256 9034b7dd46b699a521b2ed1ed1d290f35b04e3d43615837804d424e3050e39cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3b5960ecd4a8589ef87d862f97058bb612d0147e5ccc9a66fdeb410c4416465
MD5 14a474e35d79eb8bf8fd32289d589b7e
BLAKE2b-256 a480a31ba58bf2fe8c999eb8ec3fb2e8b962176b3d39643aa5d4b4d2c7742982

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3abb482289bdfe2edc4f01dc4c766b718db2661f4e294bffeb1c4e2894ef24bd
MD5 5270f5a33e3dffc0c7276c8a6265e682
BLAKE2b-256 4a61f5d49c36cd3835ef23897d3684dc726879fd821773aa49fbc659f843d1da

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9e7ec2e8bc6ebc7b44225cdd6fb246d33bc68004e0cab2e6f1dfd4703196b6b
MD5 16418462bcfddc129ccd159bf227f4ee
BLAKE2b-256 4f3bd4eb54bdf1c35b39df2fe6d59d4ed49147e5c2c013b89e202da4c887b657

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1cfa71a369721f82506a586f2aa2a567924f07392be6f561b1169164d7ceda20
MD5 f9b9baae43c8b068a26662395ac19b44
BLAKE2b-256 fc6f04b78353783f55447b6b311ab6dad14aa571840cd54883c22df7b82b24bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 268b5c4ef727676f9418a37f6251b9f19b48c43aaaf6bbad8454d65e3b2ac327
MD5 02e894d70585dabc5a721a6a9e8aed95
BLAKE2b-256 80b76d9080194133916a2d8cbf07f7935525e3a0df3ca6b6365c8054f99e7ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 654cdd14dda076351a4243f53953fa8a04562c3784b489a6bccbe07db0fef3af
MD5 52b48ad9b328f313d2da0bc443869cee
BLAKE2b-256 c67e7917042bb4e4507813567ee2a38ecdad534794a0f100f3b897a5ecfb6d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c48747b943b449cd4ce32f088fefac05a0f3b249f9698f7c424a4193ce79566f
MD5 86a9dedc53e5b1f371d3eacedacdff02
BLAKE2b-256 7bfe58bbefb531be052c5382a990228fa0f029645e657433d63ca9e7f315f8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f792f14a346e79576725e89e3a4551c6ab5997ef2f0653eba2b6970c80100e01
MD5 db68864610e4a54e0bae0ccb04d4b4fe
BLAKE2b-256 e58b03ead9949cb61e1ad6e65610e8156fec617fda49a385668f12efbdc94f81

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ad8a687fcde5b0b0e752d0cdd141c72ea7c212703a179927827607cff1f22f4
MD5 2a070bad0a476c5ff7fd25660628fdc5
BLAKE2b-256 e965677314e4b99d3ee3808751167ec7a0898f07fc3e0c63348974be5c048de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10b2d63cec76f3c642b52df5c3b4553d40774f07b6cd54c18a528f6b987fdc33
MD5 b3fed7a7d355ce97677686ce6552edaf
BLAKE2b-256 85994eefb7a06743a801c262ebc5c6ae0ddef74763938bf321e59b06476e352b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 edbc55dde48dc487ea89495c9f1c8b80437934b306e76b99583be52f02a56f7b
MD5 ee6c689f9c268fb3438de3f48793f1c0
BLAKE2b-256 3128895c921fe4295137dad54c68ed20d36caac4da6177d7086be9d68efa9c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a302d8e4bfeab8fd96a7ee166e807e11120259b6c8ae5717c3346c522a3710b6
MD5 7b1767f2503be92ca664916a2ffccbd6
BLAKE2b-256 f4334606d1cfec4cda400584e66a9fe96abad3c42f00ca9e04dff4586e8ea9e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73b20c6fc28853218b8393056ecc1f200ebaa5c8dde3fbe1d6b74d1bad9c63e8
MD5 d1963aab974d40be3fd93fc8c6c6ccc4
BLAKE2b-256 362f4465af61fc7b67b2aceebb5425ef4a5be051a0824f2168fa6b334c48c2ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a21a822ae57ca7a48946fe0683504aa5155beff7969679610e1c4e8f74e4825e
MD5 241800dd8ad80b9484f0d7d8fb0fdf65
BLAKE2b-256 9968c56fb33f7b9e13effb3bf0565c2a4ffe2deb8606aed823464c587dd20099

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8ceb0a42a97aaf141fb3cbd3a4fec2ee1bd0d3beea3c3ff05d8404bad02934d
MD5 8ffcaf18fa9dde14a6770c26902191d9
BLAKE2b-256 b2ec7a4c2a39dba9adba4cb9d947d9926dca479aa7c90b6e75bed04a3724d913

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ed99cba7a7882b501a9182a2319333671e66295d625f93430e1221987e61b68
MD5 150fce0516e0a0aba758655713131de3
BLAKE2b-256 3c5a7830a7941442bbff95fa4b9d2fc9191fb2410e0654b294e2f7ee652be603

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 499929202ab9353993c59cdd8436e6de9c9ba05517a6882396733288cb8684c9
MD5 bcd1d44ab86bee7524e7929bd54a1ad8
BLAKE2b-256 3ba9559b5fd985ed043dad73576e8d1db9b14bc0805d34e52eefef7c3c3b3a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed3f14548e3cf8aca7dfeb3757d6f2d15c018907b3d865b28be0cc1f1f3c3c95
MD5 056cdda72c9f79a0216d3133e6ed9e35
BLAKE2b-256 a6973d118099f5d777f9657527e7dfd29bfa129c48bf08e52edd937a55e7a0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1853849f4cfb94f2c1cb13be33d3ff61395f8531e47076346f9b91cd29b47452
MD5 a582bcc2fe416c9a5bd6835a05208725
BLAKE2b-256 c8194a2b047c371bb2bd026d8ff2b1db8fe16a98f90f9a6e0f59ec500563ff4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa00beaf95b361322bf23c7b5f4807036cc8b46156823bb31946dd655a30ee11
MD5 4202de3013cb5dd10574c68feb15af79
BLAKE2b-256 66df71d2aec0c475b017534ccb4243c7036d58addba90b9fba03cd8586396871

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4644fd60bd5ba73b8083201a28f8b914847efb540d96217e161612df5d1480a0
MD5 f8e0d7f5302312dcb26607c6914804af
BLAKE2b-256 1487d617e4453089b611328dbacd47fa21949910bb27ae27e5fe22fbc22cb4a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 add37bec66b540e066a228838c712ffcca5df206604a6c318ec889f24cc41989
MD5 0ec6d3ac123ca699bdb3e7a7a7c436bc
BLAKE2b-256 cb9db605eb9bb58ff62f2fc22ea7bdf5de8e6e9d6c3737da397c18bdb2ac2341

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5804f4dd0f2dea47017d6daeb35c9c3f55d32573a59897e99e771bec7b58d8ac
MD5 eb7162b4c8cc925aface8216adf4176c
BLAKE2b-256 dd7c8dac7ffd10e77d681491441e0b48280f074814c6875b1f2c33128f481118

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6113017a2a2cc45e3312780ca2b3ab69951b5433d31cec40bbc25d1e5f912dca
MD5 116362a2a4dc9739e65f1abbaac04fae
BLAKE2b-256 53e3524380d81aeba9a386ed872956b668ca62b046165162768b4a4f0d7ba884

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1053aaca9e594737e2d60d2f85b3fd68269ec05fbd8422bd47d307be36596952
MD5 0f0a62cc22aab71591203d67c7888ebd
BLAKE2b-256 3b48a4e55ae2df8b14207793c1d2b95e40788717304532cdfae7a4d26d669b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3809280c8d79abd5b6db1cc6db12ed4f7c9430ff341554cecd7957fb2cc6ff26
MD5 a516ea51a1e9fdad9ae31465b183bc74
BLAKE2b-256 9466561f2c530934ec75834afe82f6d028fd1ecf970fcd06eeaef332bf17707a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a98fefc7d74d93c487b7ae92e54dcb08dedbd42492fb115589ad997d06d4aa2a
MD5 6d970880b97cd8278dd0c2ca796aa1e5
BLAKE2b-256 5d935d0332d41bce0f2a629899b391ec245683da87eb5b59210a8ac45a3c90eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26b46573fdc5805bc8b9fe41921f8c5686c3696e7231ad8a000a14c74dc15a99
MD5 61ac4a884bd896e3c110fe16d789ff73
BLAKE2b-256 c70f0be2f0a6e9e9dc7b06371559ff9c95a13b032a25d9d091d316c2a8e0749c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3470bc7bfddc5ed81dd92cb15b3a7fdea36a423fb69bf16394e31d3f90a31f9
MD5 08998b821958727d0b002dd2fb68ef7f
BLAKE2b-256 97cd507f41fd917d71ed8870e431f9f8097fd19e4dabbb1f471fe3a4be623abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1416e4a038e34347b6bac1c969de9bbdbe9bd8b0a4747cae61a704c4718244cb
MD5 ce7af656d05fe286f9c4fc90492b8242
BLAKE2b-256 8c8bcde4d9336ac3009ef75c27cd9fb6400e69c9715bf4070825e74fcecb1d75

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a1fa07935ac30ca1fad712d5966ef963410608e0c74c040d0a5a8b3d957bf48
MD5 1debf327e5010edbda416f9e92b28428
BLAKE2b-256 97895c88b17498677840192f9165bafd12fe7268fc2c2c316adadc24f08b77b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_hash_utils-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94617ddc115d0937a5975bc904ea25ef90f25355d0ddae2ad13921c04c10b1d7
MD5 48b086e5338103c20983d5fcb5ecf640
BLAKE2b-256 f38caf6907a8b17b7a579183843364bdd1c3b83cd25e7010c2a0f84f1055ca0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page