blake3 1.0.4
pip install blake3
Released:
Python bindings for the Rust blake3 crate
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: CC0-1.0 OR Apache-2.0
- Author: Jack O'Connor <oconnor663@gmail.com>
Project description
blake3-py

Python bindings for the official Rust implementation of
BLAKE3, based on
PyO3. These bindings expose all the features of
BLAKE3, including extendable output, keying, and multithreading. The basic API
matches that of Python's standard
hashlib
module.
Examples
from blake3 import blake3
# Hash some input all at once. The input can be bytes, a bytearray, or a memoryview.
hash1 = blake3(b"foobarbaz").digest()
# Hash the same input incrementally.
hasher = blake3()
hasher.update(b"foo")
hasher.update(b"bar")
hasher.update(b"baz")
hash2 = hasher.digest()
assert hash1 == hash2
# Hash the same input fluently.
assert hash1 == blake3(b"foo").update(b"bar").update(b"baz").digest()
# Hexadecimal output.
print("The hash of 'hello world' is", blake3(b"hello world").hexdigest())
# Use the keyed hashing mode, which takes a 32-byte key.
import secrets
random_key = secrets.token_bytes(32)
message = b"a message to authenticate"
mac = blake3(message, key=random_key).digest()
# Use the key derivation mode, which takes a context string. Context strings
# should be hardcoded, globally unique, and application-specific.
context = "blake3-py 2020-03-04 11:13:10 example context"
key_material = b"usually at least 32 random bytes, not a password"
derived_key = blake3(key_material, derive_key_context=context).digest()
# Extendable output. The default digest size is 32 bytes.
extended = blake3(b"foo").digest(length=100)
assert extended[:32] == blake3(b"foo").digest()
assert extended[75:100] == blake3(b"foo").digest(length=25, seek=75)
# Hash a large input using multiple threads. Note that this can be slower for
# inputs shorter than ~1 MB, and it's a good idea to benchmark it for your use
# case on your platform.
large_input = bytearray(1_000_000)
hash_single = blake3(large_input).digest()
hash_two = blake3(large_input, max_threads=2).digest()
hash_many = blake3(large_input, max_threads=blake3.AUTO).digest()
assert hash_single == hash_two == hash_many
# Hash a file with multiple threads using memory mapping. This is what b3sum
# does by default.
file_hasher = blake3(max_threads=blake3.AUTO)
file_hasher.update_mmap("/big/file.txt")
file_hash = file_hasher.digest()
# Copy a hasher that's already accepted some input.
hasher1 = blake3(b"foo")
hasher2 = hasher1.copy()
hasher1.update(b"bar")
hasher2.update(b"baz")
assert hasher1.digest() == blake3(b"foobar").digest()
assert hasher2.digest() == blake3(b"foobaz").digest()
Installation
pip install blake3
As usual with Pip, you might need to use sudo
or the --user
flag
with the command above, depending on how you installed Python on your
system.
There are binary wheels available on PyPI for most environments. But if you're building the source distribution, or if a binary wheel isn't available for your environment, you'll need to install the Rust toolchain.
C Bindings
Experimental bindings for the official BLAKE3 C implementation are available in
the c_impl
directory. These will probably not be published on PyPI,
and most applications should prefer the Rust-based bindings. But if you can't
depend on the Rust toolchain, and you're on some platform that this project
doesn't provide binary wheels for, the C-based bindings might be an
alternative.
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: CC0-1.0 OR Apache-2.0
- Author: Jack O'Connor <oconnor663@gmail.com>
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
CPython 3.13t
Windows x86-64
Uploaded
CPython 3.13t
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.13t
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.13t
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13t
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.13t
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.13t
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.13t
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.13t
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13t
macOS 11.0+ ARM64
Uploaded
CPython 3.13t
macOS 10.12+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.13
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.12+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.12
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.12+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.12+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.12+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.12+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.8
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8
macOS 11.0+ ARM64
Uploaded
CPython 3.8
macOS 10.12+ x86-64
File details
Details for the file blake3-1.0.4.tar.gz
.
File metadata
- Download URL: blake3-1.0.4.tar.gz
- Upload date:
- Size: 115.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09b2c66bc2c797e9d783521ec22b1e9a6c74e3ddb98bdd0dcd4fcc2213fb27ec |
|
MD5 | 6d255813d78e6d0c3133b3f5fd9d7640 |
|
BLAKE2b-256 | be12c5886424124b2a70838731098c1cdefccaeea06c03b4094fc8aeee938069 |
Provenance
The following attestation bundles were made for blake3-1.0.4.tar.gz
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4.tar.gz
- Subject digest:
09b2c66bc2c797e9d783521ec22b1e9a6c74e3ddb98bdd0dcd4fcc2213fb27ec
- Sigstore transparency entry: 165181951
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-win_amd64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 211.9 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95b2223177be6e269ab5f39bf1f2c186dc4852d546f15500bb7dcc114cf681f0 |
|
MD5 | 1c24b4334d104d3e12cce9b71f0ec5ac |
|
BLAKE2b-256 | 8386f27f21a589e7d45a578ec8c64dd6e7a0c6bc5472f72c8897b41166952438 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-win_amd64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-win_amd64.whl
- Subject digest:
95b2223177be6e269ab5f39bf1f2c186dc4852d546f15500bb7dcc114cf681f0
- Sigstore transparency entry: 165181973
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-win32.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-win32.whl
- Upload date:
- Size: 227.8 kB
- Tags: CPython 3.13t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00605aa59923205c6a4f21131840840eb2d9a754c59b163357d890566755b97a |
|
MD5 | 16e47b8918220ad243e5288a57cb5fd8 |
|
BLAKE2b-256 | 5c38fe0df3bdacbf2bca06f1aa8132cb7a73afdf1f2372336b0c57f751a2fff1 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-win32.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-win32.whl
- Subject digest:
00605aa59923205c6a4f21131840840eb2d9a754c59b163357d890566755b97a
- Sigstore transparency entry: 165181974
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 537.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8e89c286ee110b2e325b179954eb2176d4a6315caef2eb8b44bcac7374da2b0 |
|
MD5 | ce534b75516ff6f733eba48ed54db57f |
|
BLAKE2b-256 | e3383fd5509dabaf63befa17691b74ec851f62975028ce66acfa9c8767ee2194 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-musllinux_1_1_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-musllinux_1_1_x86_64.whl
- Subject digest:
d8e89c286ee110b2e325b179954eb2176d4a6315caef2eb8b44bcac7374da2b0
- Sigstore transparency entry: 165182046
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 528.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e53f76390144272ecfe34da0466e1df66c3252e4e8a3b44b12d75c8acd393397 |
|
MD5 | 35829b73bf69d859db3999c2ab448f23 |
|
BLAKE2b-256 | a108f48cb923bf587501114d2b3c3003bc7c0b71e70a9853e0a4f1163db59fb7 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-musllinux_1_1_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-musllinux_1_1_aarch64.whl
- Subject digest:
e53f76390144272ecfe34da0466e1df66c3252e4e8a3b44b12d75c8acd393397
- Sigstore transparency entry: 165182001
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 375.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 785ef236f8da4ab4f233d02c403fc1bc6eab093edad1ca5903dd9dbb2b1c8e26 |
|
MD5 | 3aa913ed6ddfab467d3e8a3d033db1da |
|
BLAKE2b-256 | 2dbba6250b45bc4c63b341486c8dca9d5d7b1a611b78a41d9497afe871809ec5 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
785ef236f8da4ab4f233d02c403fc1bc6eab093edad1ca5903dd9dbb2b1c8e26
- Sigstore transparency entry: 165182043
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 399.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1509d898c7930451720f3667b1f733434db1090f295b6d947f88140face1c596 |
|
MD5 | cc817c0e7334a91832082cd5157abe08 |
|
BLAKE2b-256 | ff3bd9fb339e4630c9004b3ce8b261c4f7437f65f4ad52737633d0622ea23114 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
1509d898c7930451720f3667b1f733434db1090f295b6d947f88140face1c596
- Sigstore transparency entry: 165181994
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 421.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e5f23d483a0e22a46991031a659cd65e58a84c2b737544e5a126fd49ffece68 |
|
MD5 | 9a6f37c04cc5e0176445d11299c7190d |
|
BLAKE2b-256 | e146a6093772bc95cf9a763940a5a199d27b1df41fcb2b319223b9b615d26c94 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
4e5f23d483a0e22a46991031a659cd65e58a84c2b737544e5a126fd49ffece68
- Sigstore transparency entry: 165182080
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 436.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c40e2badab95569681759273013ea19349c438dfc3c50a5d2e5c88e1b3879ba5 |
|
MD5 | e0b57cb76f73c33872e170e10f74a733 |
|
BLAKE2b-256 | e9430d889818250121da2dc794501cdc741bd96916c335876e559594f047df6f |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
c40e2badab95569681759273013ea19349c438dfc3c50a5d2e5c88e1b3879ba5
- Sigstore transparency entry: 165181991
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97134b7c407e6c4ddcff1813577763b4e370397f9ba20cf0db3d0fff13b4edf5 |
|
MD5 | 448801f226c18f909d4485a2d42bce13 |
|
BLAKE2b-256 | 72a4ea5566e8d4244e0a93a1619c7144bacde1432d9f14df6c00d30e7691d8b5 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
97134b7c407e6c4ddcff1813577763b4e370397f9ba20cf0db3d0fff13b4edf5
- Sigstore transparency entry: 165182048
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 361.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54d792827498d664b4e0687ca35cde8bbdc616e6766421378179b89914a65a6e |
|
MD5 | 05d718988421b7c67af49a9013049878 |
|
BLAKE2b-256 | f4ba40ba531aa6edac47dde11de8c757080134e528e2f69612a8b45ed172211c |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
54d792827498d664b4e0687ca35cde8bbdc616e6766421378179b89914a65a6e
- Sigstore transparency entry: 165181956
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-macosx_11_0_arm64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 318.5 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 512c7515a42398a5b01d758c53e315d295a1403b09786d9579d7f8dba4907865 |
|
MD5 | 43290834bf8aaa5e4bac648f8c689e98 |
|
BLAKE2b-256 | ff2e5a5b648c1c11c5163a3b883ab398bf42852fa4df3ce8fe23623bfd9bc92b |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-macosx_11_0_arm64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-macosx_11_0_arm64.whl
- Subject digest:
512c7515a42398a5b01d758c53e315d295a1403b09786d9579d7f8dba4907865
- Sigstore transparency entry: 165181971
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313t-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 337.2 kB
- Tags: CPython 3.13t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbc00208e9ebd4595290a684609a7a0557ca892f28870f44df4e433d4758e9b8 |
|
MD5 | bc191dda3bb76952a5557588fe3d608a |
|
BLAKE2b-256 | b873544a8cab5601f2a22765431c7a3280f3b9b15e99f731eeec1040ca7c929a |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313t-macosx_10_12_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313t-macosx_10_12_x86_64.whl
- Subject digest:
fbc00208e9ebd4595290a684609a7a0557ca892f28870f44df4e433d4758e9b8
- Sigstore transparency entry: 165182070
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 212.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c6477a4689b374e846fd5330839c0d27d932fa62c2d2d6b731a28798d0348a0 |
|
MD5 | 3de11fc5246c6beaecf536ad14280e75 |
|
BLAKE2b-256 | 54bfb32aaf49d3544c4ed4431f79c1e7466b7522db6d28aa81f42bcbfc6e02bb |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-win_amd64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-win_amd64.whl
- Subject digest:
0c6477a4689b374e846fd5330839c0d27d932fa62c2d2d6b731a28798d0348a0
- Sigstore transparency entry: 165181993
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-win32.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-win32.whl
- Upload date:
- Size: 228.0 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b514764be91cce5825e1a3dd393004a112f8acbf1c782aaa43c057c40837a01 |
|
MD5 | eeec35d1398c534385e6ba1345ad429f |
|
BLAKE2b-256 | e078270e36726bcc7061f546c8505c8f8282044c75058bd1faa7885d72a71684 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-win32.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-win32.whl
- Subject digest:
8b514764be91cce5825e1a3dd393004a112f8acbf1c782aaa43c057c40837a01
- Sigstore transparency entry: 165182041
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 537.7 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e93d952635a96225dda9f0b94bb115a7f1c1777db38f8a49cb902bf9433dd436 |
|
MD5 | 5612cb0eec69a18c0cc653c93725cc4e |
|
BLAKE2b-256 | a07c45b8d25c7a2dea9d6c32519b0a1992360c104e344faa8c318cec886630c8 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-musllinux_1_1_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-musllinux_1_1_x86_64.whl
- Subject digest:
e93d952635a96225dda9f0b94bb115a7f1c1777db38f8a49cb902bf9433dd436
- Sigstore transparency entry: 165182015
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 529.2 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a760153f4e66edd6214df0a69e7eb90206c8ddd8083734ac430e852453a58e06 |
|
MD5 | 97ebed334124852668955ddf00f35678 |
|
BLAKE2b-256 | aea14f06d90f4eb5ced1d93997e3e35697b5fded8b7c49d83d753e3531aa5af6 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-musllinux_1_1_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-musllinux_1_1_aarch64.whl
- Subject digest:
a760153f4e66edd6214df0a69e7eb90206c8ddd8083734ac430e852453a58e06
- Sigstore transparency entry: 165182008
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 374.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fedc326cac4476d2eab88413a4bf56e491040ae11ea98ddadaa5487cecda9b93 |
|
MD5 | be4a41b344adfabde7ad282bb6a609d8 |
|
BLAKE2b-256 | 9df9be0f55d672493e5a891bf40388a6eaa32bea50e78ada8d887fa53b8aaf75 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
fedc326cac4476d2eab88413a4bf56e491040ae11ea98ddadaa5487cecda9b93
- Sigstore transparency entry: 165182065
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 400.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41795136af622eb113247ccb09819e388948fc0aa052da02448c9f477c02721f |
|
MD5 | 9980f42b4ca37a41fcbca70c05607d43 |
|
BLAKE2b-256 | 2822f8c4c5a9a2277983cdb8889bc54b39d97c40459c101f357df6d5b87511e0 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
41795136af622eb113247ccb09819e388948fc0aa052da02448c9f477c02721f
- Sigstore transparency entry: 165181969
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 421.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d09816c855043fe6a498108f6e0ec0ced2d5c1e65bc8a8c24012d773ac4e3208 |
|
MD5 | 604635d0466f59281b675b69dd493c99 |
|
BLAKE2b-256 | 70ed350f7559fa770e7c0f7c4235f4e957da5fe7cedd9b5793cca6d0dceef5ab |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
d09816c855043fe6a498108f6e0ec0ced2d5c1e65bc8a8c24012d773ac4e3208
- Sigstore transparency entry: 165182075
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 436.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2a0e30369b1e9f24f81c6a666e347309aa746e85a7e986e472156995dc3751c |
|
MD5 | 5f0dad7816e1627afa86298b449b3dca |
|
BLAKE2b-256 | 95325c69a95f35ecfe1e1b18ac7932de66e024fe4e130fe8eb6f0198f6a736b7 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
d2a0e30369b1e9f24f81c6a666e347309aa746e85a7e986e472156995dc3751c
- Sigstore transparency entry: 165182059
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94cc36d0e69dc118db3c288c196533603d0f3413017070b455fe63ef0075dca2 |
|
MD5 | 700c490060540337673e081e2e6f9096 |
|
BLAKE2b-256 | 0f66fd85ff8f401afae02ee9ffa146949816098afa8ccdf39ebff99e0f3b1d8a |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
94cc36d0e69dc118db3c288c196533603d0f3413017070b455fe63ef0075dca2
- Sigstore transparency entry: 165181979
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 362.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d97685ff806592fa2cb35143a3bdb255db58385cbf9c1a3222b4b127ade1714d |
|
MD5 | 7e336af9945bf4cd14cd071017d0a212 |
|
BLAKE2b-256 | b1ac73285622f6d0515da4854c1e65a854042d5842bfa9d7e4a164a8176742d9 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
d97685ff806592fa2cb35143a3bdb255db58385cbf9c1a3222b4b127ade1714d
- Sigstore transparency entry: 165181976
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 318.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5404a99dcd9d5974ec09a6cc3e66e730ed7b8f65f353dea88b614ca4ed8dcb02 |
|
MD5 | ff7aacb673249fc108883ff9e00669af |
|
BLAKE2b-256 | 9e53a9100372b7a3fec2a9100e9df097a583312a478b792331abd1dcb6a97364 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
- Subject digest:
5404a99dcd9d5974ec09a6cc3e66e730ed7b8f65f353dea88b614ca4ed8dcb02
- Sigstore transparency entry: 165181965
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 337.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1845c2c8a611c30e43a88843f202663ce35a3d4d61a28064bf99a9adf975ab74 |
|
MD5 | 1559ac905ed4c00ce3a6cd48cce34185 |
|
BLAKE2b-256 | 45193b91742911aed0ccde857c2b29479db786602d5894bffeb5cf8c90cd4c0c |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl
- Subject digest:
1845c2c8a611c30e43a88843f202663ce35a3d4d61a28064bf99a9adf975ab74
- Sigstore transparency entry: 165182028
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 212.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af18fcd2a37aa51c24cedbb82f4934f39a9a4ea11a84d34c1ab63df94a28fdd1 |
|
MD5 | 2f5e24a3b8744f65a87ea62e9676e1b5 |
|
BLAKE2b-256 | 2844d70c4782b4e950887d9c5d77384fb54e84bd3a38472a6b6dc6792c9bf5df |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-win_amd64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-win_amd64.whl
- Subject digest:
af18fcd2a37aa51c24cedbb82f4934f39a9a4ea11a84d34c1ab63df94a28fdd1
- Sigstore transparency entry: 165182023
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-win32.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-win32.whl
- Upload date:
- Size: 228.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78f4724d0a9f6bebd0fccf27e4afaed1ca4b6645740ee425d3621defe27c4e64 |
|
MD5 | 237fd02ff3578aab76230ba31c78b553 |
|
BLAKE2b-256 | 1fec3e57c820c0f7ff78a7b4ea2f640d0cf2fe37053615e41314b5c8b881cd6e |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-win32.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-win32.whl
- Subject digest:
78f4724d0a9f6bebd0fccf27e4afaed1ca4b6645740ee425d3621defe27c4e64
- Sigstore transparency entry: 165182061
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 537.7 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7592124471fb1c8c67f94776c480743c182aff92952ceb5f5c793a632a1a1436 |
|
MD5 | 467e7cfeee01c8dbef78ab070224d61b |
|
BLAKE2b-256 | 50b22b196b9cae06f986b03832f164d58ef9ca039d7ed6ec4f8549f085aab85a |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-musllinux_1_1_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-musllinux_1_1_x86_64.whl
- Subject digest:
7592124471fb1c8c67f94776c480743c182aff92952ceb5f5c793a632a1a1436
- Sigstore transparency entry: 165182053
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 529.4 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1524b1cabb034f1c9dc2621f3c06c10d2a4608391cf04e5db182aa5d7a82fdbe |
|
MD5 | 2829680dfb70c855b8f889f568a003e1 |
|
BLAKE2b-256 | c950c1280aee0e2f8f297e49ce3c131e03436cab1579a2efa52e825851a27b1c |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-musllinux_1_1_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-musllinux_1_1_aarch64.whl
- Subject digest:
1524b1cabb034f1c9dc2621f3c06c10d2a4608391cf04e5db182aa5d7a82fdbe
- Sigstore transparency entry: 165182042
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 375.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb2689cbef663d823011eeddec29c23d1c1f773ac867bfa854fb0590771a309d |
|
MD5 | c5861074dd9e3c05c6cf5230d72a091b |
|
BLAKE2b-256 | 2b0e35182a7cf5ee2fb8f49296f34c2880bf99318df4fccb2c294485d4bc1bbb |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
bb2689cbef663d823011eeddec29c23d1c1f773ac867bfa854fb0590771a309d
- Sigstore transparency entry: 165182027
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 400.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 222234ebea46d16ac981b0da528dd6e57e8ea37cef168e9f669894f660a18e09 |
|
MD5 | 126a7eb53cd098585ca256753900ea33 |
|
BLAKE2b-256 | df7b8d7b1fdd6471b93e3cbd287e3dcf76149ad9b8584902def9bea760eb80fa |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
222234ebea46d16ac981b0da528dd6e57e8ea37cef168e9f669894f660a18e09
- Sigstore transparency entry: 165181966
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 422.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbaf16fd19f93a2b5d2eadab82dca3161e2bf418606144df7edaf20bc38eda7c |
|
MD5 | f38555fe6ec496001f526179dba05460 |
|
BLAKE2b-256 | b66bae53e3b6e501b44ee6d1ac46bd559398755938ff0804e82707165c181c8b |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
dbaf16fd19f93a2b5d2eadab82dca3161e2bf418606144df7edaf20bc38eda7c
- Sigstore transparency entry: 165182083
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 437.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a1ab4bb7869fd38b7be2a88557d28cfe63d44b194bf2bf27e4ff08c5f2483ea |
|
MD5 | f9d103a3a16c7f8644652611809b964b |
|
BLAKE2b-256 | 7b209e2be9622f8b0803a4cc60663988087694d458b6455b879fccfed0470942 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
7a1ab4bb7869fd38b7be2a88557d28cfe63d44b194bf2bf27e4ff08c5f2483ea
- Sigstore transparency entry: 165182003
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f5888e358ae4bba094d4595e1703dfc230d96dea6924e877c42c7a98beda7b5 |
|
MD5 | 8760ee4bd92f2f3d890b16c9639975ad |
|
BLAKE2b-256 | 76263f071b2131e51768520dc04927843d868b514c33b879ec6d0ee1266ceaaa |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
0f5888e358ae4bba094d4595e1703dfc230d96dea6924e877c42c7a98beda7b5
- Sigstore transparency entry: 165182005
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 362.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc9da486d47f399ac2aba8dfdfaf60cc7a507d8434623cee8f81f47852db594d |
|
MD5 | 081b7bb587438e3eb5f743d1db0c2a16 |
|
BLAKE2b-256 | b78b41e78c884fd18d382475ad315c8b7b9d4ca9bdd656bb4322abf0652b0f9b |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
fc9da486d47f399ac2aba8dfdfaf60cc7a507d8434623cee8f81f47852db594d
- Sigstore transparency entry: 165182066
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 319.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17fb8c25d62b3dc35c2c4d59f3b2f3234814b2aa374c0b9bea3d326184bf9268 |
|
MD5 | 65d238b29704dc85455fa2526788fb53 |
|
BLAKE2b-256 | 04ba2d6caaea87f5ad6526c5411868e231d73f52e6914f031baead849a597ccc |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
- Subject digest:
17fb8c25d62b3dc35c2c4d59f3b2f3234814b2aa374c0b9bea3d326184bf9268
- Sigstore transparency entry: 165182051
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 338.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e3018d12e16faea2e08f210123a9c2e603de6c1b80b381624cffd536e1022d1 |
|
MD5 | 2611c24403ce977fd3f49d9bd4f64892 |
|
BLAKE2b-256 | c9fe77bcfdf946da8952d3338a7ecb350edd4c2469bb6fba35853512b89d8f40 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl
- Subject digest:
1e3018d12e16faea2e08f210123a9c2e603de6c1b80b381624cffd536e1022d1
- Sigstore transparency entry: 165181989
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 212.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43ebbf2af260f645eb961b045ed4e9ddcdcf3fb49744c8f2e0ba1e1c28e88782 |
|
MD5 | c1d2d94385257acf933c0d32d7fe8b72 |
|
BLAKE2b-256 | 45cf5a3e863d7e920122b0175eded2e4871971eb078bd580d8ade701c132ac3d |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-win_amd64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-win_amd64.whl
- Subject digest:
43ebbf2af260f645eb961b045ed4e9ddcdcf3fb49744c8f2e0ba1e1c28e88782
- Sigstore transparency entry: 165182031
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-win32.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-win32.whl
- Upload date:
- Size: 229.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 524ca0bf368b35d91254cbb16af5351beaee6c22a3a236d355b9471a61b3b9ff |
|
MD5 | 4eb0b1f7e41ad88492385fee464cb0ec |
|
BLAKE2b-256 | 32b02d49332700c2c1839059bb9f8153e28351f602bace986b851db44cb4b306 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-win32.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-win32.whl
- Subject digest:
524ca0bf368b35d91254cbb16af5351beaee6c22a3a236d355b9471a61b3b9ff
- Sigstore transparency entry: 165182025
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 539.1 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d48407451ad537f7a8d9210a8468a600e453662832c6a60b99405d9d792c97e |
|
MD5 | df8936f071b9c1f83d9e7c3880c1d0f1 |
|
BLAKE2b-256 | 8927766c063e92f0eaf00ec0bbe7897e41f75e6119364016b3c329b426a83f2a |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
- Subject digest:
1d48407451ad537f7a8d9210a8468a600e453662832c6a60b99405d9d792c97e
- Sigstore transparency entry: 165182078
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 530.7 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5447a5731ee408809a5e2582a3bed3069b570046017ddddf9942d71c8afdc2ee |
|
MD5 | 83c3e8174cdf84d688272f8d82bc63bb |
|
BLAKE2b-256 | d0486e692c16170315605a0c84454cfd37cdb135df568f1ecd41eed4fdfb8059 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-musllinux_1_1_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-musllinux_1_1_aarch64.whl
- Subject digest:
5447a5731ee408809a5e2582a3bed3069b570046017ddddf9942d71c8afdc2ee
- Sigstore transparency entry: 165182019
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 376.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fae37ec23f25fdbb8c2a34dd9b309a8f9fdce9ff7685cabb1fde7e16f012cf67 |
|
MD5 | 19b8115e0bb071d5232101e7c8401a8e |
|
BLAKE2b-256 | f0d66377bd058a0e7aa7c33debcc8370e6c9769b6c6fa2f4a9583f07ec91d50a |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
fae37ec23f25fdbb8c2a34dd9b309a8f9fdce9ff7685cabb1fde7e16f012cf67
- Sigstore transparency entry: 165182045
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 401.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3087e019603657cda6d5e4b8cb250d6cbcf935e8230a31291eb15d3ee8a341e |
|
MD5 | c6a30280e87c7b47e967c7c046a9ca88 |
|
BLAKE2b-256 | 96eb59506dfacf7f70da30e71694d4e0ac16516e4ce2ee57f02051668251aa71 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
e3087e019603657cda6d5e4b8cb250d6cbcf935e8230a31291eb15d3ee8a341e
- Sigstore transparency entry: 165182077
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 423.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 407327ed661ccb943c4361fb647daa6264cc6bdc52f29de56e4dc62c2132e287 |
|
MD5 | ed570c29dca3e642f7963c5ce2446d5e |
|
BLAKE2b-256 | ddc18c4fca8aec7aa53b850ea8fd619e17513f9a4365ed472eeb100000a7af94 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
407327ed661ccb943c4361fb647daa6264cc6bdc52f29de56e4dc62c2132e287
- Sigstore transparency entry: 165182006
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 437.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87794eed0b25de3713d57faa82a5e3257d0b51cba7831f7de98884b73d4c41af |
|
MD5 | 240dcd593fe5d45f080bac8c81cb220a |
|
BLAKE2b-256 | 1e2a609a814a57a7cd8ee2e89b2b54e00503939089f47ac1dd2a9bd01447403d |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
87794eed0b25de3713d57faa82a5e3257d0b51cba7831f7de98884b73d4c41af
- Sigstore transparency entry: 165181986
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 368.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3d1a39fed926d8b6fb0efdf0295297ff92246e1c28e5dca7f2d7185ad4593be |
|
MD5 | d6671502a13cf3ae4fab04b7e01fe1dd |
|
BLAKE2b-256 | e73a18e3d7be5d22cacb058ad54cb1d2f8aaed2568a814589b5de3ed5953382d |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
a3d1a39fed926d8b6fb0efdf0295297ff92246e1c28e5dca7f2d7185ad4593be
- Sigstore transparency entry: 165181953
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 363.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7240572bfd4e3ecd0ab24144551053c02eb3995e00342fcb40eb25619678e556 |
|
MD5 | 73ed027a7f10eb5d1f6eec279352e88e |
|
BLAKE2b-256 | d54baed0dfc518c15c0b9c07dce5d8788c9b99ca5bcc7d0fc0d6f168bce1488d |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
7240572bfd4e3ecd0ab24144551053c02eb3995e00342fcb40eb25619678e556
- Sigstore transparency entry: 165181963
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 322.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 105730671403972fb5292dcaff0b78881075f583cd7b5e1589919b0b0f93f86a |
|
MD5 | beb8065b0e70e66825f7a3d6a62668a0 |
|
BLAKE2b-256 | bcb6b1160774b4329bb76ac001e757e3867f50a7895b6c25620c3943e90beba5 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
- Subject digest:
105730671403972fb5292dcaff0b78881075f583cd7b5e1589919b0b0f93f86a
- Sigstore transparency entry: 165182030
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 340.2 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe01393d535a7ddea39f0332453434fe214fa135e05e5b792a99dd7782acf429 |
|
MD5 | c3c1fe1d5e6bc9b13f265c1af063a629 |
|
BLAKE2b-256 | bfdf5628bda42799552c36b6bfbb6348cc72f340a8c4524055078aa7e7602c39 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl
- Subject digest:
fe01393d535a7ddea39f0332453434fe214fa135e05e5b792a99dd7782acf429
- Sigstore transparency entry: 165181975
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 212.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5624985511c1e209aede209142c09c81a4163cf230f218aff09f04ddd9e773a1 |
|
MD5 | ddfad9b5238aeef93f2a22db5d5d87a6 |
|
BLAKE2b-256 | 33328d69da9a2892a1f2d84e9287569ab2171fde685a80417dc186784e8e1e31 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-win_amd64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-win_amd64.whl
- Subject digest:
5624985511c1e209aede209142c09c81a4163cf230f218aff09f04ddd9e773a1
- Sigstore transparency entry: 165182017
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-win32.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-win32.whl
- Upload date:
- Size: 229.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8faf42585fbd6ea189ee15b3d148f64dd3a8ced5aa26bed90a7438a7cb7094a3 |
|
MD5 | 3941d60422a1fc46b0d0e6c147bd8ac8 |
|
BLAKE2b-256 | 96eb6296a02d27babb5232a8a57d700f8b55eabf3dd1205f15f84a18a474cead |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-win32.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-win32.whl
- Subject digest:
8faf42585fbd6ea189ee15b3d148f64dd3a8ced5aa26bed90a7438a7cb7094a3
- Sigstore transparency entry: 165182012
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 538.9 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e83ddd16ae0a3641ba6d7b0ed582f0b7fcdefbf95638e82ee2480ab209342d7 |
|
MD5 | cb50c37f3e59de940fd2152db89fcd7e |
|
BLAKE2b-256 | c873c0c55887a1bd1182dd20e5a49b05c26445a52be470a18857112f303118b1 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
- Subject digest:
8e83ddd16ae0a3641ba6d7b0ed582f0b7fcdefbf95638e82ee2480ab209342d7
- Sigstore transparency entry: 165182044
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 530.5 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20e90f313c524bd98d68f3d1e0495ae00e570a164ee9a09ac21ded49c082c276 |
|
MD5 | 75a7577a51be7cb877e093b14eefec20 |
|
BLAKE2b-256 | 98a02964c0409a06563242f3936e6d098aa3827ba8e2dd83bdb3ebbaddad3e84 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl
- Subject digest:
20e90f313c524bd98d68f3d1e0495ae00e570a164ee9a09ac21ded49c082c276
- Sigstore transparency entry: 165181997
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 376.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 846895cbe050c8d0ba94c7a8df4f89f023db82e5f8d35c76def177e410a1ba97 |
|
MD5 | a356a217fd58ef24beadc19ed041bc51 |
|
BLAKE2b-256 | dfb400cdde856d34620aeb93eda0d72dc3c18e8ddd90063f17f4e2bde201a684 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
846895cbe050c8d0ba94c7a8df4f89f023db82e5f8d35c76def177e410a1ba97
- Sigstore transparency entry: 165181954
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 403.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 407d3a527853d662f79fa99b4ec88478fc9b800420194ed495a961635d2ab77e |
|
MD5 | c740ed8d449a92a6a5cb43b853a3b7ff |
|
BLAKE2b-256 | 405557052587e665229841341e726181be14de8e73fd6063c5b0a81bce8110f4 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
407d3a527853d662f79fa99b4ec88478fc9b800420194ed495a961635d2ab77e
- Sigstore transparency entry: 165182067
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 423.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea806c10ad6d7c83f3543a22f31fe4892896a1daf58f9e4e3d76ae25ec469a3a |
|
MD5 | c76438aceafa10ddca9e93ff3efa6544 |
|
BLAKE2b-256 | 15a6c96f052f7c06f06c24818e6d220038facd06cf519e1ade4abeffaea49756 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
ea806c10ad6d7c83f3543a22f31fe4892896a1daf58f9e4e3d76ae25ec469a3a
- Sigstore transparency entry: 165182058
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 437.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a99749c02d76b7aa5d931c3b80528ef6a68149e6bef424769dd5e461d39a4f0 |
|
MD5 | 52f4f0c65d8717104c013e74189a5a1d |
|
BLAKE2b-256 | 23bf120e493f29f07f52404510792f449f7cb00ebb72c53f5ac0e24c0c7da3e0 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
8a99749c02d76b7aa5d931c3b80528ef6a68149e6bef424769dd5e461d39a4f0
- Sigstore transparency entry: 165182074
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c00c483e3d86c2587b7c1e4c65f519fd8745a0963cd6e3630d1bf24692c57fa2 |
|
MD5 | 8bc8053595cf338eecb86fed1acb9fc7 |
|
BLAKE2b-256 | f142d1a7dd214bb06aba073bbced09b74708d190a4674c93bb9443559c52e255 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
c00c483e3d86c2587b7c1e4c65f519fd8745a0963cd6e3630d1bf24692c57fa2
- Sigstore transparency entry: 165181990
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 363.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a764b697fd1cb01b92a18240f9afd291b1f33ede3c9cdc59dd92ba87a5f4f8f3 |
|
MD5 | 3898b790ef2a35663b9e0b7fefb22be7 |
|
BLAKE2b-256 | d4d733279213865da9bb33473e38e1963207e981a59d5e2df30f78a9d319d9fe |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
a764b697fd1cb01b92a18240f9afd291b1f33ede3c9cdc59dd92ba87a5f4f8f3
- Sigstore transparency entry: 165182035
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 321.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1dbdca6def64c5fbcd7aae7403fc0e408506f91fac631efb2b604cac1bff97c4 |
|
MD5 | b0a631ca76cedcefbcf388e76595cb14 |
|
BLAKE2b-256 | a30307b9e1c2dca9ed54cd39863a7710ac7b941c0af3876a00e0b505890a432a |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
- Subject digest:
1dbdca6def64c5fbcd7aae7403fc0e408506f91fac631efb2b604cac1bff97c4
- Sigstore transparency entry: 165181987
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 340.4 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c213768763faee5348bf7622b906b47b60a31baa44ad6837f6ec7587a4b3d4c1 |
|
MD5 | 39e439bad43226b6dc8c885e48a643f4 |
|
BLAKE2b-256 | a99eaa38c7b519c08bb6ddef970e7ca68123ae9d071766dcaf6c0df7e93049c1 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl
- Subject digest:
c213768763faee5348bf7622b906b47b60a31baa44ad6837f6ec7587a4b3d4c1
- Sigstore transparency entry: 165182016
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 212.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1575c9c39632107e96d4b830d03646310d4c1eb07473ced1f68dd82c3af89d49 |
|
MD5 | 436e583f955f4b02243d7e1191f2842b |
|
BLAKE2b-256 | e65de08b9b4e7129b103c40005b7509f7ac8d7a8fb9f1956b62bfe52c5a11c86 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-win_amd64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-win_amd64.whl
- Subject digest:
1575c9c39632107e96d4b830d03646310d4c1eb07473ced1f68dd82c3af89d49
- Sigstore transparency entry: 165181981
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-win32.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-win32.whl
- Upload date:
- Size: 228.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2492bbd5f9d305c586c3addb8e247e9c4ebb6048e5fe3f6baddaca224e858dd1 |
|
MD5 | cce730b39d9a64db5612f10995d752ab |
|
BLAKE2b-256 | b2dfaf0607dff140b16ad08b48c46df359b03a7ac559ce4852d3989a0212595c |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-win32.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-win32.whl
- Subject digest:
2492bbd5f9d305c586c3addb8e247e9c4ebb6048e5fe3f6baddaca224e858dd1
- Sigstore transparency entry: 165181960
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 539.3 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0488a0f730383939bc9c6453220b15b8c2cda702a2ce626e6fd5e3add3f8da8 |
|
MD5 | 762006280d845e1f3df0e849da1a7c1b |
|
BLAKE2b-256 | 18f3b5ac9677c9c37ad0da59c34060e1ec1418c0742134172318a0390f2d9eaa |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
- Subject digest:
f0488a0f730383939bc9c6453220b15b8c2cda702a2ce626e6fd5e3add3f8da8
- Sigstore transparency entry: 165182054
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 532.0 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff0e96f61b16b365ad5bb7c6272754f83d8a59c95d3b2f70c3bb6324ddf5bc0c |
|
MD5 | bfb73197099267593d9b5830b50ce2e0 |
|
BLAKE2b-256 | cf6ec837873254042f21d062de09edc457e94a3cbff013c929596d18cd603702 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl
- Subject digest:
ff0e96f61b16b365ad5bb7c6272754f83d8a59c95d3b2f70c3bb6324ddf5bc0c
- Sigstore transparency entry: 165182032
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 376.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8241e372dfcb01ebe3947b7d5e22af1af5682fc37631153fe6ed747a603edb26 |
|
MD5 | eb096e28735ba229b60de624dcd3b788 |
|
BLAKE2b-256 | 4309af0cc46b5791767dea056507986a59c10dcba89f1c0751b5a88d7514e61d |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
8241e372dfcb01ebe3947b7d5e22af1af5682fc37631153fe6ed747a603edb26
- Sigstore transparency entry: 165182022
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 402.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77dd01c07d2f327a97233841c5c9295b3ef5ac372c5649843d413fe588bf41a9 |
|
MD5 | 7fc772f6b1edd7538b085e2d70242aa1 |
|
BLAKE2b-256 | 3ed1d511cc9b57b9e6c71360b8d2240d042f5ca77cd12cb6411a565b49fc792d |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
77dd01c07d2f327a97233841c5c9295b3ef5ac372c5649843d413fe588bf41a9
- Sigstore transparency entry: 165182087
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 423.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb866a8e0632f35fe9c8e24b751752c2df4abbaf20a36e85a76883a382ccbfd9 |
|
MD5 | 59920880a3df7c8bf7e9d1eb08ff79a6 |
|
BLAKE2b-256 | f9902d0c3172c4f22662d745eec2a74b82d0fefe5392eabaae86d8dc659ffec9 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
fb866a8e0632f35fe9c8e24b751752c2df4abbaf20a36e85a76883a382ccbfd9
- Sigstore transparency entry: 165182052
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 437.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66dbc4383586232ddc135936c1f395848358981152dcc7b94710664c21621491 |
|
MD5 | 2a8f21f1833a4909b8f983f29b636982 |
|
BLAKE2b-256 | 9a89bbbbf62eb7abed6a5464fb8e04b154bb7437891406cfe007f72f6a68a25a |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
66dbc4383586232ddc135936c1f395848358981152dcc7b94710664c21621491
- Sigstore transparency entry: 165182004
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afba60a70ac75f26fb8fb95502b80b37cab7a624daae6e1a1b952457ff0e7528 |
|
MD5 | cab4fc62b1bf512f92580c42b23ecb19 |
|
BLAKE2b-256 | ec9da17518b4f141c8286857b3bb40090ee0cd7e52267039700be90eb807cbbe |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
afba60a70ac75f26fb8fb95502b80b37cab7a624daae6e1a1b952457ff0e7528
- Sigstore transparency entry: 165181995
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 363.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89e21eb0929b1bd35867dd450c27600af42ecf1cd7a08c5496ad29baaa35cb8b |
|
MD5 | 018a26464b80c97e73f73011d258208d |
|
BLAKE2b-256 | 27335aa45d35e6a434324c89403f878645a74fe28bedec5e7c45fcccb7b9e1ec |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
89e21eb0929b1bd35867dd450c27600af42ecf1cd7a08c5496ad29baaa35cb8b
- Sigstore transparency entry: 165181998
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 322.7 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | baad3e55f7e1d8c820be370071fc80d6ed4cc7a738cbce4bc462772738869f57 |
|
MD5 | 2f06ddb2a67b124bb7adf2e5b0d13578 |
|
BLAKE2b-256 | bfa4fabeb6b5b1e44396bded0cd4f5da06c09f2dea0420988a7b1e661d5eafbc |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
- Subject digest:
baad3e55f7e1d8c820be370071fc80d6ed4cc7a738cbce4bc462772738869f57
- Sigstore transparency entry: 165182062
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 340.8 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b11bffad2c020cc0049e02990caa924cc9c8b5ab6032bf3dbd60706638993bc5 |
|
MD5 | df9cdedb417921a3f33e5126b1ed02be |
|
BLAKE2b-256 | 92c2396565a0ffc0d083cc58d3397c643efcfa8932a54494ea500e12013c37e7 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp39-cp39-macosx_10_12_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp39-cp39-macosx_10_12_x86_64.whl
- Subject digest:
b11bffad2c020cc0049e02990caa924cc9c8b5ab6032bf3dbd60706638993bc5
- Sigstore transparency entry: 165182068
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 212.6 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e55e38da0f57aa924c3125ffc98df72c36b2d212a2b7eb8f1d71169746f14689 |
|
MD5 | b0e0b8e37fcb42befa48ee69c6011b76 |
|
BLAKE2b-256 | e520e1bed960e92a88c681ed925bbbca2bafc356d0d911b24f516e076d6b5049 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-win_amd64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-win_amd64.whl
- Subject digest:
e55e38da0f57aa924c3125ffc98df72c36b2d212a2b7eb8f1d71169746f14689
- Sigstore transparency entry: 165182033
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-win32.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-win32.whl
- Upload date:
- Size: 228.1 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a45e4c5df4ce654d42897ce2d5bd7dab0a5e84b06ffcb9248ed0b537520967a |
|
MD5 | 3bdee81a621490782eab92a733d51177 |
|
BLAKE2b-256 | 78e834120fb59672ea239bdae72e1e2f58476618febdc0e58770c098fb4b7f54 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-win32.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-win32.whl
- Subject digest:
6a45e4c5df4ce654d42897ce2d5bd7dab0a5e84b06ffcb9248ed0b537520967a
- Sigstore transparency entry: 165182072
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 539.2 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27835e72adf624754f6380635111d5c17685fd8db04f6573aebb4f6442b139ae |
|
MD5 | 17fcfe2c65c3cfc6697252e16b8a71c8 |
|
BLAKE2b-256 | be03ec1d74af6fb3bceeee6a8f41dfb53e4e6bb162c96defde3bf01aa270f300 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
- Subject digest:
27835e72adf624754f6380635111d5c17685fd8db04f6573aebb4f6442b139ae
- Sigstore transparency entry: 165181955
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 531.5 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5c5c0a2f17220ad493f2a116b3ca83aae039926c0abbf520bc32b44e6edebdb |
|
MD5 | ca6cf429dd594868128be9f5ddee6d4c |
|
BLAKE2b-256 | cab3c38c40a41cd306420063480189ddfc3667deb887aeeaaa8448a5ae551da1 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl
- Subject digest:
a5c5c0a2f17220ad493f2a116b3ca83aae039926c0abbf520bc32b44e6edebdb
- Sigstore transparency entry: 165181967
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 376.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08f46c2f1c5f369f07409e3e4ff248bcb22617cd741f2224873d85982dd6034e |
|
MD5 | 34c710061c2fd33c0db8dba89848ae2e |
|
BLAKE2b-256 | 59626730edbb1b3f2c7e166d9081af7f48b92367864a39c419178984a9421956 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
08f46c2f1c5f369f07409e3e4ff248bcb22617cd741f2224873d85982dd6034e
- Sigstore transparency entry: 165182085
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 403.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2aeacc45ab0eebd91697a523e8c04542cff7d09b6a6c397d4a868f879950f539 |
|
MD5 | c230bb702885bc9d091a76c762e4a2aa |
|
BLAKE2b-256 | f828f601dc3c81f50ecc83bf4268231effaefe96688d3cb73b48522b3687627e |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
2aeacc45ab0eebd91697a523e8c04542cff7d09b6a6c397d4a868f879950f539
- Sigstore transparency entry: 165182014
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 423.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b691e44df67ce61b3573f31e4d304eeb4ffa87c4e05eb1f3f4a2a6981b875c96 |
|
MD5 | cfc55e7369bf6bd999735ad7c68df8b3 |
|
BLAKE2b-256 | a33b8d192f816909e82fce934679e09e800c2503a3ac00275ff2162760bea2e7 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
b691e44df67ce61b3573f31e4d304eeb4ffa87c4e05eb1f3f4a2a6981b875c96
- Sigstore transparency entry: 165182034
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 437.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8720b726802c534e1e53e7fb8f53cbd4ee5a052b8903934d210feeb69c6438d |
|
MD5 | b9663f58946fe4c0bae2596fdd297486 |
|
BLAKE2b-256 | e5512c080bfabd7e7d48411a02c5605b6b3eb6cd7069478287e6c4c1931d3816 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
- Subject digest:
b8720b726802c534e1e53e7fb8f53cbd4ee5a052b8903934d210feeb69c6438d
- Sigstore transparency entry: 165181958
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1c52d9492896560b40fee414c02e23e2d868a4ef280574f67049be3b66cbbd2 |
|
MD5 | 16525a7c1b474d17fa5f6c4c213e8fac |
|
BLAKE2b-256 | d3a2066b51b16d32268e1aaebb8a53c52989c1015f341baf17ede2c980b58bda |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
d1c52d9492896560b40fee414c02e23e2d868a4ef280574f67049be3b66cbbd2
- Sigstore transparency entry: 165182063
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 363.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bf7cbee22d7f9e4d60fcb9b2ae3270c40beea71fc7ee7d7d7eef539749a6aab |
|
MD5 | fde7b72fd728334692c820f4812da33d |
|
BLAKE2b-256 | 718fe383fb21e67143e4beee91b2f6efc627533cf7720c5e2778bb6a4ad8de8d |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
6bf7cbee22d7f9e4d60fcb9b2ae3270c40beea71fc7ee7d7d7eef539749a6aab
- Sigstore transparency entry: 165181984
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 322.4 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c66288e957625892303d683f7581fab56b567623f4c58bff159e8e92d042a8b |
|
MD5 | 28360b1cb1179b8d3f275acd9bc90642 |
|
BLAKE2b-256 | 6e65d006a4948ff4a26adb1b5d10212f13d7e93fe884aceffe39242f4c843513 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-macosx_11_0_arm64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-macosx_11_0_arm64.whl
- Subject digest:
1c66288e957625892303d683f7581fab56b567623f4c58bff159e8e92d042a8b
- Sigstore transparency entry: 165182011
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type:
File details
Details for the file blake3-1.0.4-cp38-cp38-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: blake3-1.0.4-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 340.5 kB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbd2782b2034021de468dcd466d732411a957efe3cf989d2f5c1e07a708a5874 |
|
MD5 | 79323caa0fa06a2efe7ae5af8ce41569 |
|
BLAKE2b-256 | 5c05414c0eef957627d55bb2eb7358db3846f2860a6c809f956a5afe29ab1411 |
Provenance
The following attestation bundles were made for blake3-1.0.4-cp38-cp38-macosx_10_12_x86_64.whl
:
Publisher:
dists.yml
on oconnor663/blake3-py
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
blake3-1.0.4-cp38-cp38-macosx_10_12_x86_64.whl
- Subject digest:
cbd2782b2034021de468dcd466d732411a957efe3cf989d2f5c1e07a708a5874
- Sigstore transparency entry: 165181968
- Sigstore integration time:
- Permalink:
oconnor663/blake3-py@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Branch / Tag:
refs/tags/1.0.4
- Owner: https://github.com/oconnor663
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
dists.yml@be7665272cfa69886a1d7a0edb9e8e4f5d424e31
- Trigger Event:
release
- Statement type: