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 of a nested dict. Hashes keys, value types, and bools. Ignores string/int/float values and list lengths. Two dicts that would produce the same jsonschema validation result will have the same shape hash.
  • 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.1.tar.gz (9.4 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.1-cp314-cp314-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_hash_utils-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl (113.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl (112.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (113.0 kB view details)

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

fast_hash_utils-0.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (112.3 kB view details)

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

fast_hash_utils-0.6.1-cp314-cp314-macosx_11_0_arm64.whl (58.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_hash_utils-0.6.1-cp314-cp314-macosx_10_15_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fast_hash_utils-0.6.1-cp313-cp313-win_amd64.whl (33.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_hash_utils-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl (112.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl (112.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (113.4 kB view details)

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

fast_hash_utils-0.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (112.3 kB view details)

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

fast_hash_utils-0.6.1-cp313-cp313-macosx_11_0_arm64.whl (57.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_hash_utils-0.6.1-cp313-cp313-macosx_10_13_x86_64.whl (58.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fast_hash_utils-0.6.1-cp312-cp312-win_amd64.whl (33.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_hash_utils-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl (113.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (113.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (114.5 kB view details)

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

fast_hash_utils-0.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (113.5 kB view details)

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

fast_hash_utils-0.6.1-cp312-cp312-macosx_11_0_arm64.whl (57.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_hash_utils-0.6.1-cp312-cp312-macosx_10_13_x86_64.whl (58.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fast_hash_utils-0.6.1-cp311-cp311-win_amd64.whl (33.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_hash_utils-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl (112.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl (111.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (111.8 kB view details)

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

fast_hash_utils-0.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (110.9 kB view details)

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

fast_hash_utils-0.6.1-cp311-cp311-macosx_11_0_arm64.whl (57.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_hash_utils-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl (58.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fast_hash_utils-0.6.1-cp310-cp310-win_amd64.whl (32.9 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_hash_utils-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl (110.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl (109.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (109.3 kB view details)

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

fast_hash_utils-0.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (108.7 kB view details)

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

fast_hash_utils-0.6.1-cp310-cp310-macosx_11_0_arm64.whl (57.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fast_hash_utils-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl (58.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fast_hash_utils-0.6.1-cp39-cp39-win_amd64.whl (32.9 kB view details)

Uploaded CPython 3.9Windows x86-64

fast_hash_utils-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fast_hash_utils-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl (108.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fast_hash_utils-0.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (108.5 kB view details)

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

fast_hash_utils-0.6.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (107.9 kB view details)

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

fast_hash_utils-0.6.1-cp39-cp39-macosx_11_0_arm64.whl (58.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fast_hash_utils-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fast_hash_utils-0.6.1.tar.gz
  • Upload date:
  • Size: 9.4 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.1.tar.gz
Algorithm Hash digest
SHA256 5c6aa3f647989fd24cf5e9e6733e7642b4e4aa20d8615d00f821d10733cf41dc
MD5 1e042aa6478b8f995b48d8a23c3cccec
BLAKE2b-256 8f447c34708294f95db340540e72c4e4ebf009c16de4e4fdd6e2c8f5075cb249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1c54dd26b11a5bb077b46db633dc0175e2ca04f4b44ae0c57f62ff28f5801202
MD5 134e7da6502b6561381319f1a5cf086a
BLAKE2b-256 96ff17e598b2edc514b0246a2904d6443736d1466496f6b1318a6a6059a92d6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ea8614d6239aae099f4fe78c6910fef1c4985184f4f7a3597038f076d5467bb
MD5 c604409b3aacfba02403979aa3ac50b3
BLAKE2b-256 a3f44cd44aa30f9f1361ec609e0258afdea93ffe51aaf6181de50180639bafa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24402c9fc3f5e3b9790c0bda5db18b4d4cb811efc1690264775d6cf41c2493e6
MD5 2cdb524f458c7a0e4277206c416b7c06
BLAKE2b-256 27909c08f3aec045c4103b698b6fe0dd0be95616c58d8cf8dc1eb6832fdc2b1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e22ca4c4ef80a3fae7d2da74a31b7bfe2330e35e77ef000ddd88a0ecba81695
MD5 bf0cf143e22f77f993dcc64a3022626f
BLAKE2b-256 6c73762dfdca490d1e6762fb873036827f38a4c104951852c9976a3b7b6275a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed6d7c9b295508c200682639b905e751929da2adeed2ef30129edf95d25bd6e6
MD5 ca9a0e1452338db87f19f92aec382187
BLAKE2b-256 0bf8396bc46378ddb49dfbf2c82400cda2430720c23580771a1eaaad024309bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2496e2e6656bbbadd692b3ddd1ed51d2ff06389087064eb9dc84a62af4491a4e
MD5 ec54fe9a9be90a237215f63726d031a4
BLAKE2b-256 b323762a73dc69da79a594bc03f437914c4a0f93a7e3d682f35bd752d3d8347e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 070056ea7313bf6d7f43dc57bcc028fa33451330edcb0a070013f5815d40f555
MD5 148cc89998784f4e315debc20b7570a6
BLAKE2b-256 e530beb85711aa97edf8164068b9eb6796907a6f62f8a43b8babafe38ec60e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b97861967f0ab368f4dd5fb5117692145ebc03eeee20e2c3d777600a4bf4cc45
MD5 4046e7df19e3f4f61c09992a67d99b46
BLAKE2b-256 92c3c91329ff587f9ef77cbfc9cb415437195ab953020e671c16959646969639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c87726b51de8607db10f9d69d32d4bdccdb43922908c4dbc92c32478f199fed
MD5 aa79993771e570f9a9e7331180a5b05f
BLAKE2b-256 575c479041f6feb81e46ec2d1499b74a3f0e65e0f1559b0a31d82ed5533e33d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51b249f1e0051706b44cb4351760e895e851c4bf451a2028958291e3d6c0bc3d
MD5 e69ed4fd30c93db77d29149f825d0e30
BLAKE2b-256 75ffbee35dbc1703cd6837d35f7b41b5beeaffb6f3ba0f9b84e289d59050f86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0d91a403652c3cc6680e97596734b4096b6ebfba65cc9b16d267973c48ddb8f
MD5 03db0716850a940bf71693e193e2778a
BLAKE2b-256 45fbd410f19c70f90dfc43e04bddf2f4f7843d48cdefe22e5abb4fc1c276c1ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12eeda3d2b1e2668b8e4c4f968e4bc9045cf54b15c001f124f674caea8aacc4c
MD5 256a1ffa13029aa43adea17e45165e31
BLAKE2b-256 03e44bff144b7a8416f64abcc9c1663c863ef75d066d7a3c5f804e1a5bf9d9f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fafdf811b48d47441d94f9f6759f5701b01d2f5145d939c6626d82ccc42d7ac3
MD5 e6f342532a7e7c7af85229c0279164c2
BLAKE2b-256 fad71e40abb8fd63d8d7f44631d209e83d39bf766d0f0e4a4e0e1bb2950ee6fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f680ee63464b05d41acfc28ff9ea45a44e28b063043f8835a125f2e31100c88a
MD5 d6407cbe57fcaeca0a9b8434db9cf210
BLAKE2b-256 d11ebf7bdcf88f7caa74f5c8b0d0ea61c5df8e9a2ea39586831f8fa587f12055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a41b212cd30b00844a952295c10af0af1b07c9d29052e254c4c20dc96e5251f8
MD5 899a84ae2b83d23e98e0850ebc95d50d
BLAKE2b-256 b660a63d250cb658dc01f371123d9c12923a45a19ea9893ecc2ee04d56833dbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d36103802dfc1bac3c22cc37bad9b1ebad11da6d9eb90abc183f92131094255b
MD5 5fd711351440a9171dcac4fe56203f26
BLAKE2b-256 94125cf0b9f8d8703cede5bba76683153ef7dfe1ad4d301f3d327e330c73074f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 662e74f5b0d66a9a2287105fec73d4b4e1ebd16af7873f2fedf5baed3555d12f
MD5 fdda107f5806cfba0c58c5e1d4d1e8d1
BLAKE2b-256 11d0dd9f2d4d825bb9ce8439e5a6b9573ef81f30c955df256f42291921f09d10

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57f533a139171dbca1acd3c704f695f253781375eda7f37205072e82fb93f61e
MD5 d2cb8e9724514fa1cacede906f359a46
BLAKE2b-256 964ad6abfa0a703f39e56d41cc27dbdaa608101293b4e458fda4f25c0c846675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96cc95069f3154a4538401bb2ab5111fe5cd61b00c0a30091d115c66450a5ebd
MD5 b2fd0563aeef4d0bf2f33caebabd1e6a
BLAKE2b-256 1e32dfd17d509f513ff0d3f5fedbe45b42ec0a2fcfee0f9174bb4a933e934f6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a91edf1a559ec666187a0c0b63183b7b1bd716c7c7b7afb18ee0b80850c84b2
MD5 f07b4fefa0becd0529c5ad074f61c7c6
BLAKE2b-256 fe23d3fe2a0d727c4d51532b21bc47b06e775e279e67d041624841abe53fe0e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd79db0598184870ca06d2b2ee945513f48744e4b26f86d700aa6282bc81a929
MD5 71abc7663e12df0f27de906f25ffa0fd
BLAKE2b-256 9d85492736f9e3eb4ffaa92a621594c02fc2a651bd50c6dc2bab8ae1efdc9fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a2329d228454a419da7f0f2090d7f90a57e779d69a8c51b1c224136599fe58c3
MD5 e5a2d1453952e27044d603b242da1b9d
BLAKE2b-256 a06c0f11a51093f21a272a86675708d026ca895c4419a360a9dff7b5c3025138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfa646c9aeb81a26fa0d91e1084f9806d32dd3b75c1ea1b2eee21e80ad5ef614
MD5 6735eecaa029f7e8b72fd87248f4b90e
BLAKE2b-256 37d37d59751753c9262d875fb5128c63c2ff6fa1dd9ceaa6057e0c27758ff6f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a8d090afe8189ed6a014d212771ba7b53709707d81fe39abb834aabf5a18d0b
MD5 06ec650d1d134abd9acd62546ae02ecb
BLAKE2b-256 49f7762cd58a141dc6368e8a10c7a34bab7313c023773b310954204c3fe669c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e1c2898a9fc57676d490c089f692eb6276d573c4c6d1fb9ae9437deed8a5c40
MD5 a59d05776bf4031b9b87843260798476
BLAKE2b-256 dbd4eca069d316ed39938081bbcc8807638852781080fe84299ebd23335118f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 360ef2f032da6bf756388f62c2ff14ba0fcbd0a7c992e84da860fc8dc5aaf169
MD5 caa351da3a8502998c67e591483067c9
BLAKE2b-256 d45cea7206d628f61145b1e2a4789d5da8fc38089e0c39c0b06dec3c24fa4d22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c186ae5915c37058e5194acd48951e4a62caf80d239680e8aed3ebe806474a4
MD5 38efa61bf9eba0818c3ef0b117c77af9
BLAKE2b-256 944db8f4cd4aa0c506691b0cef8bb940e260dbc0ba226b4d05df3bf9d7854882

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1549a89c359d7062539d50c87b3d98be5a81bf7ca54da23e0cd27f4049aba23a
MD5 8bc6f7ee9ef80d2b5aef97c848889f10
BLAKE2b-256 bb50ef3893bacdb0cb7037fa0b432c28212ebbe5f928145f66da49e4a43c2ac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fba3ad3119f6cf6f2922f4b2d066b14117bc1b769e5acbde798eee0a3e2e9812
MD5 6713a14e3c863e5a0747a2a557399800
BLAKE2b-256 963330c9bb6458e446f878cdb00c412d5c7ebcbd1b984cc1eae9877259d7a80f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca7ca121f2a9e74ae1c6710b0cbd059a9d7e8fa4660be6a78e70c24bab3e3c55
MD5 4963c41229ce6b5fe5d67155c6b0592b
BLAKE2b-256 147f8667dd9285445631f521aea9a7742604836edec41ced56069383f8c070f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323b3e6e46ffe24b3ff5674307f954ad6fff39fae75a73ade48b4c1b4cc54e5e
MD5 3b77d5394ee38066e2cfcee4eed1303f
BLAKE2b-256 36628f764113d5845a85826bee93fa00317d0c0ddf5598114e10d7fdbb921f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c109b98c0b925c86b653aa0b56352055f2b8dc35597c4e7a856f00db9d8e325
MD5 b5a6c09eeed0fa24c157eafb20886459
BLAKE2b-256 da5e56cf137d3585c11776ea80811a94260114572d7192bff8936ff1035efa43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8575701477743bc9e6574c96b76989e17d365ad987fc7e24b201bea2c7159c4b
MD5 a20fca96ded637f2ce24ec331ff40162
BLAKE2b-256 551b599982062dd6ec78549384997a185476f5986c73402ac8941cd0ec62e668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7581a8c31e68adbdb98f886a2501916d7317d5479d58dabb40b24b3afeb13cda
MD5 8b0b6316260db711505cc76b8d6c3421
BLAKE2b-256 deefe5a84d1881121e277a94b78e7d4734fee64496b6024d7a48cbff1b6651fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7aa50a42d4772de2029542bc8f6100523a568923eae5e53bc1a94012ffdc362
MD5 58bd06f50d40595b6357a49d2beacb49
BLAKE2b-256 018d2082fbfdc0ad9d81ddf65b5a8526650100af6f209c159f40a857d7d508e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 059fac0b294acfebc8f981939cc221aa6b2fa70e9d9d6d890297c5afa3a1a864
MD5 d65fd8859b7f178d5d666fd62699496e
BLAKE2b-256 27898834145eb18919bfdaef7205c279480796de0ae652cf9f4e114d840112ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85cf55aaa5cb4238a492f73550e8bb31438d205aa8612fc9b4f27f6db86c3f3e
MD5 9ae0f8f174657540aa0ad8e9dc5e4bc8
BLAKE2b-256 4f3d61b20490046e9248e619c2936dc632d4f31431c78ebdbba645dc991b7044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c838c9eb38bd3729570892662a5f11b0de8f168c68a9a7d83300f915bce4137
MD5 892db17501150d8fddabf7935abfa82d
BLAKE2b-256 6a62ce7e04dcb771c0606f9e38e1dd5a549cbb21b20d651a7e1bc2a79bd85def

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.6.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b185ce21eb777ad54bd9d065870d81f40989b903c4cbc5311a115efdc861b63
MD5 b33f82c73c8dad59dcef2bcce14b6a18
BLAKE2b-256 b6f327d5b83c5b6579ffac59ce31d4c672d4a8be7e919c4b7bd5fb8fa1302ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 908bd7d8683c8dcacc900735101bcc9ec5bbf650b281f4de0aac1bd7b2084922
MD5 9a2a58199dd8f39e214dff797072a822
BLAKE2b-256 51e60469f40d19d50eb9bec19df092c41f1156a09d15d74261f68e08a40ae26b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0477893c64fca721edfd6288829586f7b07ecebd427f2f1ec49f7b2218cd33b
MD5 ff6947872c5aa4913a427524dc9d9195
BLAKE2b-256 8a6b54d7e4718f07001d4b191ff7e8d308de8f1d840eb4e91bfa806d71989831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_hash_utils-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6458ebd910507612e69a74e92d7c400780707f87bb56eae45e5a3185b094c851
MD5 813e80802f59adac7a09d0fd970edc7b
BLAKE2b-256 ba98fb1c77d0c0795b3ae627379941e9d68ad695f45e8a8ec20e0b89271218b8

See more details on using hashes here.

Provenance

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