Skip to main content

fnv-c

GitHub Workflow Status pypi badge

What is it?

fnv-c is a Python 3.7+ FNV (fnv0, fnv1, fnv1a) non-cryptographic hash library implemented in C through libffi.

FNV ("Fowler–Noll–Vo") is is a non-cryptographic hash function created by Glenn Fowler, Landon Curt Noll, and Kiem-Phong. FNV is probably not the "best" non-cryptographic hash function but:

  • it has a reasonably good distribution
  • it's very fast
  • it's very easy to implement (even in some exotic stored procedures for example) so you can use it everywhere

More details on this Wikepedia article.

Features

  • speed:
    • up to 800 MB/s hashing speed (on Macbook Pro M1 (2020) with fnv0_64)
    • 6 800% faster than basic Python implementation, 70% faster than pyhash (when hashing 100 bytes with fnv0_64 on a cloud VM)
  • portability:
    • tested with recent Python versions (3.7+)
    • compatible with ARM64
    • compatible (and tested) with PyPy

Non features

  • other hash algorithms (this library is only about FNV algorithm)
  • too agressive CPU optimizations (we prefer maximizing binary portability)

Benchmark

You have a benchmark script here to bench fnv-c by yourself and to compare it with:

  • fnvhash (pure python implementation)
  • pyhash (more general hashing library with C++ extension)

Comparisons with other libraries (fnv0_64 on a cloud VM)

Differences with fnvhash are huge (from 35% for one byte hashing to 19 000% for 1 000 bytes hashing with fnv0_64)

Differences with pyhash (on fnv0_64) are shown with the following diagram:

Influence of string size on fnv-c hashing speed (on a Macbook Pro M1 (2020) with fnv0_64)

How to install/use it?

pip install fnv-c
import fnv_c

print(fnv_c.fnv0_32(b"foo bar"))
print(fnv_c.fnv0_64(b"foo bar"))
print(fnv_c.fnv1_32(b"foo bar"))
print(fnv_c.fnv1_64(b"foo bar"))
print(fnv_c.fnv1a_32(b"foo bar"))
print(fnv_c.fnv1a_64(b"foo bar"))

Function signatures / API

Full API doc is available at: https://botify-labs.github.io/fnv-c/fnv_c/

Contributing

See CONTRIBUTING

License

fnv-c is licensed under the MIT license.

Download files

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

Source Distribution

fnv_c-0.3.1.tar.gz (5.7 kB view details)

Uploaded Source

Built Distributions

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

fnv_c-0.3.1-pp311-pypy311_pp73-win_amd64.whl (10.3 kB view details)

Uploaded PyPyWindows x86-64

fnv_c-0.3.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (10.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fnv_c-0.3.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (9.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

fnv_c-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (8.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fnv_c-0.3.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (7.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fnv_c-0.3.1-cp314-cp314-win_amd64.whl (12.3 kB view details)

Uploaded CPython 3.14Windows x86-64

fnv_c-0.3.1-cp314-cp314-win32.whl (11.6 kB view details)

Uploaded CPython 3.14Windows x86

fnv_c-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (19.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fnv_c-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (20.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fnv_c-0.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (20.9 kB view details)

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

fnv_c-0.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (20.0 kB view details)

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

fnv_c-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fnv_c-0.3.1-cp314-cp314-macosx_10_15_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fnv_c-0.3.1-cp313-cp313-win_amd64.whl (12.0 kB view details)

Uploaded CPython 3.13Windows x86-64

fnv_c-0.3.1-cp313-cp313-win32.whl (11.4 kB view details)

Uploaded CPython 3.13Windows x86

fnv_c-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (19.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fnv_c-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (20.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fnv_c-0.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (20.8 kB view details)

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

fnv_c-0.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (19.9 kB view details)

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

fnv_c-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fnv_c-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fnv_c-0.3.1-cp312-cp312-win_amd64.whl (12.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fnv_c-0.3.1-cp312-cp312-win32.whl (11.4 kB view details)

Uploaded CPython 3.12Windows x86

fnv_c-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (19.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fnv_c-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (20.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fnv_c-0.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (20.9 kB view details)

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

fnv_c-0.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (19.9 kB view details)

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

fnv_c-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fnv_c-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fnv_c-0.3.1-cp311-cp311-win_amd64.whl (12.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fnv_c-0.3.1-cp311-cp311-win32.whl (11.4 kB view details)

Uploaded CPython 3.11Windows x86

fnv_c-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (19.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fnv_c-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (20.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fnv_c-0.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (20.7 kB view details)

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

fnv_c-0.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (19.8 kB view details)

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

fnv_c-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fnv_c-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fnv_c-0.3.1-cp310-cp310-win_amd64.whl (12.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fnv_c-0.3.1-cp310-cp310-win32.whl (11.4 kB view details)

Uploaded CPython 3.10Windows x86

fnv_c-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (19.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fnv_c-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (20.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fnv_c-0.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (20.7 kB view details)

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

fnv_c-0.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (19.8 kB view details)

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

fnv_c-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fnv_c-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file fnv_c-0.3.1.tar.gz.

File metadata

  • Download URL: fnv_c-0.3.1.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1.tar.gz
Algorithm Hash digest
SHA256 f3755d38559235d489b6e510666bc636937a1786227797d733395e0b970eb2b8
MD5 0d05dbd1384589935565bf5033d6e7c3
BLAKE2b-256 ff11fc100c54128e4d920b091654f89c61300a2b4616d3c4af8d61e9ed4a5fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1.tar.gz:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fd9a2d41de72952f790a9f59a72347ac980410eabcb0ee2db93f0bd1ebe869d5
MD5 04e035ccecfcb59f261fdec6a1c695d9
BLAKE2b-256 21369984ab916684f117fef88c38eb8db40e20f5784786d86d46fd8de2684ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bffaefbf85caeaad7d4640a7272228ba7058aa931fa38014792c589bc9edc32
MD5 7127d9c6d112e0af8a03d87c130ce5ce
BLAKE2b-256 89ea985cf84b1409446a47438a4ac47a30c98c7e2ec6f85e381c8c0024761dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ae631dfc40afff0501ec265f8cf95b8398c55a80156380d8fffe5e15a557a918
MD5 e036b1956788aae24a4159231d3e2578
BLAKE2b-256 d16de145a3d6eabb4fbb070755d83dacbdcd5da341ddbfb5f13f666dd44c5eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e99c07dc9306cb9cf85fcaf0aa81c3a3e7f7f780a228460950699d4c630b35c5
MD5 c48137d0710e36e0942c092b5c78c61e
BLAKE2b-256 67f5d3121a418f5058515d906ffb08e6d40799339602231ae1e3e0d552a2fdf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fd2a2099a6eb9e1b865a838e1c9ec7aa839ba7dadc2517b4a951192669dbf52f
MD5 c76fd30bf8996d5ca80d135f4ba4cbe6
BLAKE2b-256 c35f77183d8428796398b3261eea5165c59007aa507a2e4ea5291920ffbb313c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e7954d1133b1c0a56bd9cba2e64c147c6f0d3936cd9fbf9be835592d2d07bee3
MD5 a6a00af566a08ec775550f74da6f3c47
BLAKE2b-256 0d66a9f2288ba8215acbf60c3d9faed7cccc3e6a6eae5194a9f18b7d50d58448

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-win_amd64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ae1868d79703421ec73cf081a750cfd7199261709b24f526c31711a77779bf23
MD5 d7ce27a3cc80b8e4eacd340159751edc
BLAKE2b-256 1867de7fa5cd379ddae825396e5720bb3bdca58b4b6340dec58cb2667c610cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-win32.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc30031a6aa405fe8456ef2d1cccb5b88a712c092f528476f137a5f71a1a5e13
MD5 c8f7854e75a51660836109ccd2dab909
BLAKE2b-256 15360ba9870dca4d2ae65bd9d670dde5f9951353237dce1679d82ea4a5b9c291

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d8145e057bd0085a2aecb7eff81c3da0a648cd30a04335a2330161e869ce0c9
MD5 c268d3f8ab7d29bc3cc8ee3fbeba2b00
BLAKE2b-256 676b950b540e56d1cd4726cc7e41a05ca6d08815188051af8746a5ed540748b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5b7bdd6cc2152d8ae180645934ef1974b0d1d424ef4c371f982e1a1dea85391
MD5 cbd0ffb106b54e41bae88613a5b0a77b
BLAKE2b-256 ab4db8d732f1b3f8bee7cde2d024a4f745ae5061f7e76f42f9cee42b627724f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 25b3987d2b3b721a1af575e4a826db13c006f08e91d79de0e1bf6bc1f56af936
MD5 38fd682325d9ddd1f2f5acb1568e10b0
BLAKE2b-256 a8122a54f73090672eab6b322377b4afae02ad3031575cbbde06f63e42d4e084

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12f1f1023a6a6a15b0c170c28855d66dba0012ada04d266e7ebfb05b3cd627c2
MD5 94e0a39b7b9071b7192dac13727cee37
BLAKE2b-256 38e9d712d238d95d64b710d2b36cc7708aa08160727cfd23ac7e352ba798dd57

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1bd1226ef5ce180adbce8e687de0c714ed2c7b413afeee93bf7b86fafea6f18
MD5 f452936447bdcd4ca0fd175923f49588
BLAKE2b-256 534e9c93b52e8e5e524858337aa9f284a642657e06b648f78bfa9380b0d24807

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 85c7e03a7081f00432485eeb70807b1ecb55f9e44a7b7d223feaa05e2ff0f7ba
MD5 106413945437850fd12ebea6ecca2cea
BLAKE2b-256 fd1b1bcddf3e1080f62f0fc46013031a69bae6f5c1e995f8bc174fd549539e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-win_amd64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 49cef9b9f2f373e7a4d6119e0881db63fff3afc0507507001df1c5cbe2ed962a
MD5 47ad523444a25c7ad511bc5a4673c32b
BLAKE2b-256 6e32728c1c49d4cc6df48289c943d37ad98e29691d5142aeb65a1d7e2832c095

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-win32.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0954f8e2fa6f1c19803a05984ab8654272a651ef07e1a8a85d5753e14385288e
MD5 a9da0aae0fdc351af98632346e279a3c
BLAKE2b-256 96dc24050b290de5ea0b9784e2db43666a8c1e8755451873dd5125674620a7ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a56ed3ce18ca5642b5dc72343ead3c1db125cd7d80716847f6798076b3934355
MD5 9a4db0e5de994cf6fb2e758c3994a6b0
BLAKE2b-256 ebba09babe1be4d846623cdba32612a8a70dfc31ed54629dd92da99234cb1380

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16aae4c8cd4671a271b074478b083ec7088defc8e1e3b5c0f17e57bdcc5c7dec
MD5 dab9b63c15c8fca95a727b9328afa530
BLAKE2b-256 73b6e34e5c2916a8d2cc4cdfef39965ff81dc39aac42083094c19567e2d9169b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dcd1c6a252f178096d7d25f3bd52b55f88b27962b00406df46f843ec4fce9aa4
MD5 0cb210bdddce8dfe300fcc974aa311d5
BLAKE2b-256 83d1ef9e2ee24f09dfbd89120380444b735bbf0983906d373ce901db27a1de24

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2f9a88dc4790ee7d11f089b37fed6c7830fb6eca051caca3d713cbf8abac228
MD5 390c5c0c91110081dbfec91dd7c116f8
BLAKE2b-256 10bdd27b5d79212181c21e141558a444070a61b7be2c00624d7f19cbace457f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6084240d260cc22ee0321536e138e051018f381d3dfb07dbba3dc01390491f21
MD5 e7da365f3617636debaf006a491dda3d
BLAKE2b-256 125ab711796df6012b172159177c1e1c19c93d0ceb44b47ba44d39d14c859236

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e4d481d1bdbc8e944779809b19601dcd212ec2ddf4f71dec4da6aa2600736bf4
MD5 26799e54f3d9e210c772cf4a43f94cf6
BLAKE2b-256 806ac563b6e750640143b13c144f7846ce3313d80c58d2f93aa7b1344de68939

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-win_amd64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7244c1d67eb849c556033a49bd48a653c33138bc5d7198150e265ec15f04c4b7
MD5 2567a6f01227035ae60374b6441abc6f
BLAKE2b-256 0cb0c341efb6cc9c716458bc0a6ca8abdffa364683a38e9e0e05279ea56f85e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-win32.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9c33e2b0f0fc8e6764c39f9b7b54d526ddddf166566d7c55adced8cf01e4762
MD5 2c88b7bfddc0543e1a258c8fbd656f74
BLAKE2b-256 d2fa66c31b24398a1da39d1609abbc81b1be11331aa7d0e903def52cf7add676

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de5caa37f2d37bc7536a1e1a42e0e8047e28c0c86438ca8fd1741cd9bbafebce
MD5 e7e1c2b2cfc6aa156259bd9270141e38
BLAKE2b-256 63b3676af7b124c8de0dcae4626a6f275129667b6ac92ce4e53a77678990c036

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 414c679116598f73af2306dad312ca2194cdd844240c88cdc6e67edbae44eef9
MD5 84bd37e4022102d919d45389e552b3b7
BLAKE2b-256 37dc5ec563736178b6abe854ef41dae03cae92ee8b99dbb0adcdbdacf2c83878

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 25b317b35f76a3fa327b89a6a825ba1c1d8e4eafe1bd420e6e0c65c3231c26bd
MD5 bd9054c7bb5333b2b93961e3028d1102
BLAKE2b-256 1d78c5dedaad73dfdd85b1a3e7aae961717f854f4d65231383354fb6883ba086

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc53cc7e2144507797817815bd5c3ca63bdb2f4065e84a7409251c766527c5b5
MD5 f37dfb36a9916750607d8126ac916536
BLAKE2b-256 3e78cfe00e90390262fa2427d62eda2837c590e714a90e90206eda332fe18527

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0923db8ee4aae66b57edf09870e9edf290cb33261c54a0f9092ab910b7ed59e8
MD5 4e180e895cfa9638b1243488098744d5
BLAKE2b-256 7b46bb18e33c5f646a2e27fd6eaac7ee41ca34759f073befd87235b197aed318

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e03063d0813274b8c4786ce85d3a4265266f067684842ef2fa853cd6b97b425f
MD5 82c66897a88a4ab293bacd275056d85f
BLAKE2b-256 bf50d78f23e3ff2ce4fe718df258bb2fdc472f53b10d55745a5d6d9ce67545a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-win_amd64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a8fef67edb945bf6992bc29f49b79203a51be19f7435ec678f2b9e91aa472dfb
MD5 c16d75fcaf53f1308e5136d7d1375c0d
BLAKE2b-256 acff9edb65d6b7b70100b4c6c06f7c0f323a0404ff1d5ff02bc556449c021f51

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-win32.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40dd166a955fe964ff5139c94de9f22d2b3aa2e9c78a4f4f5cfbb4cd3bf75d75
MD5 25c3b88c41666de06865dbf3cbfe5cb2
BLAKE2b-256 98944a1d339d3aa7df60165494dadee8dc38757fe3e362a88a1eef3fc43262ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0bb09338bec1970ae12ea0345e0ec0874ef47131e13cea79f06a9e799159a0f
MD5 41034d0118386b53440db0bc7edf0fcf
BLAKE2b-256 5924d4789f9ad6ed982e66ba187124606215ac35c5b1b45c503b7afd802a3a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4bde72dc96a7c158da9ac002d8bc0d0e1962a41f236c4f92c8cb480804f2a36
MD5 4694bb4040579ba59c51fc6eb06ff472
BLAKE2b-256 f245d3d12413ae1388bd89c04e2414ab741dd4b6960d49d1b39da4626270b603

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fe0b16a7ee2bd4052d70d1ecca90b4fd40f4098e0b52b6d0eb4758b440bddb87
MD5 ba8607389c66833600b18de2ed892989
BLAKE2b-256 2502f75240527b8ba19ec8c1100e672bdd86f905090d5c3bbd5974121201bbb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd97e86d837351091ecc2d6cedd117afe46e902cadfcf33dbb63a2c4c0a8a644
MD5 164f2e5af216819b15183b97960e5e58
BLAKE2b-256 200f514e78decdd0b4335f1701cd91545a09077cbfcf951a77c2d82c1b5acc2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3339dc270a939c5dbc086ef2c87b0a3014afbb44f26c998c1b2a990ba583b036
MD5 467de7a3ac63b3582b9e48be44083f60
BLAKE2b-256 591ea16c9aef85fd706c99298497de934c8a8691b162ee3e180059eec8675e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eec47b1be74c913bc87bfae487495319c2c560499f26cf41ea55cfc12549f82d
MD5 cb0588761e40d061d645a9b4d7224023
BLAKE2b-256 56050ec40b50b5dfd594e3950ab1651e59813b9fd4629771fb72f16d79ede565

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-win_amd64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: fnv_c-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1c352fa11b0c1fa586b426c39ca62689be6687a2fa4c01b5e9e195e227de5f87
MD5 e3ae5d4d7d6a131ab80c31ed55d6a70a
BLAKE2b-256 1daa1849b6f14dd3b943491842c9492e97bb0ba974cf1e2196d06a5b1d0e2ed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-win32.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7cdf9bb357732713767f2ed53bd857d7f1ba16cfa7709d1a7bcbe27feb17073
MD5 4d496ea2d6ec713155bb202489e85472
BLAKE2b-256 318fe9ee8bd8b336147da85e6a5fa0ccb677aca151538e9960a169d1137b3e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d24deb0e24751fc89aabaf5ed2dbaa2ceedf7e5744d47e3c88528d7c1ab8f07
MD5 ae2b53928612168a9d21d147687f9901
BLAKE2b-256 5ddc18352236f8b356bf28825d56259d744ac20a4e8ad68394073f1af69f8e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7d2eea24993a5446e7a43d3ec98817e5055b3dcf47ea51145f10d7cfe493ab0
MD5 5da688f591e7de2798320f1c6696b5f8
BLAKE2b-256 4b68332a82ad68360537f57cf29a3686de6e2825bb162c5f402fa2a58335b6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3d122ea5d52245fde8f05801ffe1e94c5bd4f152009f129f369c89e3ad9691ed
MD5 8fe92a1445bd709fff14f4b999ced62d
BLAKE2b-256 c9cb12caa7de435e5d354275bdb7a121d638f41b2311b61b6a385eb88343f2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed3bb6902df5b226f788d137cb2bd1d37a54a3fd53faebf97121f0f376f27fca
MD5 098a89a92aeaa5dd7ec222de0ddc8bf7
BLAKE2b-256 f8ae98509a609cf33193d465ba8c9d55520c51bd59c8759b429efa1ccfe7e739

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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

File details

Details for the file fnv_c-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fnv_c-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c5fdc27645cbe9c9162ae450277526185040fd9714a295c01f2154047c8970b
MD5 96db44de37687569b74cfcd0c6e4c369
BLAKE2b-256 6227c501f07edecd0c92cc0d7e73831f38d5c1ab058f654a512c0603251ceb5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fnv_c-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yaml on botify-labs/fnv-c

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 Sentry Error logging StatusPage Status page