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 strings and bytes.

All hashing is deterministic across processes — immune to PYTHONHASHSEED randomization.

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 structure
  • fnv64(data) — fast 64-bit FNV-1a hash for str/bytes/bytearray (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 for strings and bytes
fnv64(b"hello world")
fnv64("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 — 2x faster than dual-crc32, with zero expected collisions under 5 billion inputs. Accepts str (zero-copy UTF-8) and bytes.

Performance

Dict traversal compiled via mypyc to native C. fnv64 is a C extension using PyUnicode_AsUTF8AndSize for zero-copy string access.

Method ops/s Notes
fnv64 (C) 2,000K 64-bit, str/bytes
2x zlib.crc32 → str 950K 64-bit via concatenation
shape_hash (mypyc) 320K nested dict structure
dict_hash (mypyc) 250K 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.6.0.tar.gz (9.2 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.6.0-cp314-cp314-win_amd64.whl (32.3 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_hash_utils-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (112.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (111.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (112.1 kB view details)

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

fast_hash_utils-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (111.5 kB view details)

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

fast_hash_utils-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (57.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_hash_utils-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl (58.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

fast_hash_utils-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (111.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (111.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (112.5 kB view details)

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

fast_hash_utils-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (111.4 kB view details)

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

fast_hash_utils-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (57.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_hash_utils-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl (58.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

fast_hash_utils-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (112.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (113.7 kB view details)

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

fast_hash_utils-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (112.6 kB view details)

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

fast_hash_utils-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (57.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_hash_utils-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl (58.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

fast_hash_utils-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (110.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (110.9 kB view details)

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

fast_hash_utils-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (110.1 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_hash_utils-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl (57.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fast_hash_utils-0.6.0-cp310-cp310-win_amd64.whl (32.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_hash_utils-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (109.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (108.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (108.5 kB view details)

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

fast_hash_utils-0.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl (57.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fast_hash_utils-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fast_hash_utils-0.6.0-cp39-cp39-win_amd64.whl (32.5 kB view details)

Uploaded CPython 3.9Windows x86-64

fast_hash_utils-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl (108.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl (107.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (107.7 kB view details)

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

fast_hash_utils-0.6.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (107.2 kB view details)

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

fast_hash_utils-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (57.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fast_hash_utils-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl (58.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fast_hash_utils-0.6.0.tar.gz
  • Upload date:
  • Size: 9.2 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.6.0.tar.gz
Algorithm Hash digest
SHA256 2f60f110a8e9145408ac7beca47647b571b192af397d2f9f674ba6496ae462d4
MD5 b7af561fd8ecdbc182b578118cbaabc7
BLAKE2b-256 88b9a6ed2f7d28b9cab7149247c312484fa05f16e20a8a3bd26e203d64551365

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2be9e0c19f8d4ab4dce2486b1b435c92b9969ced6cf0b92bfe4ef13a77b3b51e
MD5 4861aa3c152c96fa358ff027941dbc0f
BLAKE2b-256 8e88312f837330938a020a6a55a36bab2d6fe0fa1a9fc3f91ffc0ed6f3cececa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b31d0d43c9a5b387dca570034cbc75a5bcaabbfb92fdeeaa40e72cbece8e88a
MD5 981a53444d433ea583edda0ff9bc6263
BLAKE2b-256 1c406391a63c3780d7ce2c9ba7cf10397f1c283308e2543015724bcd7b86853b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb3776f1fa9df65d054b2770080929a44779e0c3cf67ff1427f3d409c8877f5a
MD5 ccd057347cd91aa750af7bac29ac2d42
BLAKE2b-256 095be0906e28c0b282fe58df4a9985b9163a480c07f2d17b6b5adcddf14be432

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.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.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcf26643083425192d8ee6d1ec404c56fa1b173a890c3f91a86f37a2befcb713
MD5 9b8b6392ebbb16288ab4a8fe1eae011d
BLAKE2b-256 6601b03e96644c68c2cd366d1240d5d6143966b93b8914ef9b5503a50450897e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 813cf917ddeef59d3bf84116e2499aad1e62bcb6af3d843fd8a8534196bcd34a
MD5 fa22ff40b4484bef2c0ef4cb5eef7944
BLAKE2b-256 5ce411809e050b6f1e6f3f7e658ad93fe60679a1589be57595576a5b1d2d8bcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3693c3c159c3b5a08fa597d90afab3369be33367dd405c57c2e465c2761f5d2d
MD5 4d62c31e5afede2d9d3fab6852a459f1
BLAKE2b-256 41af513609e83d7176f10ccdc107a76c253fffc6531d93218bf09d6a65e69d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 472e7bf71b62cad7b688b4074ff72eff012bef36b773ce81657987529ab5faad
MD5 1760ab9d9a20e83d1f79f76399a83168
BLAKE2b-256 e1925b28fccecfa868eb08681b57e7ae2774040a4896dabddc98b290066bb759

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bf61e5e84e2a5ebd3b8d6afaa91cd80ad614c200434e928f5ecc83a85eb89d07
MD5 4918b55f70ac95f7e59a71ce9b2969fb
BLAKE2b-256 d84fe329c5f53874dc09edf5fa21315a73e2f308563c3bdc95bf133702fc3542

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5ea71e15a5030f9d0a31fe98c00b3b3d8bcf67e2b991aee0707f974183786ab
MD5 d33f037bf0c0206c33a9d465760b21a0
BLAKE2b-256 3129c5cfc19ae07d67b239e3b57cd72d351e6d0cd2f21cdf81090f247e82ef43

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 266264bacc5d8d47ab1b36709cad29da2158553797ac72832726638661210218
MD5 f364fce6b74444a9bac7f198d74b9561
BLAKE2b-256 be876ca12b8dd510094f061687cf4f2b36b510905e3fda1c420b1728f61c5ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b00e26adc1fd4bc95948f4099e7e3a7eaeb3bdeb4cd53517cdf8f8076dd3dcd3
MD5 55120c827419cb277656b72a75a68efa
BLAKE2b-256 dadc6f86dfc7497f6210848ba2b86aaa25969198e29b09dc69bada3a6125ad47

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a8943179d1d1b03bc85e0aaca84db507b062cacec30658118ce80eac0c3f6ea
MD5 0cbd39acedf5d5a04e77eabb5b8062b0
BLAKE2b-256 6c5b9db74287cafde84ab61b6d769634a30ac06734574a3037c825528f100df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1db65df6d8da3e399cf9e6dd669ff157dc297c3e93f81dee2592ce1658d0d09d
MD5 d71d1234ac69bf2b8e2a3620e5fbcfb0
BLAKE2b-256 64ee104d1b109472088a64dbb09de6a49e6afd1088370009a87ad8b35bc532a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b807e1f790ddc73f218cd078dfd0500274290a8cf669fe65f2ea38411bb1cac7
MD5 07cb5235f6afede6d613dd4f3fa6205c
BLAKE2b-256 d15deb8d4f1df8e6ca916fb8d927f405ee2e408c6c6086bb82288a2f9d3f1188

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79cac0c3f053f51d5e575645ee92d111de76007320d9df9aaaf17a9552daf414
MD5 4b788ea3013d5eac0c3cc860743722bf
BLAKE2b-256 f38680fa953ab3913b2c6b11d81257dd6d396294cdb154d3583e1a02baaa59c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02e9097a7dca41bb021ec7980be59a2fb6f1f6e06dcab2db3f4d445d2e78207b
MD5 69d660b3b64d74f7e6c77b49e9e8f77b
BLAKE2b-256 ba27c0d9a06d178b50fd3162b7be527fc8a3ba3a0ccae7ccab6391d1dc41a7dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22c0d4efad6bf200905bccea3d6310a81071ea254ce3230f210a6c2ce384aef4
MD5 79ae29652d4e0059edb40e9f7d7cdda1
BLAKE2b-256 5d7e6ae92d3c7436e26bddf62f6855a6486d62f63f9a0049246a40e7e6ce9929

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa71a30ab5567464480d87f853b9faf710ef31a2b9a56580aa41e94a0a136ccc
MD5 f9e9c2e27e481125f5975a652ed962e4
BLAKE2b-256 5ccfeea7379b9ed28b12011e91bacfa1b3046cfad83c819280a5f4214178b611

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05c6221aa52ce3d9cf257f93b3f23c07e5ec6f47381a2e04a3ff3400774a6a7e
MD5 cd857ef36524252f1a8fa48be87d57fe
BLAKE2b-256 c988adc36b63f7f7ef6a5edc3e3de898fc90803207c53159dbb48d19fb6e6aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec81c912a1abbc6daeff75c1e3988044d11283a2807cb0c56f6f1ab77403234b
MD5 843a03594b5b75c2834c0e7101e07070
BLAKE2b-256 6a3c2171e7e36e8da8e857e7aa9d669c8a725d49c6bbe7bac6de915ac46b870d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 807a8d6935546cab352ccfe635bee3ce0a93478dda543433507bf43d0367e23f
MD5 58fde3b8cb6c685b29c25a8c618a6279
BLAKE2b-256 1084f8e98ec688cb0938a35d42b21a595c96fc7a23c1f546d23b64975fea14bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1c3b422b72955d1683385c361bd3e10623f3956cc53282127af8aad245fe1168
MD5 a16bc7c0902ac1c6a5a54c4bdf1aee00
BLAKE2b-256 f17a26c062832b0736034cb497631a78bf715b91e82c5cb99232ed21ef09ab79

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3846153e3b22e0b9f955b25070b69048ecf5613f6980a6a6b23b5d969b5f6a5
MD5 dde3789de70900cd6a46988c88c4dbee
BLAKE2b-256 c6b265e481681a7e1ef7eb51b6bed0dbb702e9ad19ede9333bd2aa604faed60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0eb993a5a3585a8dbf2d21c9aaa4b6218349c2d951f6354075176c46f7eeecb
MD5 e617f9d459f943b1dc267cd934d54d3a
BLAKE2b-256 bd6defc3db1e6903122f203fdbec27d960e494d16c6d515bb9995ba761cfcabb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e88dc9c8ed1579d7c1745eea1f06435886ef9f2101f75d03caf61b94cc889e8c
MD5 c4095683571883e6b1769d2ddf9abd1b
BLAKE2b-256 9a7f2d8d23c70d4c52c8bb9a8e82037fcf504dcd89581baf2ca0610efdaf296f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ab69bc1f1c89daf33b099291a2acfb835c443055e4778a6f47b1f215b6a6206
MD5 b955752565cf79022e6bedcd4a25d327
BLAKE2b-256 4d8254d890ceea78f90d5167030e4013358eb41559bf626fa468031bfcf13f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96daab050fe553978e9e3230e12202c322590b572d353526c6de65329dab7785
MD5 9ed477621061a887b21ff74d07540a30
BLAKE2b-256 b5a67107004aaf1edbf2fcd3a8ec05355fdab974c19ff0ac4b688963a40dbd20

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fa150418be4288c30834a64d5ddb9363c05378929c932314dfb26b7e3f9dae2
MD5 06b017c5c58c6d72fc897b629f9d4cad
BLAKE2b-256 94e9ce7b4dd6b590f3f187ddba4404e06f8cce760bae4ea3689f9107e5cada6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa567333a1d222740e1f0c784735ffce7d0bfee9cb2c3af58b486820e7b7ab1a
MD5 8ef277386fae73592d87053d6afe6bc9
BLAKE2b-256 0e5d3385c64ac27e25c2485e12ef5af528979821a3f79e1ac2224a0ff5a74256

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b342ec490ce4d265b9340aec62d001112f515f60bbf6ac3153303f9a2b698f2
MD5 74188a4391aa8920af351b592531d6f3
BLAKE2b-256 ab19fd490ad4db7498ca677cb2f1d511e3a8a58d901c5a0e89a07ff9b7d85d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc4fce6d1c9d648226243f220ebf3b45c450c7e3c0f6eaef663f4280997699c5
MD5 42ca58fd48064b0817e5bbe90d166cfe
BLAKE2b-256 bc616e24a9ae633cbbde9296a20ff5f58c001481753d15441206f193fa597cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48f0ee1d161e4d5c04dfbfcc82b116d7fbf6119d6b1adb330a4f8c8d20e33f1a
MD5 c5426585ae56c87f05cdf7f215361f77
BLAKE2b-256 3c0f9c581e4459c18eb805cd5db90b294552f8e601eb6126446aaa744e26b379

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8a57be805c3c37997b9c050f60a0fd3df547a3e4dc73bfe05c5bbb35cab16bc
MD5 e5f0ff7047a886c3aeb21fef561ee339
BLAKE2b-256 5a88510aa24ceb2d1373fe8468471fe502cd8dd6b06ce36acbafccb528fd7844

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a9d13d05010ee368f34482dd6fffb8638d07134f07e75e70a95bf465202168e
MD5 983af6e30c1035c85d4e5bd132c2708d
BLAKE2b-256 d355579dec05b71bc9d45fbdc1f51ea0881e4f2d9ea7dc07444fcbbbe7b5e69c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8de90e8493faf645ffd2cdf0a655bd42376af084b6d32d63fdb33f1351484214
MD5 06e729659c43b9cb13ca746c5b05e9a0
BLAKE2b-256 8de6ca02eee72df306b919ff82492d4bda3604cea2fcda7a7c2b3ccf35900ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0a32dd7165ca4d5d46d1e134ddb67cc1752e253af7825333ec0d617be36c5bd
MD5 0f8af4f761686322bae299b2e096b549
BLAKE2b-256 efe1bacb3e64eb14589b98767f6362925c2ca58ab4bf4d0335285da1d8e730d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f71a838ef707ed284fb37ec5dca55c38c47053d69fc7f57dc2e40a1384a733c6
MD5 1c2c18ff50bf01cd0b984f20ed51428c
BLAKE2b-256 8ddea8d9309e444d879ffd630f4b4caeff89abe09a2c9027034be3173deb05c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c3846949906a25a1da3a0d43b9b12eae4bc706723b0aed7b07e19eb257f2bc5
MD5 d454c3f125502aaeccb67cc41b306fda
BLAKE2b-256 57469a75c0dc111b79940a823b0a95bbce53e5e007bc5a2ef3c477fc4949c6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.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.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5dc9331beb82808ef0916c0ed0d29a75eb9eb9a088e85c18481cdb4c8856ac81
MD5 077c48efd54c6bf814d643bdef45f44e
BLAKE2b-256 ba1b9f424aa81182a4bee2ebc103da81817582f637db713dfa565be65aa9c1d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be9867982104956632f1fec75814523f652c2bfbb892c30957d276143bf1ca34
MD5 6ad05cc34d2ce287cba6cc79a344ec8b
BLAKE2b-256 c0e6838a9fac9474d88b8c2e31f325ebaed064341d52bdf978aaa5a01550bb5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d0b4232d9751dfd361896a0066db541fab584a2c2e1c0c7f09f8325ccc20197
MD5 1504793e1d3a0c2116b13f8cc0b24ef1
BLAKE2b-256 7d882283889a4745d4bfbc36fd08d69fa8834b6259834ea492233129527a0aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11631a86795a33ec908165a15ab29ca731dab9f67d6149e8f7e2c681bf4f0778
MD5 7bb3c87918d90060299a0fb0967e74c7
BLAKE2b-256 ebab6e887bb3388f18797cb92cb6ed42bc57ed77ba753b56c7fe49c4a7d613ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.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