Skip to main content

A fast t-digest library for Python built on Rust.

Project description

fastDigest

PyPI Python Build License

fastDigest is a Rust-powered Python extension module that provides a lightning-fast implementation of the t-digest data structure and algorithm, offering a lightweight suite of online statistics for streaming and distributed data.

Contents

Features

  • Online statistics: Compute highly accurate estimates of quantiles, the CDF, the trimmed mean, MAD, and more.
  • Updating: Update a t-digest incrementally with streaming data or batches of large datasets.
  • Merging: Merge many t-digests into one, enabling parallel compute operations such as map-reduce.
  • Serialization: Transform t-digests to/from dict or binary format, or simply use the pickle module.
  • Easy API: The fastDigest API is designed to be intuitive and to keep high overlap with popular libraries.
  • Blazing fast: Thanks to its Rust backbone, this module is up to hundreds of times faster than other Python implementations.

Installation

Installing from PyPI

Compiled wheels are available on PyPI. Simply install via pip:

pip install fastdigest

Installing from source

To build and install fastDigest from source, you will need Rust and maturin.

  1. Install the Rust toolchain → see https://rustup.rs

  2. Install maturin via pip:

pip install maturin
  1. git clone or download and extract this repository, open a terminal in its root directory, then build and install the package:
maturin build --release
pip install target/wheels/fastdigest-0.12.0-<platform-tag>.whl

Usage

The following examples are intended to give you a quick start. See the API reference for the full documentation.

Initialization

Simply call TDigest() to create a new instance, or use TDigest.from_values to directly create a digest of any sequence of numbers:

from fastdigest import TDigest

digest = TDigest()
digest = TDigest.from_values([2.71, 3.14, 1.42])

Mathematical functions

Estimate the value at the rank q using quantile(q):

digest = TDigest.from_values(range(1001))
print("99th percentile:", digest.quantile(0.99))

Or the inverse — use cdf to find the rank (cumulative probability) of a given value:

print("cdf(990) =", digest.cdf(990))

Compute the arithmetic mean, or the trimmed_mean between two quantiles:

data = list(range(11))  # numbers 1-10
data[-1] = 100_000  # extreme outlier
digest = TDigest.from_values(data)
print(f"        Mean: {digest.mean()}")
print(f"Trimmed mean: {digest.trimmed_mean(0.1, 0.9)}")

Updating a TDigest

Use batch_update to merge a sequence of many values at once, or update to add one value at a time.

Note: These methods are optimized for different use-cases and have different performance characteristics. See API.md for details.

digest = TDigest()
digest.batch_update([0, 1, 2])
digest.update(3)

Optionally specify weights in the second argument w:

digest.update(4, 0.4)  # single weighted value
digest.batch_update([5, 6, 7], w=1.5)  # whole-batch weight
digest.batch_update([8, 9], [1.0, 2.0])  # per-value weights

Merging TDigest objects

Use the + operator to create a new instance from two TDigests, or += to merge in-place:

digest1 = TDigest.from_values(range(20))
digest2 = TDigest.from_values(range(20, 51))
digest3 = TDigest.from_values(range(51, 101))

digest1 += digest2
merged_new = digest1 + digest3

The merge_all function offers an easy way to merge an iterable of many TDigests:

from fastdigest import TDigest, merge_all

digests = [TDigest.from_values(range(i, i+10)) for i in range(0, 100, 10)]
merged = merge_all(digests)

Dict conversion

Obtain a dictionary representation by calling to_dict() and load it into a new instance with TDigest.from_dict:

from fastdigest import TDigest
import json

digest = TDigest.from_values(range(101))
td_dict = digest.to_dict()
print(json.dumps(td_dict, indent=2))
restored = TDigest.from_dict(td_dict)

Migration

The fastDigest API is designed to be backward compatible with the tdigest Python library. Migrating is as simple as changing your import statement.

Dicts created by tdigest can also natively be used by fastDigest.

Benchmarks

  • Task: Construct a digest of 1,000,000 uniformly distributed random values and estimate their median (average of 10 consecutive runs).
  • Test environment: Python 3.12.12, MacBook Pro (M4 Pro), macOS 15.7.2 Sequoia
Library Time (ms) Relative speed
tdigest 9,773 1x
pytdigest 66 148x
fastdigest 20 480x

If you want to try it yourself, install fastDigest (and optionally tdigest and/or pytdigest) and run:

python benchmark.py

License

fastDigest is licensed under the MIT License. See the LICENSE file for details.

Acknowledgements

Credit goes to Ted Dunning for inventing the t-digest. Special thanks to Andy Lok and Paul Meng for creating the tdigests and tdigest Rust libraries, respectively, as well as to all PyO3 contributors.

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

fastdigest-0.12.0.tar.gz (42.7 kB view details)

Uploaded Source

Built Distributions

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

fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (580.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (622.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (657.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (545.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (497.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (410.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (581.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (624.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (658.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (546.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (581.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (624.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (658.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (546.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp314-cp314t-win_amd64.whl (235.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastdigest-0.12.0-cp314-cp314t-win32.whl (230.2 kB view details)

Uploaded CPython 3.14tWindows x86

fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl (579.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_i686.whl (621.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl (654.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl (544.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (409.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (640.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

fastdigest-0.12.0-cp314-cp314-win_amd64.whl (236.5 kB view details)

Uploaded CPython 3.14Windows x86-64

fastdigest-0.12.0-cp314-cp314-win32.whl (231.1 kB view details)

Uploaded CPython 3.14Windows x86

fastdigest-0.12.0-cp314-cp314-musllinux_1_2_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp314-cp314-musllinux_1_2_i686.whl (622.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastdigest-0.12.0-cp314-cp314-musllinux_1_2_armv7l.whl (655.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp314-cp314-musllinux_1_2_aarch64.whl (546.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (410.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (641.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

fastdigest-0.12.0-cp313-cp313t-win_amd64.whl (235.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

fastdigest-0.12.0-cp313-cp313t-win32.whl (230.2 kB view details)

Uploaded CPython 3.13tWindows x86

fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl (580.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_i686.whl (620.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl (654.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl (544.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (497.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (409.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (639.6 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

fastdigest-0.12.0-cp313-cp313-win_amd64.whl (236.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fastdigest-0.12.0-cp313-cp313-win32.whl (231.0 kB view details)

Uploaded CPython 3.13Windows x86

fastdigest-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (580.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp313-cp313-musllinux_1_2_i686.whl (623.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastdigest-0.12.0-cp313-cp313-musllinux_1_2_armv7l.whl (655.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (545.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (411.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (641.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

fastdigest-0.12.0-cp312-cp312-win_amd64.whl (236.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fastdigest-0.12.0-cp312-cp312-win32.whl (230.7 kB view details)

Uploaded CPython 3.12Windows x86

fastdigest-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (580.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp312-cp312-musllinux_1_2_i686.whl (623.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastdigest-0.12.0-cp312-cp312-musllinux_1_2_armv7l.whl (656.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (545.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (410.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (641.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

fastdigest-0.12.0-cp311-cp311-win_amd64.whl (235.6 kB view details)

Uploaded CPython 3.11Windows x86-64

fastdigest-0.12.0-cp311-cp311-win32.whl (230.7 kB view details)

Uploaded CPython 3.11Windows x86

fastdigest-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (579.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp311-cp311-musllinux_1_2_i686.whl (621.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastdigest-0.12.0-cp311-cp311-musllinux_1_2_armv7l.whl (655.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (544.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (409.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (649.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

fastdigest-0.12.0-cp310-cp310-win_amd64.whl (235.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fastdigest-0.12.0-cp310-cp310-win32.whl (230.7 kB view details)

Uploaded CPython 3.10Windows x86

fastdigest-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (579.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp310-cp310-musllinux_1_2_i686.whl (621.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastdigest-0.12.0-cp310-cp310-musllinux_1_2_armv7l.whl (656.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl (544.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (409.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (650.5 kB view details)

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

fastdigest-0.12.0-cp39-cp39-win_amd64.whl (237.5 kB view details)

Uploaded CPython 3.9Windows x86-64

fastdigest-0.12.0-cp39-cp39-win32.whl (232.5 kB view details)

Uploaded CPython 3.9Windows x86

fastdigest-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl (580.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp39-cp39-musllinux_1_2_i686.whl (623.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastdigest-0.12.0-cp39-cp39-musllinux_1_2_armv7l.whl (658.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl (545.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (411.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (652.3 kB view details)

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

fastdigest-0.12.0-cp38-cp38-win_amd64.whl (237.5 kB view details)

Uploaded CPython 3.8Windows x86-64

fastdigest-0.12.0-cp38-cp38-win32.whl (232.6 kB view details)

Uploaded CPython 3.8Windows x86

fastdigest-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl (581.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp38-cp38-musllinux_1_2_i686.whl (623.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastdigest-0.12.0-cp38-cp38-musllinux_1_2_armv7l.whl (658.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl (546.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (411.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

fastdigest-0.12.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (652.4 kB view details)

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

fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_x86_64.whl (581.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_i686.whl (623.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_armv7l.whl (658.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_aarch64.whl (546.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

fastdigest-0.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (411.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

Details for the file fastdigest-0.12.0.tar.gz.

File metadata

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

File hashes

Hashes for fastdigest-0.12.0.tar.gz
Algorithm Hash digest
SHA256 2ab08ed8eb37c57c999338a8516d33a80661ddedf5564dab4e09e994732e3935
MD5 df2f43075a19fd93b1cff4f761652019
BLAKE2b-256 2a1f6b7806abc33c342009a098ee49eb5be60d193b320b78e32e4b09f2c100d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0.tar.gz:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a597ac0b5356a80e9b7d798eba7bd8faf78e33b1df216cd3bc9916313157d6d1
MD5 6f24009349d6b5671f98bc18c3d01a00
BLAKE2b-256 bc2a3c3fa5e49d39628e5330ce53ecb07ee5396501a6b6a6183edaf430493b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b12f793980d7427dc37738b79092882ae717a8e7443369c4bd82ea4e46f95ab
MD5 d180fe3cacd94749c4d7704e2a97c0d4
BLAKE2b-256 41195dc6bfb013d78d6d9107ee70f0676fb468bc8310ec0f34650a5b9ef6f77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d61c1a4ff159a779cdc1890763a4683f56ecaabce7692cfa1ebe4f5cf70434b4
MD5 4d2926b574a8557ea9fedc66ed2432f0
BLAKE2b-256 3a04c279d4ea6e03f369d75f11170561dd570d6c1dc44903cbeb9de0c5a35b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6029d8c5fef572277a490209805441fd327af2b636277b59bc5ac7943d2a7ed7
MD5 8adc2a4985bd82d0c069d08568cca567
BLAKE2b-256 00461a2f093dbd994fe202318b7a85ed6732489d2370024163ea9b0ab03bb9f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b59bc99f810c3c263b67aaf8a463be8b30a0992a19dbe8b1c72daa420121730d
MD5 4f633cc401278ce11ca6167f60767fb6
BLAKE2b-256 2b412e8de7d3b74582fb46eada47172c509070dc545b898b809cc33383cb55c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e05fdbdf42b85392c0f16e83b8718906973e86026ea0cd1389f090cb76e2859
MD5 4f91362b1b85256129732d1b28fc3e6e
BLAKE2b-256 de1b4b9672fdadac3b646c2aa9b9730333de171a8c9b818d231b1cc5533254a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61876a26e0ad58ef1044ffa93f5560fa73fbc9493cae02fe909eb23985109a95
MD5 6119fa53543a99f48344fdee754e85d1
BLAKE2b-256 c25f980666fec919b24801d08b7397afe55bd1c575d5a59bf901f37c6418d82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05c5d9693c2fb9c69e890c5bbbb704744a19fd2e2ba638cde1dbc571d2632ede
MD5 317ff9f1cabc6d6269346d19e29c88bb
BLAKE2b-256 fae6e3534cf1f6be8c0703c5e459bd361215ab9c044c04a51ecd6b23527d8b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca3ac07456ff1569e61b3069e6ae2db7e3a25bcdb45a0c6667b56ae9ff4b0715
MD5 f45f5f260d777225eaf878fa7e9a1766
BLAKE2b-256 6fec325608969a753c0966159bb3707ca43d9f3c8876dd8f9c3992c4e7c398a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b34121aa78375f706f85f5a4453be122ddf5d5f4973367b0fca0f9321e8ebb4
MD5 228a14f8cedb78c2d956ee71c0ac0de4
BLAKE2b-256 6be29d131ad4d29a9b3b867c204b3ba455f9a8da2bcbde60923d43d500227a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fabac0bb76de190848c1896292eb7fe95daae24a4397a500e0f7e95349b2b24
MD5 da8c1c01ec36473150565f4af554c46c
BLAKE2b-256 a5f4eecc87c998d81a7a3f9dd4c1ddbecff1358b8d6d449114e8642c45a938e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4721a1cb68d19054b4f4f2fd929a600ce5d17fd6c839623eff6b558a12a2e50b
MD5 7d103bc1e3f37f10bdabf278964c787e
BLAKE2b-256 3804cb829407f32e1e14deaeae6c1d5f0ec1fee38ecf0d865ec35e2a6f64be83

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82272d6ab3de6ada4928b17b3a966b5eecc1cd50d27e3a4f619656140ef47869
MD5 654f74393bbbfdc735700eadfafcf0ab
BLAKE2b-256 0f491814204fc515a7d71c0d1f1ac2a4407c166217031abb3d72612964c0e72c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89b4bc856c777e76babd1099e47053d9bfec51e3a0596f0808403f69f1ee01b7
MD5 9084b655ae1b4f4d09ff1014f3dedaea
BLAKE2b-256 f77c7466ff3d3b4645eb3bd6c36982ddfa339ed6585c1f2df8ce82974cc595b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea25372c699d1d9dbab79762b2f7fec60b7f6ddad58a63d23fdeb5eba2c4e312
MD5 279391c3ef1b27ed2f5eb65e82bc0db9
BLAKE2b-256 848014a59303f08c46b933310aae283977f103f2ac613399051f4f52f856deea

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d707ad17509fc2ef77ab7acb3809623d62fdf230d61b15579fd96a0861cdc59
MD5 72dc74588281d0afb868ec2b8ba34d00
BLAKE2b-256 f30ad45e9153f610f63d179c3634104d85afa03d23c405d4d10e660247ecf996

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cec799348401f16e435198f4fa46e5242b8190ac00f1183b872ab60a3e1b1a4c
MD5 1e83e04763c7a14ea40f4045bf84ffdc
BLAKE2b-256 d035176489c1a9f379a1d39a665b862e5d77d1e5ff2c3a5c9d4e493295c8cfc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 969e98c96051d9336f2290138de41f9f6d12833930040b7cc7d33cbddc5c2613
MD5 faa5982b95c263af6b3941c661cb3541
BLAKE2b-256 b29e26e3a4abb47d306d09d7a623295a8863fa0cbfdfca49bcf3bcf5763862c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a1b8b3133f2afb97f35e8ecb66712370a05ee915a2481d1a8519d35a7964e0
MD5 4cf20451976e0a4d96a69d0180f00281
BLAKE2b-256 9be6863bef720015ceccd8b2522e1e1e1a73ba089d0616f7a2985b7404001511

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22387ae0de63255342a33d18583003173c2996bed7759815b8a2f8c7ca33b2a4
MD5 0934dd609c985e78a4ca30d4c400e338
BLAKE2b-256 b25aab167b1ea4c6a3337420e238d44af5adf449971a8a997cfa7716d85071ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83fb197908d77aafcb5cd5645ddce52634f2d6c5dd9098175d49c9d36ababda8
MD5 03919dcf47a062128302a7342c5659ba
BLAKE2b-256 d2e0457d347c37e8904808337ce51411bf9da8380c2d264635a5559748269dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b2589fb4f1b57daafce4ed9a3067c8de2dc99879ad82f61c0ad868caea0eb0e
MD5 100e759561a5ec45445e1f9aa2663c78
BLAKE2b-256 bbf4c6c46d7230f9ae39d86857b8d88aedd78aebb5dc4aa69ad75cdbb10a3d5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bba35183a8dc32d7aca07150a97552a444aba0c460cc13a73f6dccedf7fae51
MD5 1d55e4c860d1a41ea297a9f92ab9de2c
BLAKE2b-256 3389de57749e2690881b91c6288dda25f5b3eedf3ad921f67cb5fe9e020da070

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de8117255a35b25b166ed87f6499f32450aef071d3458d8a63f34608dde71fce
MD5 42a58c196763c73e57f4eff2f801a8df
BLAKE2b-256 904dce3cc7a1948244a3b3bedb17931b2d9bbcbeba768b6bc088db0d6226537e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81c255756261149303393bba2378bc7a1e5e0fb92fab63fb72dbbdb1dbe0b95b
MD5 ad8ffcd2d25b8fa553b35710cfa0bb7b
BLAKE2b-256 72e1f28f6783f9bfd2724fe0c6432e784330a1e70e9b08824dec99bd2b7284e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85a5f5b2b4f3ad2f97aae9fa9073a81ba727a77fb6b92bea2d71d0f7862a9cd6
MD5 e791a8f1450c69a68cf90dc71f890a9f
BLAKE2b-256 ecd1f8df21d54bc6ea330f2a61f7d207fcce98c0ded22286218f1f0126da404e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 79b380ab3f2052228a34c609bbd131f175fc0b08cca6d1553084b3ecfa63b660
MD5 607675ec99b0ae43230239f9e845390a
BLAKE2b-256 fa464cf0d68c6d1798c12eedea1a623d294c53ad3af65f4f898d2de1bb637b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 230.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0ae24eaa69c74593555ed51309656bab683f4821cd440c1ab231e4eb5e222193
MD5 0794e4672388f420cf39c6c35bdf1f12
BLAKE2b-256 4ef36075d6bc096e213b9fcb8f1263c24c7a8fde4353a628f29f947fdaf220ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfca4f350a2398c3b53b0e7b81aa700d0a440059be2766cc2e7ce6123f1cb7f2
MD5 21b4cdedc6dee499188511a6ea41098b
BLAKE2b-256 dfc09cdf19acb48c41ce2510472ddd30bbaaef969d6b8b9b43896ba863afb94c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec0921c5ab1a7e83c623807cae127dcb82f46aabb4eb09d6e2cd7fc9fdd6b8ce
MD5 1a55ec213897d604d4a7675d1a1617cb
BLAKE2b-256 0a588bc78295d333c488f58d2bc3bd3b2912dfe1462ca3c7fec6b3a97c31ad96

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a12ef21c0f67e5f37596ffc1d9b6a8c2340c2f099aabd92f8fc007ba844dcec1
MD5 dda6e51f4ce70b1e7bf9009ec19fbb63
BLAKE2b-256 085ecd842a895f335c26de9bd469668af143ac5674bcc81de3fbe39e954a70f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f75da719fd2beeea1e2dd0f171cb4e576907d3818ad48140caf959eea1222406
MD5 49b71143fd7eabb9994dab68401f18cf
BLAKE2b-256 b14791160756cb3e4ea64fb09b2a0fa2f5b9b84d04316479b095d1edcf71918a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0783212768bf4523488be14b368ba2c501d1457644d9e9b693a770229f0b655c
MD5 0e639b8b84de2d320df80dee21db36a6
BLAKE2b-256 4d7d611fb4db0c0758629f384d45684066edce8bfc349a858eb833ed8f4cdf5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04bad40987bd51fd692b48c34be8b6759f540c2b4372e4462024933b841a0f8f
MD5 9c041100c5c24c63b7c638fb7cb105e3
BLAKE2b-256 cea1a25366e974e50d8997a25d69b296b61711a252f897b36a6988f83b6f19a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4034b1484ff11a19f2c7bbf10c079628b08f972c7e17e96b2298ab513f90c226
MD5 7bf4dc98f679d188916e60fe6f3ee735
BLAKE2b-256 e1479ec5927e556211ac0d041398a82f613607db5ef2e3b1a0e69332e8839ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 582ba4cf27673a7ece76dc6c00be0464b395d13740cacabf01d1065cf43b5724
MD5 f468512af566eee2f0802c0f0606f6ed
BLAKE2b-256 8d4369aa3cd1140e70a0380123bd0534e0e7173e47452ff0d863d0409ac4dd73

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 730b0c332bd37e73746502092bab1f9cd3e1e58f14802dbc239fe3d217430bc5
MD5 1539954898ac86cd6e9736e410ec4554
BLAKE2b-256 7c467720a4318f5a43802627ca5b9c5db8035bddf45dfa92f9683804a92c0c83

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 baa028b8d53ebebf9389f1e20c2c911aeba270a45207ca1bec6b2c13dd0ddce0
MD5 bb8d05c4d8615dc2202614659d5b32fd
BLAKE2b-256 e439ed2ec9ce52b91337636216488273ab48a486ace73302714da9ee3acc9a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a75f1befa2bc2b1c1ca00f95b2493bddd920b30b5f461f73e823d6db5590017e
MD5 07953238975514476ef69baf56af5bcf
BLAKE2b-256 ed75589b894032432cfe616b0777bc27ff172754537a4473804c5ff196817b71

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 236.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bed3f3a533ef7b1ae8527edb17a16027db1ca3c7da380edfe93b3e5969a9218d
MD5 b8394552fde8b13133efc8d1cf82e68c
BLAKE2b-256 2d883f419cb3e8b8163abe29b296649fcd6d1be555972705962844f13a4f2c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 231.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 38a1bf59b89e65400dfab16c9d15416b65a3fe57a0b5b33206c351f7e24e8885
MD5 aa5d63cd54705a43a1d31b66738a4962
BLAKE2b-256 de25b62fbbb414520d34faef436105a1211d3da104f9c4789b333717095ab027

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5e465a319c48b3dd820f80d0155ec49fabd1cfe6bdf2628db7e6e05740a5e16
MD5 4318ff9afcb7282a24842cda53f8e358
BLAKE2b-256 e384e8404d54c7726efb24588b3cd692368b51f12f4927013fe041a9cf254dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e6887680cb268168bd0e5dd657ddc21de836eb91d878cdc5eddb7370da1ca9f
MD5 d560402d650f93c3e362dddf09abef7e
BLAKE2b-256 f2c6c71df220ae75a02446e4b9e008948a9fd54396d8ef8f7a95b6b4b487b334

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 103995b6eb406b8a06906089e91380a6577614d046f817edfddb409438bf870f
MD5 3e3233d1d1487868b694d80398e3dc39
BLAKE2b-256 015d934f2b1dde9692205fa1e06f64da61d85903d32a201a917d4f2ecda9a709

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a93f60fb844f02ee054e2ef1f9bfd80c189c4288ae130e1bde5db71d155808a8
MD5 5673b9bd990690d4a7d731216e8d3b69
BLAKE2b-256 e407d1635b328d2265c6b91c7db78cc94ec6049e9e3ba4c81a4618ceeecb5a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3ba8e7c42eb931039750fe1bcb09c648eef71dd46f1d451be08118a14b9da6c
MD5 80d93b4e1b066b40e01475405bcbf2f5
BLAKE2b-256 ac979acb64e6f18066f07864588d6a3060120280386874788a24d28f2d67848f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 059dc185f7d33f78f4b84beaf3f797b5ab51b7a880958c2f23466c3b63f82c95
MD5 d7647cd7c6dd9957ec5668bf1d380b10
BLAKE2b-256 4e966704e5fc33b6f3adf1013783662114ef94b761852273be472d42363be8ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff829d2ef0ef53c48d99f7f741baea439c8c0b067389b6fa561e9daf45cd3470
MD5 93622495a913d1380dd0541b2bbedc84
BLAKE2b-256 402ecdbbfe03c1eb56097d0d3814eee332b45eb097f5a69e9d81ce47be3a51af

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9d9ca6c05c26fc13e44ac00691d41a04b39b00c169d78af624b4679f5e5dd3d
MD5 7fc444a0f82ff7d72023440752e77f0f
BLAKE2b-256 5c57762db973d7568ca3c6e189dff295566b2cb3f78f27c1041bad60ba882c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db3e24070b16800b4c92f7a758ca568b346de10b78247ee05192646c66aac402
MD5 2245037b5a2dbabdd6170ea9b712d44f
BLAKE2b-256 9442fc2666fa0f26987ac82ce79f4e6b57cad91ec759f1597b76f120cacb31cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea30ea59a620b2d4bf0bbf3fcb5ea1e584f58a43fb3d2914f1fc760312ffc063
MD5 caaff5cb5996ee7def1e98bc6e08c490
BLAKE2b-256 08fb538b86aefee2f44437fdae8382778c3ce4c08b13c9da4e703a4270175048

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 71d1082430b53ff3e7f9b24debebdf07876462407b580d586fe8cb20d8422f72
MD5 6d163394b781db1170b4c99b7f61ced0
BLAKE2b-256 deff05ae5906aaca1010b9369e936212462538b15b56ba081f0dee7fc5d320a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c149fca78c3df2d02c65ce21cbef5fe3817851e51d1abf1c2be6fedf27b2a470
MD5 c6a629f901013fe0177c4235b8568880
BLAKE2b-256 89306a6c874cfed17a9c21e7f94f8d6682bee4b089aa90f971b6e5a04e092d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 230.2 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9ff06b78a8e1f49649a04dfa301b1035745bbfa68976f5dc0c5b9a4425504407
MD5 eb91791d8f33bee8bd160c2d2ee0d0a1
BLAKE2b-256 ea61271927322bda573f2752899f614b6b8071b575a6de8c617b97b71b88993f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a0ca1fc1040c62e2b4abe751b3cf034c05f0fb2e5b569de33242a7f12927d36
MD5 bcc99e93c5bc1994aaea514641b4a53e
BLAKE2b-256 cccaaaad4085fbd6f7b91f5070b8d29ce58fd9b19cbaa97afc7715ecf7ea91a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1eea96129219279b7011d4338e1aa7a19dfff62ba07d3ed02461402e92bc36e2
MD5 6708a1cdd88cf47dc0550980c8a89a08
BLAKE2b-256 56b0c026c18a803d1cce39e4406f1697ea147716952a8cdaf0b98f0794f6e3c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5975dd7e3690d5205f35878ba19de953d07185355fc333a06005d2bbad22b5e8
MD5 92ac0741fe3dea829ae407f43604578f
BLAKE2b-256 8742cedc632621fdefa01f78675bf2ece323dbc5db3156b072bebe9954be6559

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec74aaff47c6246076b2bcb426d1ea83324c9b075334085f61c2e6fcfdf35f6c
MD5 b671c3e28dc1fad354ecdc54fa346896
BLAKE2b-256 ffbe12b83b969e8703e5ad0e7f628ab836a17bcb6c5eb1fdad9ecf3c6921fabb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb1f319ef15b47c3fdcb3043c9ca8dac84b9f297b4d48fa2a3ede98f89dbc960
MD5 d8dfd453684a42489f0a5b8b66f43cb7
BLAKE2b-256 f4f1845851df2fe7404540af2b67602a0e8cd12fe84f198811e52c201966b868

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13eb0277909c757004d7a5dfcfadc6207b24dabd864fc08b44d876532c87d2b3
MD5 0367dde2f963dc59ed199c82c1eb3d1c
BLAKE2b-256 6b6a101013fa2396a688586c4c2d2216730d6cb9d1c2755eb39d6e3f9f4e1b46

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a5e25aded3211a7d9ae1778a55e4dfdc18c3c9e8632b2631af7eeb27e0c9dae
MD5 92ed10d38875e980d362098bcfe55e96
BLAKE2b-256 2a5016911a1fa57dccf4ce51f0d5d80dd7f2288e1cd74ffb62392af08737ccc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80b7070f87c94bca3a07ee48dd98a34c84b3b1f9c60d0670e88fc91e47c23b57
MD5 c606041169e1e978255e793bf18140dd
BLAKE2b-256 4013fde379e969ba7601f495f1d5dd07c77500fd669eecfeecd2d6af48012e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 561eced191db3ade4cf0ae77295eec135ec43139352e222934a55cb76a2ce736
MD5 aefb54ac0f8cf94d3bf484f873bd6672
BLAKE2b-256 376573117be15bd57474cc5ac26587282ffab8a9888c36001b10c101d6ccd3b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e990928eb77f5a295bbd1a33772bb0677d8d8d6bf18f42c8303f09d3b34ce2b2
MD5 271edca6360e7dbce5934f3b36b05b33
BLAKE2b-256 c77f75114e677e01ff36472720aada17efcd75d917e6bd70b8db84c6e7c94473

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0a230273e9201fbd6c0e0e770132815a55f4a7b53becff69097c17f6bb653a5b
MD5 c29780b27691d6ce9cdaed680d63750b
BLAKE2b-256 66e9e94c1c92466eeb6bbe331f24a7c5ed24218561c48a2c5fd4a48d315477c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 236.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5074b0be81ad4d35b8954171c2650e3455c5418dcc947f466bc2af3c6a2c84b6
MD5 5334d23f336003569a66835334ce9acf
BLAKE2b-256 2be1fb189ef711de92cc01051a1853fc63b1d039587faff1c2558d77625a4fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 231.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8c1f5de63afd86b87b56891b69dfaecdbd70ad7089dec1177594f7dc806aff9a
MD5 912cb5f0de55df127bc7361b73a38982
BLAKE2b-256 804130a28cbec22a295bee8e5fd92328ec243acf6a23fde4b2d2db922b2dbe00

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 badf747b58cccfa3cd673e22dfbf352504b41d5eeb96fabb7ab2658bf106bf59
MD5 d778472519489a7799a0adfd80d16db3
BLAKE2b-256 853d507c605af49d1e689ec8060639c48f7aae85e19634daaed591e9d7563b36

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a252ce34a4a3be87f6062776a634d3b6f485cae6d171ccaaef1cc4d836757e50
MD5 ccc22bc6858f7f58a4e7cf01f41e3dd0
BLAKE2b-256 40928e2d957f7fc1103c5ed3f3702929c037d1c39ba0e71ab0f82e6c4ec1b0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f701e8cdcee77a25f49487f3f2c62bcb9f7d7698a43ee1e230be8dfed5711453
MD5 b833ef242ff2d15fc529ed85adb8a2db
BLAKE2b-256 b75efc4e322c3165c7da3ec75a73ba473a64d71f0bfe2dce1f241ef5750afc78

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97a4b94128793558dccc53da9e9253a009e63d666f2bf06e193889cfde9e91ab
MD5 8f2324fb4c30248f8034f03f0fb29b57
BLAKE2b-256 471c527512d1e099a3c17f85aac8f8f84e800b3e0af263711c12f85f82827d00

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 241eecf50e3a62cfa50e4b56b6ea35d43d83dae4ec7eda2a37931dacd9bd6219
MD5 76e91e49d6b536eca62391731aa959b5
BLAKE2b-256 913d65d881c90682783b40681fb555568b6e22c623b4affcedb2884eb5cddb95

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd6c36995665f73d827b766f12ee6b458687472152b019dcbc297eaee90788cb
MD5 c057b5ae1cabd53f70bf0abc6ebec469
BLAKE2b-256 b9f3b789be51248d15e2b7e3ceab52299ed4866365ce720027ee7db3df65167d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3291e59ea38dc06c356a1ea0197c91df7719f42d739dd845cc187fc49a68b09f
MD5 d3df7d1fdd9fdb611fdc1c594368675a
BLAKE2b-256 1974a3425377013c4b13ce13b8af4550b1108c0b8a28808d36183b2943718891

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b29dafd79885e4c76206104da3e380381de3bc2373651b87319499edffd67184
MD5 1bb499b549a4f19a72016b558302244c
BLAKE2b-256 be4842ce87622bcb2e152525b1c2caddd3bec64b471472aef7622b95c9d8b9ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a7a5d280ac7c77a8aca59d61d4391fc95c96fae7da3d36566497730d9a18f5a
MD5 1909a3e48126ad27654099994c7537e7
BLAKE2b-256 74a8044544e35161fcd2d3380f60f35895c9ed0ae6a8366481a9717fbe76a3d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f55f352ca82f68e088f28e5010439437b9482f872cb8c21850e5605ab10fc17
MD5 2dce6f7b6e0766df3ef34e8234984e5d
BLAKE2b-256 206f085bddc65b62cb47977a66b8c75f16fa8c47a8535b980fc51f7bbefa1770

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6be9abb99c26ca300710e34c6d0acc9a49d4a3541cd74b6ede5414307a320a57
MD5 092a605f1f5ce1dca4daf437db23b98f
BLAKE2b-256 2b6982ea22f30ad1d093bea708fe74adf50af71c25622b4a323f464ea3e5b013

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 236.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 91385507d0ec614cd8dcdd33fb502f5345fe214293b20387f32a5f3a252703f5
MD5 50675cfa2855b11c23440834548a49de
BLAKE2b-256 7d78e8e2a3841edb7ba4b075088b69744e02fa8107b7d365f1295275270aa9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 230.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f67d4ccdf54ef2eef057e9b486f674438771178e0316f291ee36632a070e9bee
MD5 f67caf47d5696e3900ffe4a00878148b
BLAKE2b-256 bbc7586d4b526e7cf067f9649a527af48401d935e2ccb0db34aa271d8bfd97ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6c5429624562a8a359c784d6cfb3bb1c21518b6569321794c0947eba9042184
MD5 9a41f294f44db8fa1f53679a3a00dbd0
BLAKE2b-256 23f581fd8b3320c47eb65fdf5799555ea08a8a621ac736c2c68fd8ca20591b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f71bef332c022c61216ef3a2fd7ac734d40b84dc77bbee2f53b08b8084cc5190
MD5 0c22b6c8b59651cf8da4563ebdbbed31
BLAKE2b-256 39411d6dc8bb368c7a6c4daa0ee5124fbeb5032c42cda1151979f5ee527afe2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63619773cb9ec795f904cdecd9513eb68186bc8c063665a5350752ef761f0ddf
MD5 f630af72cc45dc3221a36629474d5363
BLAKE2b-256 19571af41fdb1c97407a45bc448905de7ce76b878c16411131493c24ef141706

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5878b3d85dd734ecc4d32a59ec0a38d4c551ade92971d0170dde26c2ce4cb9b
MD5 1649832ebdd1b53e3a84753374d86e6f
BLAKE2b-256 082ff60229d09ca9b0aef787e13087bc8c003662993cb94ae302a3eb909cf5d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4784871fb11a49d17779f7d1df95a04e07db463f1e78c10f086396f291138e43
MD5 764f8e8f13fa60e41fcf9a1717579eb2
BLAKE2b-256 4b798072bfef214bf89e7f6ed5d67de53a332c122eab41f0b8fc0f9bc733f5e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4773d0b8054ae24fab9b02a57909df3488d9502e354c4f572ff27fb3d626cbce
MD5 baa7a184bda5ac03dcbab9d8e05d7f2a
BLAKE2b-256 a4d115d44b6bf1e20730ea311f89b2a398b92914e65ea0513d6e66f79bf968e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2f6829bbce00e5238b57196628d01d86e4306c84247c0b268ae1988a07c4d57
MD5 f22b6da923d5b9fd2d066c043c18f793
BLAKE2b-256 d89426df4b6115c528fa085ff387c3fd9a8f384f694789e26d657a3aafa00c84

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efa26ad84be82e9eb4963c36110de79a62c6abb95a4f28ec71bc24ef0ff40670
MD5 d54cad8e838a7c70a6a50303d213555c
BLAKE2b-256 cd42a2eff6f123ed4d0388e9a417d7e16c93ff01da002bc227c8dc2435839db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20ed0150adbcf214e373fb6d36d56c227a24024f0e90d52ff658a9af4d891f7e
MD5 a64cb2604427337f0570a6293b11f23d
BLAKE2b-256 1e57fabddd7b715bc3a0ed52d9fbc462710f903c9888ebc644e23d0fcc22b72e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e9219920f4c041502a800f1c1aca8dd4417f18d5c2aea76ae75fff1999e102a
MD5 7fa98014c65e55ef91568e02c74491fe
BLAKE2b-256 22e643a83902b1b9b17bd79f971e35db45931fd37195234e83046d2abbab4127

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5870aa3c06ea17ad7a78650f9d46e1d95e6eae9257cf781103251de2f5961578
MD5 fe64c601d24b7a47fd4c20fef78eecb6
BLAKE2b-256 683914071c15c0fd28599ca7189c444822f518251bdc9e83d14028f39a2e6771

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 235.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5470e16be878d5a4a1c021df743f35b74965be9c37d31d1141c6a97c992a559
MD5 0a41ff9b23b65ee875f0171e04ad3cbb
BLAKE2b-256 5bd92900f332b7c7df80c60e72c59f4c00c159b6cdb63faa9853f94964e098fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 230.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 09ef273f116da055b9ba568db61aeba8d459533d02a7fc21366642193ec9bd91
MD5 56cb3e20174492cf2331603ab9aaa304
BLAKE2b-256 e8c28968a68c37ae96b71f55169c5b59185005650b4b7802147ca12c006a10ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 779cc734f180bf4cf7375e7108c497ff3b61b68eec45d250a152d37eb44fcd1b
MD5 a25d27d8e3bdda05cc5e7f743fa60069
BLAKE2b-256 709151bfd51bbb5e97e96cf236ca018d17779087f23447c00daad996bda97727

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47e62a5ea355e3625c9376c64d294004fbbce6849ef80140daae4889e48e4d18
MD5 94d64a15fd071a4b9a0a65fd12a80d2f
BLAKE2b-256 cc7902d9788f29e3ec5fecb2cf49aa7e4e8981d5716294fcfc25a6354056f6a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49e79e8372a2181495d870240f23d6718fac75d75cdcf11a41aaa87ca656b461
MD5 47855b81334834699e7bd108c343fe8f
BLAKE2b-256 aa36b396f50f3ecd5655959b9d5fdee8a0cd34828bf90c15435906ccb9c41e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3239661d1e2d0ba636ff02b670c0e1aa6866d9688b3e3a167434b1d6f4b4865
MD5 e1110cc18be623454a7dfba28072bec2
BLAKE2b-256 6521cb3e1008ddd7976de91a91c0adba1478c33278be0623433b77d7cbb1ea76

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0bb006d130d5ecafb57c203ab328a3239c3e9b661fb2b411a9e579c96fc75bd
MD5 e85a5ec4d374115f21dd15c3fec41c7f
BLAKE2b-256 8b1b3782784b97095ad7dbe784a6b73a2e5cf406fff623dcc06afff27232b04a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b866594b40e8d39d0a6f1433e813642e5a402b61d9ab0d383991a44327c45808
MD5 e222d59b412a034026d2337ee8892022
BLAKE2b-256 76ed79bec86787ddd8ff5b862bc3860d944c7853cc6261c82ca6ce96d3b7311f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9917324887f17b6921aaff025ea14c9ce4915f01fb472dc290d43eb4e5e833fc
MD5 5420bc5b5b04da908a58ce640154fb71
BLAKE2b-256 a264359ca8189f6aaf418dc1cc469db6c41022852527fa1e39009f3cee5f2479

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61ccdcde6348cd54ea9980cc18e3a5e794efd45accc57d00afc99181915d32c0
MD5 4d7630d1ad89d3dd2eaad3135da6a9fa
BLAKE2b-256 523c484c24e4c09c0377ad0c88c98b7b4746bb35cb7ad2b72e0a26de470f58c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd6730dacccc3e095a6f0bb15fa3a07c4c1f3247021fa8a16b53c341a7f451ce
MD5 27afc8bb6808d3538b02ebac2aae5864
BLAKE2b-256 fef3630b5146fa5352c9faaed824068c67c46bf6d6c0cb218a7e9aff514070e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd768a3f5104807538582854f5956810c2983949891bb10b0c92c41678b770d2
MD5 83732eed91acba26ab9356165b41848a
BLAKE2b-256 835da3e39a19b6da8daafbf8ac29aca759d9070be060e4e09ca9beb91703d9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 55feabf4cc8e8d923762e61501cb8a560337d9442e6a38c98d1b2e3a5e55b7d9
MD5 59cbc95442692fd1a817bec7ef61c993
BLAKE2b-256 e92de39e5a3a29b31182613d8b8ee2556e726a83a82d18cd7ad53eab1ffa5410

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 235.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3142017aea518b4bf9f1dcd8cadfda864f81a980d9afb9ec5e843fe1c4b1e78
MD5 23d27a8039d9fdf364b2c49ce6e9234b
BLAKE2b-256 3ed206b87266fb625c8dce0859c8768297937cd4d0c1df9eb4e00a35332b6bf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 230.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dc694e31df22ad9a8bcd834df36cc2f1daed01b1560630a124e84838ae8fad7b
MD5 666f0b09ad84981a579ff3cfdddebeb7
BLAKE2b-256 06aa5288d24e92d0e4eab8d5be86fd8ce82335ac4138cf96ef7d4b30fe0eab43

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7980aaf9fccf263512b49b045c1bc0b87cc41aa2dce321f2db170faabeb25a9f
MD5 d4536dd60a672c811a58b60d42786e1d
BLAKE2b-256 e8ca93940d76ddc0cd5f5c23113d915a1df4d4eb3e802afa7eb52186046b3e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d650636fae533a610b6b54cfc9b2ef39b968fcdc89da35e3330b582e25dd69d
MD5 50e1dee2b7f3821d2752af98a7a3b953
BLAKE2b-256 b86b64ad2f2c77cad9327618c2c1ef185edddd80ff46abaa0339e382060532ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f4ced451d1b8352bf9088404d76e7fd215d12f28fbe07cb0eba96a4dcd79e6d
MD5 46ba8a2d4c4fd83d8659a2529be9df67
BLAKE2b-256 b839c392f5a60c385ee42a231f29b738501a1284f0c400f63aa1085e6d5a81e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81b38166e0a8b5eb420d9293a2660f236d6bfe55d9130b91efb5b7575f9ac2a9
MD5 eff75f496903b66f75fd47845ccdfa9c
BLAKE2b-256 abb499f20cbec838f767545856c9fce19221e468daaac238a8d131c2af9a4c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75624b016cfb0f8b5e3227bb9fcb41cbfd22c407126e8b70425a03bd78c18fdf
MD5 e3c7aa2bbd4b5ac4a5ea4b45c5c48f4b
BLAKE2b-256 a48b91752398d3105f41ca50dd258607a3caef20922e1cbb596a39256a9c7c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74edb674b17850001afdea818431b9bec24a01235acf95d6f4352b43d69f1bbb
MD5 a1cb4dca3adc39f3216ac239fec47f5f
BLAKE2b-256 402ab59bcea7038f4af74f22607750e4e75f790625c4f1001ce7deb91b822603

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9d8fefe5f121b0db326fae8db391914ede9428abf8d56331c95d4e6391c81dc
MD5 c1a4cf456f522d1fd663dc1e8d9dd551
BLAKE2b-256 6ab4e72b4f2cce73bcbea0384ac193e3a79e498a1c0397382fdc63fc0bf2c53b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fabc1adace39c5265e442972aedbe8fc8eee303af0a2c71e6af79f3e6d243fa
MD5 5546296b9d2f5b347a61b317eb782f9a
BLAKE2b-256 ba9ccfa89e3504426f5bc7bbe46a978d1b67581887bd5c398da0c450ea3950e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6481dcad2849d663c1e06176e9b384eef21c88354dedf5665d505e979517ae0
MD5 e643cb82d5c3e3929c6b2147e55dbbe9
BLAKE2b-256 c48985e7e1925a427dcfb1fe29e88a917ebcfee57cb9643ce79958ffea152ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 512a34ce585f2aa8fddf8aab5d72945fcb0f0d82af7d9c90e12284cac1ef2685
MD5 55f78b2795df0319a50eb4e2d7fca99f
BLAKE2b-256 7fddb28f4cd5d38c69018683572bc36c2421fbcf79ff848ecb4ac8297a647956

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 03762fb7e8a2efe7ecf4b57e1f13705623b55c71ce4a125dc88db160020bcf53
MD5 80fa0ed7c8ee7ecf6821ddc6e0259ec3
BLAKE2b-256 38c8661f360b5f8f5ab4c29ffc598b08a390579ba27dd88e59a5d13139544e2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 237.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 947df32089ec2e7476883097535450f471e4dc8c766d84b1b449748dd89712d8
MD5 71d1afdf69910bb1a08aa8e31296a136
BLAKE2b-256 f47a85eb2489a8efb5aecfd04ec8ddfe340ea7149862696fcd74c4adfc4df65d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 232.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f107d38c544a84cecc29b61bc5376534f981ed97f2cfd3d8883425e5b9d41136
MD5 2086c6217aed52bb1ac3481d0cb54b0a
BLAKE2b-256 e6a4ccd8888c3d97731c9472927be75a6cbb9c0be41aa3b07953f31167ff015a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b5f1e6a3957ac4c9b184ebfe153514ac66106ad922dfe1849558a1b09e362b4
MD5 973cc4b9481faaecdaa7874965bb1cf2
BLAKE2b-256 9301b193422bc8035b8373505914413ae9b8e512071a24fc8780b5d45998bc01

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1804b8d22cfb0ff38d76127673fb0426c7f2a7be350a4828be0c4a020b7d3fe6
MD5 d73c621f2bd94f32865f1c8bc03ce106
BLAKE2b-256 700a41482ef03a300ab002d11ec389f46e2097ddca673c882797bc88c49acf3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb02ba75513cd2b5e5a2f1392d622c200fef0fd330048f67c272352dc2574ef9
MD5 63b9c558293aadbb18c414a7695fdaa2
BLAKE2b-256 7d2e0257ed8233b5d38fa2f0eb7810f12ec1131b80d23927f5df373ed6af4a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4b40a9b4ac313e21453592d39ac05d903358c2b5abc88c3cfe99ee87c869d25
MD5 e0ee5f9ef4c79c30a573dc912fb51f7d
BLAKE2b-256 22b8f0724f11e5271e0b8e77ef9836cc55c7a636b9633f3a58bd367fb1486bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fece0c7cde2a2c60340602c8d6d0664e9f222a8c08aa6e62b216fe583db8e79
MD5 a3eac243b8648d820830d3d750926324
BLAKE2b-256 130a0e7ccff7ee652e90e9907bcc9999dad79078985eeaeb7922d04059e0c4ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7715b10f0c9ef3c016f0e09212727d9f2006787659c17c900a68f9111ddd1d79
MD5 e1ad5bc90c841526c5db67e28de05a43
BLAKE2b-256 a11f02b8282e2006a47cc0946f1bd7321934def98fbda93fa977c397b74d0a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04cd45c63a4d657c6e6a61082726a9e578f4bfb01ef23ee8706f93c6eef56d38
MD5 d0a9ac6f1114d0253809c3592fa0e04f
BLAKE2b-256 455beab7717ed4b0ad23e29c84d3eaa2cc3d190279dd0caab3d5c091a25da877

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4129d9fff6f60f8c1951d469204dc21df82622d35e52e263970cfa3e60586136
MD5 583f12b55011736871c348f6a484b9ec
BLAKE2b-256 e358cb76a4cfb5d9fe43b1f8c56229fa08d8f2d3f6ecb51dcccd5a61f9ca498e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35730a44fddd8b8ce763cb13827f6e3f28b5a6145f5e0eb9096123cdf0fa9fee
MD5 ef0ebd3880e3013560349e7edb714ca7
BLAKE2b-256 4ea3502ad117ea9db776a7986de800b2a0abbf28d3ca53b91266f7bf8c6d86c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d8bf0613251b60a0ef46e09a3c98304fa62e06fdf21d753b9fbd579e8960c5a
MD5 2effcc1b5c97dff51eb987ebed67b691
BLAKE2b-256 00984967702d6b770cc337f7f38e30d5495a05f81781283cc1ffe558d35d1688

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 26888e07467544d7bbe28485bc65467cc5e248421a4e97e02e147522e29a78ee
MD5 b39f3f22f47c59d49de4e4ce10177ae5
BLAKE2b-256 a6087249c2164ceab4ab35b5c700e53643dc6cd017366fecbf802a2ac3f920d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 237.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 951332306f1e874dd682b1c97f1a7a960ebc39cd1199c3903fa901cbf9ae8fa7
MD5 23dda96e211c4ba1ea2678509ad1d04a
BLAKE2b-256 0049621ae2923c83dd271a5ef64624353847dd029b96a8f294a1968e63c47092

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-win_amd64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: fastdigest-0.12.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 232.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 abc724fcbafabf4ed9458747b39277965d5b78aca392938784981df701b85f8e
MD5 1c60e987fabe1a334536d17d8d337692
BLAKE2b-256 e27d9dbdbb03a4c5e458a9a89b2c03c8564d5e0650f9d9fdcce5daeffac3d932

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-win32.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b71be902cc2810ea4f1b7b47314302fea7ad7f73e7361c4ec536464e2537e658
MD5 a8a8de779631bd835d3f74bbc2d7ae4e
BLAKE2b-256 64bea5458eeb58e41f6b1e73458d089695029673cdfa42161137bb5fe321b6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4038e84e66fa942630c2275c25d42a35cb1973d1be5c3e116dc07c5b8fa4dde6
MD5 da38e0944518b0b6a575018ca6fba093
BLAKE2b-256 b534280e65790d87389bc0c75e6764f87b04022f402d1d22738a6b3b0bb3b4bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cae26d474d7fb0d8de6acdd2cfd8a002f50693a8787fd2e911154ed7b8a7bb7d
MD5 9b91083db11a4b3e4cee6d7bbcd18f6f
BLAKE2b-256 6bbfc787097bf0ff96eea9ad53d33067cc784d11334822bd016d1b7d816800b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4eaafd25096000b1ea94d6c536a4750fa56899ce01d98cfb45d8bc8854fb005
MD5 65c568f42c83d47100f4a27f11fd75d6
BLAKE2b-256 ba542f6ce121d134ea1da7b078f58dafe275a7e1149b2616384fe27208930a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ece9ec99083e60d5e351200bbff026a838be2bad2fd010aa01d5626ebbe6714
MD5 f6d37c9622351e6c8f485536b520bd8c
BLAKE2b-256 4447c89819b1372c8bc7caf4c309a5631c372072f8ce395a94c306782cd569ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9b46ef3e48e3426b9f71375ab36b11e5484546fe2cfe3da0881caf647c77512
MD5 46f7d6d8b6c13572b0cb1c6b04f44bf0
BLAKE2b-256 78ea8d3d00d8c897480a204e5c9de3e312b04a866673043f8d607d18fd2d55c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c594845fdb3eefe73b5ad226091706c1fb488a2a9707ca04a46366f812ba08a
MD5 404cef9bf800ad7af1e40a2f6e154e15
BLAKE2b-256 418047d3a4981fe5863202bddb3b3842676ffc99579e91571dc16feac5c3cdc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff71ea972d6faa4bed0c4f794a76480de1cb00aa47f204984378e5a78f59bf12
MD5 6f06dd20d2aa7b45476541a2fb5a77b8
BLAKE2b-256 ca26a58da0903ed358acc58681e1a63da2e4918c7e4f21a68363a9c72a53f5b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55f94223f96ffe42a69191a0a331d169c66012998030b05f652ee342c95c3ca5
MD5 55c21dc8c9b1e43762db2b31ea2b2c2c
BLAKE2b-256 a970ac59ed9fe0ceee059dcc3305f9787f91adecd2f3982712552a6b711eed28

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6d638519dacb23b3d1498c2c5fc6ca0c1f82a61460c615224cdcdfb4ad59218
MD5 3bbb79752efde3c647da87ef2d82d0ef
BLAKE2b-256 617f569dfca004261b5adc0fae8f5be05d1283497d182461c1de3b7de0421119

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 27f24bccd5d84f04a47380cfd85a0da2a870e20950db30e3e67a5906d3fea604
MD5 627c1d91da38760a86bc064902eefe0c
BLAKE2b-256 2e798e6699a5de0e2791c0825dfc2b030d0dc73057f44f29becdeec92b6bf404

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 167673f32f3bcc1553f09478812a9d4c29179b90a915b95b83e565a979cb6527
MD5 5ae6eb8493fac18560b94c7950bb5b36
BLAKE2b-256 143b8753dfd15c53a3c6dc0095bac29c98cd7dae070d7df247a44daa1e46e456

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c514f8f3a2fa5f534c12e97490f01ee4e1e4ef2634f0dc379020c9ccde01b1f
MD5 4d26ba8470295952b2252558b0b641e9
BLAKE2b-256 fb94c1c3190becb1227c675392dd9f19b9ed85af6006617a7f4af17fb1f188a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08ff82fd53b033b591eccb27c57955c335e55ccaace92dbfda7d2476e2b8106d
MD5 c1443fafc8d4ef777cd3927d2b1b00f8
BLAKE2b-256 3741e69f78d052637808e7070d36f6f7a7f28b7f2c63188aab76553d2a283968

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4ab9f14e05ae7b823b91178d3dd821cc4b3d4724aff558dd5c4137f4ac56c53
MD5 6d2370e71dac106d3f9c9f07822da400
BLAKE2b-256 75d78b31f9d098a3b3b1934c1713737f266c53496e85904aab0031e6812ead34

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cbe6c12fcfc7347dbc5cf8e78adf7b5f3ce52a577b0b1171139ae5cf7423c7f
MD5 8f9fcfbc3c50fa7b58cd50ace22eccb1
BLAKE2b-256 47679a218840ae0656210743d531117105d41dcd42c65e7b32fe37a34ed26f39

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80348bdf1097a92a554707a3276e5d5be9e2ea5abaa6f3bceddec71cd5b02626
MD5 585676bd409e805b34b1deb6ff9f4eb2
BLAKE2b-256 6939f9cf8c8f234f4202c08319388f75570f2ccec1bc9251dbb318b421bddf7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0535412c528c388eddce56feec47564567cef8ac87e3c8ba121ba2f22eeb0219
MD5 dddde0c5e27773880e036152b970db9e
BLAKE2b-256 70f5513db51996e34f08d09624e68a1a83cfc5e4c66fd0a56db4681f063f751b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5cc21fbf4e55ec2fd4a3b18b6681a139d89d792c399221820c6330f1b69b9649
MD5 fb25b12f69373bd580713c6acf192ff9
BLAKE2b-256 2f53ca285baa29bcae3971cc32790996fa14f39e122b39b43cf5dc64452796c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c0bc5ac1a8deeb17c512adc83ecc8dd4eec3fad1eb7f8cb58cfa50c88c69378
MD5 5ee84967a626872433ad6440a88f3916
BLAKE2b-256 e5abcab7faa637274b3a8d7980d67312e3ee568ce17286e247f849adadb67877

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on moritzmucha/fastdigest

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

File details

Details for the file fastdigest-0.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdigest-0.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cdfcfd75172954ba7636d7f042027dc3a9f069661f227e8ffa835519574a79f
MD5 73ea3e0c682fb2ccc74181c48296273c
BLAKE2b-256 e51306070eda143cdff4e71715892333749b91fd2948aed62939844592e2f6af

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdigest-0.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: build.yml on moritzmucha/fastdigest

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