Fast Base64 implementation
This project is a wrapper on libbase64.
It aims to provide a fast base64 implementation for base64 encoding/decoding.
Installation
pip install pybase64
Usage
pybase64 uses the same API as Python base64 “modern interface” (introduced in Python 2.4) for an easy integration.
To get the fastest decoding, it is recommended to use the pybase64.b64decode with validate=True (or ignorechars=b"") and padded=True when possible.
import pybase64
print(pybase64.b64encode(b'>>>foo???', altchars='_:'))
# b'Pj4_Zm9vPz8:'
print(pybase64.b64decode(b'Pj4_Zm9vPz8:', altchars='_:', validate=True))
# b'>>>foo???'
# Standard encoding helpers
print(pybase64.standard_b64encode(b'>>>foo???'))
# b'Pj4+Zm9vPz8/'
print(pybase64.standard_b64decode(b'Pj4+Zm9vPz8/'))
# b'>>>foo???'
# URL safe encoding helpers
print(pybase64.urlsafe_b64encode(b'>>>foo???'))
# b'Pj4-Zm9vPz8_'
print(pybase64.urlsafe_b64decode(b'Pj4-Zm9vPz8_'))
# b'>>>foo???'
A command-line tool is also provided. It has encode, decode and benchmark subcommands.
usage: pybase64 [-h] [-V] {benchmark,encode,decode} ...
pybase64 command-line tool.
positional arguments:
{benchmark,encode,decode}
tool help
benchmark -h for usage
encode -h for usage
decode -h for usage
optional arguments:
-h, --help show this help message and exit
-V, --version show program's version number and exit
Full documentation on Read the Docs.
Benchmark
Running Python 3.15.0rc1, Apple clang version 21.0.0 (clang-2100.1.1.101), macOS 26.5.2, Apple M1 Max
pybase64 1.5.0 (C extension active - NEON)
bench: altchars=None, validate=True, padded=True
pybase64.encodebytes: 6595 MB/s (135,696 bytes -> 183,309 bytes)
pybase64.b64encode: 17492 MB/s (135,696 bytes -> 180,928 bytes)
pybase64.b64decode: 9037 MB/s (180,928 bytes -> 135,696 bytes)
base64.encodebytes: 2386 MB/s (135,696 bytes -> 183,309 bytes)
base64.b64encode: 2653 MB/s (135,696 bytes -> 180,928 bytes)
base64.b64decode: 2656 MB/s (180,928 bytes -> 135,696 bytes)
bench: altchars=None, validate=True, padded=False
pybase64.b64encode: 17547 MB/s (135,696 bytes -> 180,928 bytes)
pybase64.b64decode: 2521 MB/s (180,928 bytes -> 135,696 bytes)
base64.b64encode: 2656 MB/s (135,696 bytes -> 180,928 bytes)
base64.b64decode: 2655 MB/s (180,928 bytes -> 135,696 bytes)
bench: altchars=None, ignorechars=b'', padded=False
pybase64.b64decode: 2510 MB/s (180,928 bytes -> 135,696 bytes)
base64.b64decode: 2655 MB/s (180,928 bytes -> 135,696 bytes)
bench: altchars=None, ignorechars=b'\n', padded=True
pybase64.b64decode: 2370 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 2087 MB/s (183,308 bytes -> 135,696 bytes)
bench: altchars=None, ignorechars=b'\n', padded=False
pybase64.b64decode: 2365 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 1964 MB/s (183,308 bytes -> 135,696 bytes)
bench: altchars=None, validate=False, padded=True
pybase64.b64decode: 2369 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 2030 MB/s (183,308 bytes -> 135,696 bytes)
bench: altchars=None, validate=False, padded=False
pybase64.b64decode: 2361 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 1982 MB/s (183,308 bytes -> 135,696 bytes)
bench: altchars=b'-_', validate=True, padded=True
pybase64.b64encode: 10900 MB/s (135,696 bytes -> 180,928 bytes)
pybase64.b64decode: 5974 MB/s (180,928 bytes -> 135,696 bytes)
base64.b64encode: 2675 MB/s (135,696 bytes -> 180,928 bytes)
base64.b64decode: 1186 MB/s (180,928 bytes -> 135,696 bytes)
bench: altchars=b'-_', validate=True, padded=False
pybase64.b64encode: 10798 MB/s (135,696 bytes -> 180,928 bytes)
pybase64.b64decode: 2135 MB/s (180,928 bytes -> 135,696 bytes)
base64.b64encode: 2571 MB/s (135,696 bytes -> 180,928 bytes)
base64.b64decode: 1154 MB/s (180,928 bytes -> 135,696 bytes)
bench: altchars=b'-_', ignorechars=b'', padded=True
pybase64.b64decode: 5770 MB/s (180,928 bytes -> 135,696 bytes)
base64.b64decode: 2629 MB/s (180,928 bytes -> 135,696 bytes)
bench: altchars=b'-_', ignorechars=b'', padded=False
pybase64.b64decode: 2201 MB/s (180,928 bytes -> 135,696 bytes)
base64.b64decode: 2606 MB/s (180,928 bytes -> 135,696 bytes)
bench: altchars=b'-_', ignorechars=b'\n', padded=True
pybase64.b64decode: 2058 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 2069 MB/s (183,308 bytes -> 135,696 bytes)
bench: altchars=b'-_', ignorechars=b'\n', padded=False
pybase64.b64decode: 2058 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 1882 MB/s (183,308 bytes -> 135,696 bytes)
bench: altchars=b'-_', validate=False, padded=True
pybase64.b64decode: 2030 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 1005 MB/s (183,308 bytes -> 135,696 bytes)
bench: altchars=b'-_', validate=False, padded=False
pybase64.b64decode: 2081 MB/s (183,308 bytes -> 135,696 bytes)
base64.b64decode: 1031 MB/s (183,308 bytes -> 135,696 bytes)
Changelog
1.5.0
Speed-up translation on aarch64
Fix invalid data successfully decoded when using altchars (slice ends with padding)
Fix thread safety selecting codec
Add padded and wrapcol parameters to b64encode
Add padded parameter to urlsafe_b64encode
Add padded parameter to b64decode & urlsafe_b64decode
urlsafe_b64decode now defaults to padded=False to align with Python 3.15 behavior
Add ignorechars and canonical parameters to b64decode
Handle excess padding with the same behavior as CPython 3.15
Reject non-ASCII strings in b64decode when validate=False
Deprecate accepting the + and / characters with an alternative alphabet when decoding
Use ValueError instead of AssertionError on altchars length validation
Add SBOM to PyPI wheels
Publish python 3.15 wheels
Drop python 3.8 support
Stop publishing python 3.13t wheels
1.4.3
Publish Android Python 3.14 wheels
Publish GraalPy v25 wheels
1.4.2
Update base64 library (Windows ARM64 Neon support)
Publish Python 3.14 wheels
Publish Linux riscv64 wheels
Publish Android wheels
Publish iOS wheels
Publish GraalPy wheels
1.4.1
Publish PyPy 3.11 wheels
Publish armv7l wheels
1.4.0
Publish python 3.13 wheels
Add support for free-threaded builds
Add MSYS2 support for C-extension
Better logging on base64 build failure when C-extension build is optional
Drop python 3.6 & 3.7 support
1.3.2
Update base64 library
PyPy: fix wrong outcome with non C-contiguous buffer
1.3.1
Add missing py.typed marker
1.3.0
Update base64 library
Add AVX512-VBMI implementation
Rework extension build to remove adherence on distutils
Publish python 3.12 wheels
Documentation now uses furo theme
1.2.3
Update base64 library
Publish python 3.11 wheels
1.2.2
Update base64 library
Fix C extension build on musl distros
Publish musllinux wheels
1.2.1
Publish PyPy 3.8 (pypy38_pp73) wheels
1.2.0
Release the GIL
Publish CPython 3.10 wheels
Drop python 3.5 support
1.1.4
Add macOS arm64 wheel
1.1.3
GitHub Actions: fix build on tag
1.1.2
Add PyPy wheels
Add aarch64, ppc64le & s390x manylinux wheels
1.1.1
Move CI from TravisCI/AppVeyor to GitHub Actions
Fix publication of Linux/macOS wheels
1.1.0
Add b64encode_as_string, same as b64encode but returns a str object instead of a bytes object
Add b64decode_as_bytearray, same as b64decode but returns a bytarray object instead of a bytes object
Speed-Up decoding from UCS1 strings
1.0.2
Update base64 library
Publish python 3.9 wheels
1.0.1
Publish python 3.8 wheels
1.0.0
Drop python 3.4 support
Drop python 2.7 support
0.5.0
Publish python 3.7 wheels
Drop python 3.3 support
0.4.0
Speed-up decoding when validate==False
0.3.1
Fix deployment issues
0.3.0
Add encodebytes function
0.2.1
Fixed invalid results on Windows
0.2.0
Added documentation
Added subcommands to the main script:
help
version
encode
decode
benchmark
0.1.2
Updated base64 native library
0.1.1
Fixed deployment issues
0.1.0
First public release
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pybase64-1.5.0.tar.gz.
File metadata
- Download URL: pybase64-1.5.0.tar.gz
- Upload date:
- Size: 149.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545ab2a433769e3b8e1ce2b4f7b07218bbde202f4954fbfe52948b2522120727
|
|
| MD5 |
92d7a53f235a0cc484ea437805d5f5c7
|
|
| BLAKE2b-256 |
d765c513eab7211590250f729a06aacc0bc95eaf760b9235666e933d200105d0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0.tar.gz:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0.tar.gz -
Subject digest:
545ab2a433769e3b8e1ce2b4f7b07218bbde202f4954fbfe52948b2522120727 - Sigstore transparency entry: 2385990944
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 44.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83496c6800d5e1002d1e923ab5bef49bb67a07c2faac8374364497182f04af72
|
|
| MD5 |
25585461d91c72fa8e4c1dbe94fea905
|
|
| BLAKE2b-256 |
63131dc6e9d781a00fc427518ba462d6ed5b15caaabe3aa74aaca24b2b68ad26
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp311-pypy311_pp73-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp311-pypy311_pp73-win_amd64.whl -
Subject digest:
83496c6800d5e1002d1e923ab5bef49bb67a07c2faac8374364497182f04af72 - Sigstore transparency entry: 2385991954
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 45.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7af9ad847b351b42ec54b3c0580febe406b28408917b7fc1565c87896ed0c4d
|
|
| MD5 |
4e63066d0d8100e76856d10e3545b9e1
|
|
| BLAKE2b-256 |
a873d68d5df0f367613643c9cb9470a25611d2d078471c1eadeb86c00e644182
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
b7af9ad847b351b42ec54b3c0580febe406b28408917b7fc1565c87896ed0c4d - Sigstore transparency entry: 2385991559
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 50.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d240554e1a63ad9b7cb128acf94d4bc7d8400c78dfb76521775e767d4aa0b22
|
|
| MD5 |
1f4450d6a075e3af297f1170ce0818a0
|
|
| BLAKE2b-256 |
6218064288c6211c79a27893b70261558cf79a254ca22d80101bd7d05a817a6f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
2d240554e1a63ad9b7cb128acf94d4bc7d8400c78dfb76521775e767d4aa0b22 - Sigstore transparency entry: 2385992629
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 50.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adfc52cee3ad56c070e824bee9feda1f13c8679601ff8d0535f03da60bdcdda6
|
|
| MD5 |
8d77a41c53feb1bb1b88c21b67fb897b
|
|
| BLAKE2b-256 |
86d9399c45ada7e401c927345324baf797b167864b9817be6aa71a1e28a00ad1
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
adfc52cee3ad56c070e824bee9feda1f13c8679601ff8d0535f03da60bdcdda6 - Sigstore transparency entry: 2385992975
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.0 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e8691ad425ab8c586ad93a2d71789c6ab86e201377619ea146ab0ed092aa2ab
|
|
| MD5 |
d6728b16a44c1ac376842e0947bda887
|
|
| BLAKE2b-256 |
c1648d6c3aea8fc68875a9d1b4fa750911a2e2e019f984498f7a21807fd0cbed
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl -
Subject digest:
0e8691ad425ab8c586ad93a2d71789c6ab86e201377619ea146ab0ed092aa2ab - Sigstore transparency entry: 2385991263
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 46.8 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89756a61cd09a5669ce923081f518476ff4b960c5d850a5dd54f0cf4406ac684
|
|
| MD5 |
fb2f2044c1dc8b9aad0f82aa7496fb0c
|
|
| BLAKE2b-256 |
8884d011c9b098996db666cb971a831c715d693209e39d28690af1b8049ce3fd
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl -
Subject digest:
89756a61cd09a5669ce923081f518476ff4b960c5d850a5dd54f0cf4406ac684 - Sigstore transparency entry: 2385993011
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 44.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50eea4c9a05308fbae30ee976150e7416baade27970ae8e229174ce92b5e07bc
|
|
| MD5 |
9012998e4da0c8426b2b9d76160d4c7e
|
|
| BLAKE2b-256 |
44f7e4f8151070be79b13aa276490981abbc283d0a983918cc052d4f02b21a4f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp310-pypy310_pp73-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp310-pypy310_pp73-win_amd64.whl -
Subject digest:
50eea4c9a05308fbae30ee976150e7416baade27970ae8e229174ce92b5e07bc - Sigstore transparency entry: 2385991247
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 45.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14e4eb6091afd1cf956a37a331566c453aa080fd692acfa76f35761a04f19fd0
|
|
| MD5 |
aafd9f185053966d1b34e8ecb54e2378
|
|
| BLAKE2b-256 |
f405994876865682591276e95cf19affa229a1026efa9f4c352911ad0bac807e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
14e4eb6091afd1cf956a37a331566c453aa080fd692acfa76f35761a04f19fd0 - Sigstore transparency entry: 2385991547
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 50.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a005b8dcc724f0dae96d0504f93d16a283d9a79bdaeee57648335ff0b483470
|
|
| MD5 |
6508ff98cefd05cf4e305301885d61ea
|
|
| BLAKE2b-256 |
8d510ca9973a6eff45ad7351dac69db42fce4e07b18e2b90e3274800cfcf6262
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
6a005b8dcc724f0dae96d0504f93d16a283d9a79bdaeee57648335ff0b483470 - Sigstore transparency entry: 2385992487
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 50.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1439d84162a4ee5598ff324b63f651d9c5adaaa9fce271764384cd55f50bcf2f
|
|
| MD5 |
10eb8be8b50db597dfae7dda9602b16b
|
|
| BLAKE2b-256 |
d52726473f003bdbe6d8fe79904ae23ab99e5ccb8ab4e28e147495f5688358aa
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
1439d84162a4ee5598ff324b63f651d9c5adaaa9fce271764384cd55f50bcf2f - Sigstore transparency entry: 2385991203
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.2 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dedecea1ef347db51736836fb609168ab376cdb956a5ded576f271054fba0efc
|
|
| MD5 |
a5fc8efde05ffb92173a6601f0a9a9b8
|
|
| BLAKE2b-256 |
878f1a25e4067c972560e7f509c814020e946201288d546dbf1882b445b77094
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl -
Subject digest:
dedecea1ef347db51736836fb609168ab376cdb956a5ded576f271054fba0efc - Sigstore transparency entry: 2385992594
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 46.9 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abb4aedb092aca028e1111998a0c2a5b6e327707e61df2c22e061118b0a8ccd5
|
|
| MD5 |
e4b492b5fe4f198995af069dc75da0ec
|
|
| BLAKE2b-256 |
9cc1a45419d6798db99f722c98af153c070964ba8f65c276cb9f771b1407ed05
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl -
Subject digest:
abb4aedb092aca028e1111998a0c2a5b6e327707e61df2c22e061118b0a8ccd5 - Sigstore transparency entry: 2385993064
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp39-pypy39_pp73-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 44.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc40fdbb89caecbd3c8c261409dd9e9245d6985c85fd326b6c748909b9a21936
|
|
| MD5 |
6c2aee1abb0a0e8c710915fdcf7650dc
|
|
| BLAKE2b-256 |
caa2c9456d3571b4b4c0a4e8fc862257b9e166e4bea15f8f7cfdec1760434b31
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp39-pypy39_pp73-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp39-pypy39_pp73-win_amd64.whl -
Subject digest:
bc40fdbb89caecbd3c8c261409dd9e9245d6985c85fd326b6c748909b9a21936 - Sigstore transparency entry: 2385992442
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 45.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac68b88c9665cb49940e12ad5d020e9388f95b512aabef15fe0ce1ba47ad63a5
|
|
| MD5 |
47756d3b8d31c2290e7238668abe8296
|
|
| BLAKE2b-256 |
c313fa0d32bf0ee693c6e9a3134b9d79f3a582a0166dc0bf2fe9225c9a5829c0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
ac68b88c9665cb49940e12ad5d020e9388f95b512aabef15fe0ce1ba47ad63a5 - Sigstore transparency entry: 2385991018
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 50.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b0698cb1eb0c13b1979c9538603fd8e07c87bd8bb76cf0b707cdca68f56ad0b
|
|
| MD5 |
99082159efa4aac86f97a6a00e88fd43
|
|
| BLAKE2b-256 |
c7db136b24c2d7628f758b1b67b61e8dbdd096b68155f5f1b446d0ec053d21e3
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
7b0698cb1eb0c13b1979c9538603fd8e07c87bd8bb76cf0b707cdca68f56ad0b - Sigstore transparency entry: 2385993182
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 50.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0202f2e2bc65a97969f6b1076cb4714054f0c770e9a44c883280c1435c82c858
|
|
| MD5 |
6864acfa273b3627985f8ff9f003be6e
|
|
| BLAKE2b-256 |
68c2b1247001b9ce85d096191aba358b9434d3d3e60d2d1eacf4c52f0073f8ba
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
0202f2e2bc65a97969f6b1076cb4714054f0c770e9a44c883280c1435c82c858 - Sigstore transparency entry: 2385991474
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.2 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a580b3b8c49fe60200291cffbe8204116ba193c9a04230f087cc20bab561ae0e
|
|
| MD5 |
98cbec1198bf2b6d9da8c4f203525d9c
|
|
| BLAKE2b-256 |
5d648af61ce6e0176826f8b6637cae798ba59ad478cb82ecbbc683f480d376e1
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl -
Subject digest:
a580b3b8c49fe60200291cffbe8204116ba193c9a04230f087cc20bab561ae0e - Sigstore transparency entry: 2385991073
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 46.9 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afa9be577f5cf1115f3cb597d5410607dde4167efb413ee2b3c4639913031aac
|
|
| MD5 |
0211c43a25b48c6e7c35f850a623a29f
|
|
| BLAKE2b-256 |
90b69ef64a00dc27ae4b7913401d1da0575aa85e6a818841659bc8ad803d993a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl -
Subject digest:
afa9be577f5cf1115f3cb597d5410607dde4167efb413ee2b3c4639913031aac - Sigstore transparency entry: 2385991784
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl
- Upload date:
- Size: 45.0 kB
- Tags: Windows x86-64, graalpy312
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b059b951347a6e16d29b1488f624a7b213c7e8482869b1eac2b684e6fb1ac236
|
|
| MD5 |
953bcebc9ae9936a6495c90b633d5b05
|
|
| BLAKE2b-256 |
2bbb4d080faff127cc8e5e0f5f6bb94d3a079235f83d0ef7355663f4bf214935
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl -
Subject digest:
b059b951347a6e16d29b1488f624a7b213c7e8482869b1eac2b684e6fb1ac236 - Sigstore transparency entry: 2385991820
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 45.9 kB
- Tags: graalpy312, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d09d63b219adfb1b40e104036dc2462234d2f06c05e436918e08f31a09a973b
|
|
| MD5 |
d41679c4e9001f52e7b4209c8d5bb4b3
|
|
| BLAKE2b-256 |
aa2267ad2ddf8ed03e0fc94341ebfc6ed694a36b9c908dd5a08b3ca366e31892
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
5d09d63b219adfb1b40e104036dc2462234d2f06c05e436918e08f31a09a973b - Sigstore transparency entry: 2385991140
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 54.3 kB
- Tags: graalpy312, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b618ecec8f13b3f9dd58e257aa98fc9b017829a1bdc4f576e9146998956ec2c7
|
|
| MD5 |
a0786a41285d5fa564958a8cae38e206
|
|
| BLAKE2b-256 |
badccd57bd8629965d69eaaa721cf915f3c0590ba468811d290bbcdd3908f0ee
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
b618ecec8f13b3f9dd58e257aa98fc9b017829a1bdc4f576e9146998956ec2c7 - Sigstore transparency entry: 2385992770
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
- Upload date:
- Size: 43.1 kB
- Tags: graalpy312, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b47a5b4a359e42b4b726cbd9558347c5324194aadaf12e4ad219efc89dc9812
|
|
| MD5 |
eefb896af02104103255c8599db64204
|
|
| BLAKE2b-256 |
77040b073d5fe8d035c3334d44252218e82ca0717f71a1139efdbc1600c38463
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl -
Subject digest:
8b47a5b4a359e42b4b726cbd9558347c5324194aadaf12e4ad219efc89dc9812 - Sigstore transparency entry: 2385991604
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
- Upload date:
- Size: 48.6 kB
- Tags: graalpy312, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9bcbdefd0858372c2e3c657ca8c1e2cdf0af5963cb45085cc861dfac0ddd422
|
|
| MD5 |
73887f590a50a9cbf4d410aac48b33db
|
|
| BLAKE2b-256 |
e4999cc7eadd3dcc3b9d814a15381fe78bc59dff133d25ba3a8e49e4380fff30
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl -
Subject digest:
a9bcbdefd0858372c2e3c657ca8c1e2cdf0af5963cb45085cc861dfac0ddd422 - Sigstore transparency entry: 2385990951
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-win_arm64.whl
- Upload date:
- Size: 40.4 kB
- Tags: CPython 3.15t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee074ecc63f43c664a35c9aea9daa84ab9d0de24487353f53aed097012c8d43c
|
|
| MD5 |
54dff23838f70b40117b7811f84bd0e0
|
|
| BLAKE2b-256 |
0bd39a61bd2e91a45e51806da7e3ab8c6957ba5d83f4f16e56af32a98c14a97c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-win_arm64.whl -
Subject digest:
ee074ecc63f43c664a35c9aea9daa84ab9d0de24487353f53aed097012c8d43c - Sigstore transparency entry: 2385993167
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-win_amd64.whl
- Upload date:
- Size: 45.4 kB
- Tags: CPython 3.15t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15b0ac4dc01be9a7d2a3e508720a8e3aea9f0dfb1a3dd62b7d5a23f35e76ee7d
|
|
| MD5 |
ad28588ae521f0fd1fe4c4864fb00068
|
|
| BLAKE2b-256 |
292d517ea25a383585fba3b0c5d86a68b72782f45de7dce55c4324fe6c9bb69c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-win_amd64.whl -
Subject digest:
15b0ac4dc01be9a7d2a3e508720a8e3aea9f0dfb1a3dd62b7d5a23f35e76ee7d - Sigstore transparency entry: 2385992582
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-win32.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.15t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
925f34f75e024abe94dd0f33da8f0cb21db35f85d534219dc18abde90c06a8d7
|
|
| MD5 |
daba69865ee31bc4379bc09f3c39d5fb
|
|
| BLAKE2b-256 |
ee12dfdea7f9d67339a32a5fd85e522b4d1d52f6200dbd29c4cdf190c0802f16
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-win32.whl -
Subject digest:
925f34f75e024abe94dd0f33da8f0cb21db35f85d534219dc18abde90c06a8d7 - Sigstore transparency entry: 2385991630
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 101.3 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a80b502057361c8f2f5f9b75ecda9127b4ea1b1baec7b99b63d425c09e799b12
|
|
| MD5 |
4566c6fc579064fde8fd13ca6e1e929b
|
|
| BLAKE2b-256 |
9d2fd505ad3dab5ae4339d0ae471453a305ea7cbe9be630825fb06019d18fe0d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl -
Subject digest:
a80b502057361c8f2f5f9b75ecda9127b4ea1b1baec7b99b63d425c09e799b12 - Sigstore transparency entry: 2385991580
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-musllinux_1_2_s390x.whl
- Upload date:
- Size: 86.3 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a5aaa4343b5ed1af3850ce351482e7385d695af15b81b244c3f823949dfe796
|
|
| MD5 |
207fcbdd45dd723e164c203f08bfb863
|
|
| BLAKE2b-256 |
75581751447e2f3d480dad36d9d0f4a18a65062551ada9cf5a18599a79583536
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-musllinux_1_2_s390x.whl -
Subject digest:
8a5aaa4343b5ed1af3850ce351482e7385d695af15b81b244c3f823949dfe796 - Sigstore transparency entry: 2385992498
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 92.3 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e953b14d562b7c08eae7b7c327b5162c78a6975974d8de8d7acff2b8b7c682b0
|
|
| MD5 |
b9a22747bbb8eacf5ead434ba1241f7b
|
|
| BLAKE2b-256 |
c6b05b213e770f5e8f3df9a09d4337821a7ffd5001e56a248ebf782a6a8bbce7
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl -
Subject digest:
e953b14d562b7c08eae7b7c327b5162c78a6975974d8de8d7acff2b8b7c682b0 - Sigstore transparency entry: 2385992679
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 87.9 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b809817bf0413bcc00cab69d6a055e1fb2626b22359772c2c3570ac3fef7462
|
|
| MD5 |
51b65f71fb10184f5077753a6fd2c9b5
|
|
| BLAKE2b-256 |
1187befa9e85b22f32b8eadbdc1145f61ebb16d571923954ac258ddb7f96958f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl -
Subject digest:
7b809817bf0413bcc00cab69d6a055e1fb2626b22359772c2c3570ac3fef7462 - Sigstore transparency entry: 2385992863
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-musllinux_1_2_i686.whl
- Upload date:
- Size: 97.8 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc719c38087e09788d40216ebaacc89504dd8e964c0457085a4c1b83695eaa5b
|
|
| MD5 |
6829c874bc27c915236c70f1699e8c34
|
|
| BLAKE2b-256 |
439b50bda3bd73f0f20e83a7941b98e5c655ba1cb6d0d9228c192e3b2ee7ea56
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-musllinux_1_2_i686.whl -
Subject digest:
dc719c38087e09788d40216ebaacc89504dd8e964c0457085a4c1b83695eaa5b - Sigstore transparency entry: 2385991234
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 86.0 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5d28afc34ee925f0beb376d2e3ace38267e700994481511686f2b467f11f51c
|
|
| MD5 |
fee5f501d544867a9baf19a057b858ec
|
|
| BLAKE2b-256 |
1af54a527a34c2742009376dba884e84b0e34e44253f5e6b951c66494dff488d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl -
Subject digest:
f5d28afc34ee925f0beb376d2e3ace38267e700994481511686f2b467f11f51c - Sigstore transparency entry: 2385991570
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 91.7 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16201c0998c80f0bac0817a792969b7e1f4169014a8a6b32019e005384734805
|
|
| MD5 |
1025019b197ebd884c8ba3d4e0a8a682
|
|
| BLAKE2b-256 |
1197e42e428a4da55f56d873afc555ff18a91e2932a6a44b4367a9c072d09c03
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl -
Subject digest:
16201c0998c80f0bac0817a792969b7e1f4169014a8a6b32019e005384734805 - Sigstore transparency entry: 2385991882
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 92.2 kB
- Tags: CPython 3.15t, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1df96c88f8e9f57cbe25f0d8f28411e2d1cc42be26e99078f6e4efa876dcb96
|
|
| MD5 |
7deffbf37ab1d29949ec3362579b9429
|
|
| BLAKE2b-256 |
a01717c43a329d20a299b25a01a425dfd5f671274a5ad65754ca314720ca9f24
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl -
Subject digest:
e1df96c88f8e9f57cbe25f0d8f28411e2d1cc42be26e99078f6e4efa876dcb96 - Sigstore transparency entry: 2385992962
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 89.1 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69a2c6eaaa3b7e157ddd1c3803d09e5fa80d9aeb5191b81ad60e182662c2a324
|
|
| MD5 |
be165884f01de5e59c0bd22ec1b0fea3
|
|
| BLAKE2b-256 |
df9328a50e85bab801e642762f71d852ae765970a0df8b9915848e822b73d64a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
69a2c6eaaa3b7e157ddd1c3803d09e5fa80d9aeb5191b81ad60e182662c2a324 - Sigstore transparency entry: 2385991443
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 90.8 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80eb2c568f1f09283ad7528407a97e84935f23851943ed27206b52664b8010f0
|
|
| MD5 |
2b9f12b408e7106665d0010035da2724
|
|
| BLAKE2b-256 |
a534da8aeb775098fd53d55c289089e6fc94b37751d156e130d11f8c137caf8e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
80eb2c568f1f09283ad7528407a97e84935f23851943ed27206b52664b8010f0 - Sigstore transparency entry: 2385991945
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 92.6 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84e619e315fdaf8b70d54cdd0be12c7895dcdcd0212a42a67576b33f7af111dd
|
|
| MD5 |
acf09fd2e9bb5a997fd6118e3924b195
|
|
| BLAKE2b-256 |
0cb3dfc900a5a724452defb33dff71a869638e4e58497dc7fe20602d6e650b64
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
84e619e315fdaf8b70d54cdd0be12c7895dcdcd0212a42a67576b33f7af111dd - Sigstore transparency entry: 2385991796
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 93.9 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5d1c9d46d6b8459f5dac87b1778950ad28e27a83d1cdba1d2c34a031dcd57e2
|
|
| MD5 |
0a10eab1799e2d7128f5572c5325271f
|
|
| BLAKE2b-256 |
e8a76a80063f72ba5bf09bc43a26ad5bb6152a1fc52fec75f7b24d40ec25c37c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
f5d1c9d46d6b8459f5dac87b1778950ad28e27a83d1cdba1d2c34a031dcd57e2 - Sigstore transparency entry: 2385991971
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 102.4 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3ee57900cb5d35a79d992800103180d715b68d8b56658b445a10f97e8805982
|
|
| MD5 |
d3b4e96cc9ee9072dd5e6c1826c8163f
|
|
| BLAKE2b-256 |
fe56430bd2afbd179a278c87e282062db898735a9dc17255b223f1c0d4276b5f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
b3ee57900cb5d35a79d992800103180d715b68d8b56658b445a10f97e8805982 - Sigstore transparency entry: 2385993035
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 97.8 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8dcf39b6aabed5d3820188451e98d651a9fde2453a2e99fb386941d4bd518d9
|
|
| MD5 |
710a17c112fd7749e513b772d3b8df72
|
|
| BLAKE2b-256 |
3fda1cdd664628bef3b6108fac20e2a11df8992e1b0d5a1ff1336256d8817961
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
f8dcf39b6aabed5d3820188451e98d651a9fde2453a2e99fb386941d4bd518d9 - Sigstore transparency entry: 2385991996
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-macosx_11_0_arm64.whl
- Upload date:
- Size: 41.2 kB
- Tags: CPython 3.15t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0eb9489fe31db090f95affe81fea96c3dab51c24593ce14fef936ce92d802b63
|
|
| MD5 |
b4e9d840247308ef5f4e1a0510454e89
|
|
| BLAKE2b-256 |
b829baa2a610ac72c560c29965c0c5b937af0c5ac48055ce3c3afaf1ab329b6d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-macosx_11_0_arm64.whl -
Subject digest:
0eb9489fe31db090f95affe81fea96c3dab51c24593ce14fef936ce92d802b63 - Sigstore transparency entry: 2385991462
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 47.8 kB
- Tags: CPython 3.15t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc96f63170b2fc943ac83da1015c6333cbaf251d12174b6e506315b941dd16b5
|
|
| MD5 |
c435a76ce9cb551f4fcd74f1d010b34c
|
|
| BLAKE2b-256 |
40b2d89caf52c642eceda40c074c4d881cb68b560bf379ce90c44821d79df64f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315t-macosx_10_15_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315t-macosx_10_15_x86_64.whl -
Subject digest:
dc96f63170b2fc943ac83da1015c6333cbaf251d12174b6e506315b941dd16b5 - Sigstore transparency entry: 2385993071
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-win_arm64.whl
- Upload date:
- Size: 40.1 kB
- Tags: CPython 3.15, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
163586e9ec367158b0f744ae12d27a28381f85dce7b90a4f9aaa901b1fa06d74
|
|
| MD5 |
bdb6315bd48a245697328ae8663cafb8
|
|
| BLAKE2b-256 |
51bba9e218f092eabf20e893f3490b1fe334c410c0c5851a2a87cfe7157ef3df
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-win_arm64.whl -
Subject digest:
163586e9ec367158b0f744ae12d27a28381f85dce7b90a4f9aaa901b1fa06d74 - Sigstore transparency entry: 2385991126
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-win_amd64.whl
- Upload date:
- Size: 44.9 kB
- Tags: CPython 3.15, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5a27a14899cb1b878c2924dd150d943c4e5cee02a50a409a1f62f4ad852038e
|
|
| MD5 |
ca9071fc7b52a40d3d9aa0d054a4f153
|
|
| BLAKE2b-256 |
ba26b0e1f7dac48ad2b57652dfd3efdef9d0d3f251184802bebc584c6a3a4014
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-win_amd64.whl -
Subject digest:
d5a27a14899cb1b878c2924dd150d943c4e5cee02a50a409a1f62f4ad852038e - Sigstore transparency entry: 2385991041
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-win32.whl
- Upload date:
- Size: 42.7 kB
- Tags: CPython 3.15, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eed1b552f5979a4e3545dbaed4dd8111af9d321844232945bd0ed3a505602dd0
|
|
| MD5 |
883e06e6e4b1424760bd876c8dd18d8f
|
|
| BLAKE2b-256 |
8b61aa5c8775a93b2833b016c620dea0debcde2169e6a377008c7d0d34e0d640
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-win32.whl -
Subject digest:
eed1b552f5979a4e3545dbaed4dd8111af9d321844232945bd0ed3a505602dd0 - Sigstore transparency entry: 2385992660
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl
- Upload date:
- Size: 33.2 kB
- Tags: CPython 3.15, PyEmscripten 2026.5 wasm32
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9edbf7e7a97454904a4ccfbd007a511b75ebf13cba9d0dbdfe6c4480e154edf6
|
|
| MD5 |
f950d6f1bf5ea71a4b6925d7bd8629d1
|
|
| BLAKE2b-256 |
27589d9f38918c9b27ac7200302fde0baecb95daf3b8a3cbc917238291691134
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl -
Subject digest:
9edbf7e7a97454904a4ccfbd007a511b75ebf13cba9d0dbdfe6c4480e154edf6 - Sigstore transparency entry: 2385993233
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 94.0 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0930504fbe5c003f31d67aeab4b8f155a409168a26ef8ea7df759bc50ab6729
|
|
| MD5 |
85dd2f643b19831838a2e8220f8ae94e
|
|
| BLAKE2b-256 |
6b37a6e17849a37cb94b010b4eb7decaa5b49b6fafd0d18b386bd1cbe4b4d523
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-musllinux_1_2_x86_64.whl -
Subject digest:
d0930504fbe5c003f31d67aeab4b8f155a409168a26ef8ea7df759bc50ab6729 - Sigstore transparency entry: 2385992011
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-musllinux_1_2_s390x.whl
- Upload date:
- Size: 81.0 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ae263c1244bf375420fcdfd5ab32d463496f3814177edc8f0f3a8b56d7fe643
|
|
| MD5 |
e4606410487f6d67eba52593d7c66a63
|
|
| BLAKE2b-256 |
e517e5b3e991ebcc71d20ae9246011dde389e321f450b658976be7a51ca50824
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-musllinux_1_2_s390x.whl -
Subject digest:
6ae263c1244bf375420fcdfd5ab32d463496f3814177edc8f0f3a8b56d7fe643 - Sigstore transparency entry: 2385992545
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 87.2 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4135c1e12615fa7989c9aec4720cedaa342bc4b8dbd5665f84a95790e3db5fd
|
|
| MD5 |
4e5d5c6e9fc04e552011556e1faf5f6b
|
|
| BLAKE2b-256 |
2129263bb998064c5d18957f5445a381f336070d24f09e7c372a0e3963dea142
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-musllinux_1_2_riscv64.whl -
Subject digest:
f4135c1e12615fa7989c9aec4720cedaa342bc4b8dbd5665f84a95790e3db5fd - Sigstore transparency entry: 2385991814
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 82.2 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3e26e250aa51813881d03c09995a41462e115ab9c3c2b6d5202e4286b924d00
|
|
| MD5 |
b92af014ec5e850885af96ae50b8cb4b
|
|
| BLAKE2b-256 |
bd5a46f96588a494ab8ab71a3fae5a18627c728c0379ae96af96312e54f8c8e6
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl -
Subject digest:
d3e26e250aa51813881d03c09995a41462e115ab9c3c2b6d5202e4286b924d00 - Sigstore transparency entry: 2385992122
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-musllinux_1_2_i686.whl
- Upload date:
- Size: 90.9 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fa782fc5d7d53bb4c1b01e34909287f301c4c81251f8130e55848ab5d2f23e1
|
|
| MD5 |
753c34723750b88834cc86958c5642fc
|
|
| BLAKE2b-256 |
8fc5ebd26ad4032442d6fa6ba14ed0a222bd5d81f2a373d4d83a840a432e6c15
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-musllinux_1_2_i686.whl -
Subject digest:
6fa782fc5d7d53bb4c1b01e34909287f301c4c81251f8130e55848ab5d2f23e1 - Sigstore transparency entry: 2385992245
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 77.6 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0976e9b7465387038868c6b560d7cdcbb9ef5214faf55ae6036e4aa4e93ba423
|
|
| MD5 |
a58f56bf48618a2c478ae7dc45080d3f
|
|
| BLAKE2b-256 |
da03755d6316c7cfdab904311900aafbbbf1ed2227ae814bd3d2f25df8d10d46
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-musllinux_1_2_armv7l.whl -
Subject digest:
0976e9b7465387038868c6b560d7cdcbb9ef5214faf55ae6036e4aa4e93ba423 - Sigstore transparency entry: 2385992880
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 83.0 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c94d6b104411d33df813b1defa8a1194a884e9393839fefa3f7ea7377e1efeb
|
|
| MD5 |
f01baae0ac3cdc20e74dfd57f4c7e6e4
|
|
| BLAKE2b-256 |
11ff498c12d1316594d3796795e66301e193afa4e51fdd7e378c087922bfb074
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-musllinux_1_2_aarch64.whl -
Subject digest:
4c94d6b104411d33df813b1defa8a1194a884e9393839fefa3f7ea7377e1efeb - Sigstore transparency entry: 2385992449
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 88.3 kB
- Tags: CPython 3.15, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
741f944bef8dd709e9ca9e991f5f6a91a8d49b6e2725fdb4070027f0ec06faa2
|
|
| MD5 |
e1e5afc2387e519c70d5df49cc153c0d
|
|
| BLAKE2b-256 |
f1eeb083e2092dd1b6a6a973ced22b3363dc0bb27e7e2b21da8d83b44097d523
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-manylinux_2_31_riscv64.whl -
Subject digest:
741f944bef8dd709e9ca9e991f5f6a91a8d49b6e2725fdb4070027f0ec06faa2 - Sigstore transparency entry: 2385993026
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 83.7 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e161a4ba46caaa9417d5cd55f23c0717d5243b4f2a96c176b0d1a07bf86e0b0c
|
|
| MD5 |
f202d9d524374828ff901e655a9ae0c2
|
|
| BLAKE2b-256 |
c46b87fd652e2c63516dfae373b9563329af2c5baf67a29a499601861cf52d89
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
e161a4ba46caaa9417d5cd55f23c0717d5243b4f2a96c176b0d1a07bf86e0b0c - Sigstore transparency entry: 2385992413
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 84.7 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
107129bf5591f040cd6cfe3b7ea5c1626a2f9610763e54d450778c578ca2b69a
|
|
| MD5 |
db750906ff5e38fde08e8ed14beddc82
|
|
| BLAKE2b-256 |
409efb4520a0cd238065141a89f9f2b6c54ef4e9ff6578ffba6122b5f9af24b1
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
107129bf5591f040cd6cfe3b7ea5c1626a2f9610763e54d450778c578ca2b69a - Sigstore transparency entry: 2385991496
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 88.4 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e3f5f726bedde8d7006c4f8d61f0f053de65b806af24110278c530445b6da50
|
|
| MD5 |
a5da6f68f2e8b5080b8d96731160e8c1
|
|
| BLAKE2b-256 |
7a002c9100bf1f651cf3a6a2c835306603323e3d05c9d2fe7d8ee3727bb7a718
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
1e3f5f726bedde8d7006c4f8d61f0f053de65b806af24110278c530445b6da50 - Sigstore transparency entry: 2385993117
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 84.9 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e571d2db1c515641e9918cf04f23be58818ba6d56f266fab31dfc6d5f6e01d9
|
|
| MD5 |
c2ef052d472b5663a91bcadd62aad6eb
|
|
| BLAKE2b-256 |
7245502b486cd801297984f302558973364669b97d1a50e9867e12afa30b5d86
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
1e571d2db1c515641e9918cf04f23be58818ba6d56f266fab31dfc6d5f6e01d9 - Sigstore transparency entry: 2385991650
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 95.2 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92dbad4599d5d081f905bba43b10690cc4d445857d04a7b18eba1a09bfa27cf6
|
|
| MD5 |
3ac2cd4a8f61b3aa4ce3c0a9213af270
|
|
| BLAKE2b-256 |
82e65eea2e16c31af2f5c31a7df903df05fb94e146b80709252b0e4da3a09cd9
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
92dbad4599d5d081f905bba43b10690cc4d445857d04a7b18eba1a09bfa27cf6 - Sigstore transparency entry: 2385991397
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 90.9 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40399e568324635235697b00410634e0fb027432e9b9fef92886eb3407a5c211
|
|
| MD5 |
5121ad075af75ad4765f33ffb1b960bb
|
|
| BLAKE2b-256 |
42fd40e2339ac17c4b877c9588867144ca15eaab4644e3f59e494b831d73a770
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
40399e568324635235697b00410634e0fb027432e9b9fef92886eb3407a5c211 - Sigstore transparency entry: 2385992998
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.8 kB
- Tags: CPython 3.15, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b51c308c5732bf4fe5ff6edfd4bced2a32bf41fe664cafc3088d3cff7566734b
|
|
| MD5 |
612a764ada1e8e5531d141c176a663f7
|
|
| BLAKE2b-256 |
5708116876cc8c371a2e10a1a2d870cae935195eba8355b220272798e2897186
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-macosx_11_0_arm64.whl -
Subject digest:
b51c308c5732bf4fe5ff6edfd4bced2a32bf41fe664cafc3088d3cff7566734b - Sigstore transparency entry: 2385992289
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-macosx_10_15_x86_64.whl
- Upload date:
- Size: 47.6 kB
- Tags: CPython 3.15, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8d559a46759687accc1780fbb07be17f663746842853c88115cbf89c680fb4e
|
|
| MD5 |
adbe230ef084a4c5e852eb2beda04079
|
|
| BLAKE2b-256 |
56f7d9a82433b00952bb64323092913ab1facbdedae097955ddf2b6222686196
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-macosx_10_15_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-macosx_10_15_x86_64.whl -
Subject digest:
e8d559a46759687accc1780fbb07be17f663746842853c88115cbf89c680fb4e - Sigstore transparency entry: 2385991315
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
- Upload date:
- Size: 47.0 kB
- Tags: CPython 3.15, iOS 13.0+ x86-64 Simulator
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd1ace6dacffce5cdbe68a3b2efdf22e3c890a906d887075e10dcc5f4124068b
|
|
| MD5 |
9727eadb790b2d8a3494517b273c2d7d
|
|
| BLAKE2b-256 |
6f0a3927d8d51cfcaf603f0065809a90f31cc5b4f98386eb58f5ccb0fc28bafc
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl -
Subject digest:
dd1ace6dacffce5cdbe68a3b2efdf22e3c890a906d887075e10dcc5f4124068b - Sigstore transparency entry: 2385991219
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
- Upload date:
- Size: 40.4 kB
- Tags: CPython 3.15, iOS 13.0+ ARM64 Simulator
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3ed723ed56d273b0e3a45c2583c5566ccb39cc5fd4d335bdcbe235f84e1a211
|
|
| MD5 |
b550a3bb03e3f5b059b8600b20606cc4
|
|
| BLAKE2b-256 |
df2d047976dfb83c30be4849bfee783fc45d0e2fdec9115939acf220fc95e9b6
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl -
Subject digest:
e3ed723ed56d273b0e3a45c2583c5566ccb39cc5fd4d335bdcbe235f84e1a211 - Sigstore transparency entry: 2385993047
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
- Upload date:
- Size: 39.9 kB
- Tags: CPython 3.15, iOS 13.0+ ARM64 Device
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09ba0119df1766bb43ae9774df511b396b89bde68a797119366aca1292f83eac
|
|
| MD5 |
2894703239f14672d375ffdddbb0195e
|
|
| BLAKE2b-256 |
83665bd414d1dd9aaa1b3c108108f1a9c0d3de6192d8a8753a674c084429a654
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl -
Subject digest:
09ba0119df1766bb43ae9774df511b396b89bde68a797119366aca1292f83eac - Sigstore transparency entry: 2385991340
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-android_24_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-android_24_x86_64.whl
- Upload date:
- Size: 50.1 kB
- Tags: Android API level 24+ x86-64, CPython 3.15
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20f18edb511ccfb652e114d985a61a4201f9d60bf5a3b3f9e6e95caf3a2f7859
|
|
| MD5 |
4eb78e967bff619e4104517519aae3ab
|
|
| BLAKE2b-256 |
8ab097bf3c4f807eb68f3c53a5b59df784db8513bcd6ff8cef7e3f0de0e8d4ef
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-android_24_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-android_24_x86_64.whl -
Subject digest:
20f18edb511ccfb652e114d985a61a4201f9d60bf5a3b3f9e6e95caf3a2f7859 - Sigstore transparency entry: 2385993080
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp315-cp315-android_24_arm64_v8a.whl.
File metadata
- Download URL: pybase64-1.5.0-cp315-cp315-android_24_arm64_v8a.whl
- Upload date:
- Size: 44.7 kB
- Tags: Android API level 24+ ARM64 v8a, CPython 3.15
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20e4c838a84fad3491027f0bd364f6fe21eedecab51860078b23cdb22bcb016d
|
|
| MD5 |
8091393effb67c78e6e92cd80210f52b
|
|
| BLAKE2b-256 |
f33a1d8a9bbcedfe9bb52eb1e67527e0d11b7a5c4e1bb311924b3b181211cc30
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp315-cp315-android_24_arm64_v8a.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp315-cp315-android_24_arm64_v8a.whl -
Subject digest:
20e4c838a84fad3491027f0bd364f6fe21eedecab51860078b23cdb22bcb016d - Sigstore transparency entry: 2385992811
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 40.3 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad2b01763ed71f190651fe53faa1ec5e41ed8d6c730d0f32f25da8afff07b119
|
|
| MD5 |
87ff3fc8dcfb0a8826f8f7ed710af49c
|
|
| BLAKE2b-256 |
317121d5b0cd2350e4dbee886e459acd4aa0a980086dd211458b185916e9bdc0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-win_arm64.whl -
Subject digest:
ad2b01763ed71f190651fe53faa1ec5e41ed8d6c730d0f32f25da8afff07b119 - Sigstore transparency entry: 2385992955
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 45.3 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d1c371e90556712ec937ded4fe1986176e01ce9568749f98c562115a427ab2f
|
|
| MD5 |
952268b0422592bb6d189ba8c52cd087
|
|
| BLAKE2b-256 |
af48006c6c76f7957dc08c06b5057bfd85f7e2bfefe57bd7719de6e80eb30cea
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-win_amd64.whl -
Subject digest:
0d1c371e90556712ec937ded4fe1986176e01ce9568749f98c562115a427ab2f - Sigstore transparency entry: 2385992841
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 42.9 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a18c7dfab52b07453321b24e5be2d532e7875076e67b7295b5b471988616b541
|
|
| MD5 |
9e475b37c93b851c14c1b5159e99aa2d
|
|
| BLAKE2b-256 |
ff4e8c7ce1a990e44598b97540b4dd92bf511190da6663d5c4c76c58487279e8
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-win32.whl -
Subject digest:
a18c7dfab52b07453321b24e5be2d532e7875076e67b7295b5b471988616b541 - Sigstore transparency entry: 2385993145
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 100.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
816fccccaa736743c19f8fd687def788e0c0813f8168f88c4d169827b6726d65
|
|
| MD5 |
2601fa5fb71fd828fa02cf1ccb85cb91
|
|
| BLAKE2b-256 |
a8f48fc0795eeaaed8a7d29068e465aa60516891e95854e3ef23231d28bc0766
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
816fccccaa736743c19f8fd687def788e0c0813f8168f88c4d169827b6726d65 - Sigstore transparency entry: 2385992471
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-musllinux_1_2_s390x.whl
- Upload date:
- Size: 85.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe57aab650c771802cc7b0eb541a74b6a181cd1870f61c537294ab462fec34e8
|
|
| MD5 |
b35107ef5c85a07f5967b8fe9c0fa78b
|
|
| BLAKE2b-256 |
8ad866b3468adf62bee0c27cf39aa1f2da6d9b2e79f01d25c7af0310997502b4
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-musllinux_1_2_s390x.whl -
Subject digest:
fe57aab650c771802cc7b0eb541a74b6a181cd1870f61c537294ab462fec34e8 - Sigstore transparency entry: 2385991167
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 84.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2509dc39574f1a0c60eb5f6c968e6f064b55bea88506df25d15ba6d391b1c48
|
|
| MD5 |
186cab584d35c641e322953b94fce839
|
|
| BLAKE2b-256 |
a190f0552285b2e17ae405e675debf3fa6b999622b1cc3f72584b9cb3904584c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl -
Subject digest:
f2509dc39574f1a0c60eb5f6c968e6f064b55bea88506df25d15ba6d391b1c48 - Sigstore transparency entry: 2385992267
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 86.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
831c25fd670727aea65525b9d6cff00718f26ca92433f9ed039fe67af9825388
|
|
| MD5 |
81d6f3faf5a830afd083912c7c4f4c19
|
|
| BLAKE2b-256 |
06cec382f3401435e04a2440cbc6beb7317278baaf4e2fee28846325446f669e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl -
Subject digest:
831c25fd670727aea65525b9d6cff00718f26ca92433f9ed039fe67af9825388 - Sigstore transparency entry: 2385993254
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 97.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6b6c15473fff013dfcb0b89cfcbc922442459b08e96d37cdcf1a8bec28e4ed4
|
|
| MD5 |
892458693c45a599a462fd7d523d892a
|
|
| BLAKE2b-256 |
b821fb0e4da0de2e5bbd3a9bee14c6919550a6ebdb7344776b7730960a8d37b5
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl -
Subject digest:
c6b6c15473fff013dfcb0b89cfcbc922442459b08e96d37cdcf1a8bec28e4ed4 - Sigstore transparency entry: 2385992019
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 82.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dc71ba89766bef4bd2d9be8a827ce784f1c85915b8bcad2deefd7d892d6816e
|
|
| MD5 |
003d82024f2b2ee0ec3194cfc72da84f
|
|
| BLAKE2b-256 |
c90e5824a07fd5f64e80ea042624f0e2b03cdaa3ce786e201c02746b2552d4ff
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
7dc71ba89766bef4bd2d9be8a827ce784f1c85915b8bcad2deefd7d892d6816e - Sigstore transparency entry: 2385991206
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 90.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
678cf90273ee5fa7cedb35334c765ced4dad38608c0258445da009c1da9dd174
|
|
| MD5 |
ec65ed0f31fea5fc08de9311f2893344
|
|
| BLAKE2b-256 |
3ec5da628bb02323057cfb8653b427fb3b6c363a395e954dff38c512fdfeea56
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
678cf90273ee5fa7cedb35334c765ced4dad38608c0258445da009c1da9dd174 - Sigstore transparency entry: 2385991026
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 84.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e149af6b5a5af697725abc52aefef7e3ab036f21f5c229848b0f8bc8f26edee
|
|
| MD5 |
b453d285d16087c8d9473493098cbf31
|
|
| BLAKE2b-256 |
ff43992c2aa344020575b0539c388104cb9ef45c80429f99acd0f177d32bcce2
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl -
Subject digest:
1e149af6b5a5af697725abc52aefef7e3ab036f21f5c229848b0f8bc8f26edee - Sigstore transparency entry: 2385992071
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 88.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6a5f053f077aa8f0ffe5d4d03dd7d3fae4b85155942228a6dd20b467c4d7d80
|
|
| MD5 |
7281b6ea9c7fde1381e0ae0876e9248b
|
|
| BLAKE2b-256 |
8edcbcfc83c650a83f814235c56c810570fddb382a23ad3f79c6816e0c9b4351
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
a6a5f053f077aa8f0ffe5d4d03dd7d3fae4b85155942228a6dd20b467c4d7d80 - Sigstore transparency entry: 2385992424
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 89.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08907ffbf8381a017f6332ce02b818e672c73563ec19f38a022a34fd1c55b493
|
|
| MD5 |
b14f952c56c03474afeaaf721a44180b
|
|
| BLAKE2b-256 |
530d15b1ff749dafa2146a0a7aabff8596cc6bbb4277fb90f56a0beca9cdda92
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
08907ffbf8381a017f6332ce02b818e672c73563ec19f38a022a34fd1c55b493 - Sigstore transparency entry: 2385991060
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 87.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8e05ac71573089f25cdbad4b01db8d0b8e82846cd42291ef002d265903b1e41
|
|
| MD5 |
a478a1daec7548acfb9875ad0c1295c8
|
|
| BLAKE2b-256 |
cefe5775be12186b4bdadd9b7bceea9871af097547d5a2d8bec4e43ed9d5408e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
d8e05ac71573089f25cdbad4b01db8d0b8e82846cd42291ef002d265903b1e41 - Sigstore transparency entry: 2385992080
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 92.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1a3279af228faca3c224cc8c30aa130b5f3184ba420ac477de1db2cb99be8a7
|
|
| MD5 |
c621d1cce40ad302d2f65dad93490e72
|
|
| BLAKE2b-256 |
1ea0b935f321d7f4e6317487b9452492287f4b709465290445bb8daa104d5264
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
c1a3279af228faca3c224cc8c30aa130b5f3184ba420ac477de1db2cb99be8a7 - Sigstore transparency entry: 2385991836
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 101.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
106dc1813dff9ad1e936ab6de486bc0e19d281741c1cdcb3effe31602c571d71
|
|
| MD5 |
22cca0aa352c3d6475502ec28f2db4de
|
|
| BLAKE2b-256 |
a7cbd1d33080136e437e49d73bad2f27a1ac3129b058585c71fdab2c8783fa2c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
106dc1813dff9ad1e936ab6de486bc0e19d281741c1cdcb3effe31602c571d71 - Sigstore transparency entry: 2385990990
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 97.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0872880c9150fc79347c658937507033b8e600570569e4494e1230987e91be04
|
|
| MD5 |
65b187e1d66a8d55ca4c2616eed28a63
|
|
| BLAKE2b-256 |
866954f004e0f5ab8e7a96b1a43198e2fb554c2a94c4b78f553ebfef733377b7
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
0872880c9150fc79347c658937507033b8e600570569e4494e1230987e91be04 - Sigstore transparency entry: 2385992039
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 41.0 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5b5f72a0d761849c75b0524606707b28600eb9bf75263e7f36a7ca33627fbbb
|
|
| MD5 |
08fbae34a3e7c3573689d08b02df737a
|
|
| BLAKE2b-256 |
4b9c10bb03155f5dd605befde5b8c5f9e867b5f2b885fc3e4afdccbda02c8c0a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
f5b5f72a0d761849c75b0524606707b28600eb9bf75263e7f36a7ca33627fbbb - Sigstore transparency entry: 2385991162
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 47.7 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbf8e901a9caf045062b7a1a8f7db056c492a5a76a0c612714ed7abb5ad42f7a
|
|
| MD5 |
8ac8c4e4387cbb16787a7a1d03cf7852
|
|
| BLAKE2b-256 |
ed9a8afa00f5daa954c1f9975477648cd1c55c5c7eec2a0b0a963323ca8da286
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
fbf8e901a9caf045062b7a1a8f7db056c492a5a76a0c612714ed7abb5ad42f7a - Sigstore transparency entry: 2385992561
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 40.0 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
216a160461168c12c5ec0d6384a0dcb73e7b3c392df3e30c1fa11cff1cc8be82
|
|
| MD5 |
51baae06a2379f11209a750202bcfd37
|
|
| BLAKE2b-256 |
c6e250c2b5939360b6682742fdc6d12e3a9e37090b1d25206d25131b66e61238
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-win_arm64.whl -
Subject digest:
216a160461168c12c5ec0d6384a0dcb73e7b3c392df3e30c1fa11cff1cc8be82 - Sigstore transparency entry: 2385992711
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bb9dd97bdab9b6ba0e80f9d83e140e8263567d28878fcc52f8f0f41990926a6
|
|
| MD5 |
192835ac55147de242b0dc8474a43b03
|
|
| BLAKE2b-256 |
4532901b374323483332e7a5c4a999a571b853e945e780da0223438b3d4a7220
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-win_amd64.whl -
Subject digest:
4bb9dd97bdab9b6ba0e80f9d83e140e8263567d28878fcc52f8f0f41990926a6 - Sigstore transparency entry: 2385993204
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-win32.whl
- Upload date:
- Size: 42.6 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1003c3643cb785b90237c9fab9163dbb349b17a774f9421488a2147f7382c134
|
|
| MD5 |
950a2e17c89e0a3d189d11e2466df39d
|
|
| BLAKE2b-256 |
2174e62ccf872d585b6a9a557ee9b722a3e719fb9b478bd6aff8e741d7d59470
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-win32.whl -
Subject digest:
1003c3643cb785b90237c9fab9163dbb349b17a774f9421488a2147f7382c134 - Sigstore transparency entry: 2385991611
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
- Upload date:
- Size: 33.0 kB
- Tags: CPython 3.14, PyEmscripten 2026.0 wasm32
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6260074fae5bc47838af0fee1a6f48530d1ac7b5f49c80868144ba2f69f43145
|
|
| MD5 |
6001e9f80d10c600d4c7dd33afd46903
|
|
| BLAKE2b-256 |
ce764dcf99fb78ed8cbb5c45d4a4580ed7d3206ddf098f4d9bb03f9f292c3e7e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl -
Subject digest:
6260074fae5bc47838af0fee1a6f48530d1ac7b5f49c80868144ba2f69f43145 - Sigstore transparency entry: 2385991197
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 94.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82b38c11b73d4ea37b1d76d4690131472ce6a144166a63fedf336d88a101336b
|
|
| MD5 |
1a73aeb46cea49273230186bd2d89dd7
|
|
| BLAKE2b-256 |
1df87961ef761d93b1bca865dc84e99ce071f73b05a8f73e2759e19b42732d1f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
82b38c11b73d4ea37b1d76d4690131472ce6a144166a63fedf336d88a101336b - Sigstore transparency entry: 2385991905
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-musllinux_1_2_s390x.whl
- Upload date:
- Size: 80.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a119cdd2e59b30aa570e75182b22fa149da50e921ed8b4c492eb9ed308d944c0
|
|
| MD5 |
0706d4cab356b91ec7f08e525bb4bc31
|
|
| BLAKE2b-256 |
f5aef6cdaea0a266cdeb485f6088551b8413361947f008de21ebe1479b5c5042
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-musllinux_1_2_s390x.whl -
Subject digest:
a119cdd2e59b30aa570e75182b22fa149da50e921ed8b4c492eb9ed308d944c0 - Sigstore transparency entry: 2385991484
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 79.0 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c32f2078df7e3c4f7e573592cdcd8eb50c827cd51226291ee867c217f036abe
|
|
| MD5 |
74c8da2c99b210e54599086c16936279
|
|
| BLAKE2b-256 |
6c0075c2ccacfc7bd47d50bdc91fee3e09582ca9bf047414fcd44ed9d61e55a5
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-musllinux_1_2_riscv64.whl -
Subject digest:
1c32f2078df7e3c4f7e573592cdcd8eb50c827cd51226291ee867c217f036abe - Sigstore transparency entry: 2385991333
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 80.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40fd8e16bfde1e9d80700bbdb51a830c0f7e384c2130c4a8ed5f0912fb269cce
|
|
| MD5 |
4cae2f44889ab3b2278d146099b19b61
|
|
| BLAKE2b-256 |
2dc7a6bb0ac9aa970322ea30b37af8054a8110d2422cbe7bcaf99cee110d77db
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl -
Subject digest:
40fd8e16bfde1e9d80700bbdb51a830c0f7e384c2130c4a8ed5f0912fb269cce - Sigstore transparency entry: 2385991256
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 92.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37daeed30664d0d59dc0c99707a3a3fb723b8dffdf62266078308b9b26c7a18f
|
|
| MD5 |
b48478b9f74934470362e0321ddb49e2
|
|
| BLAKE2b-256 |
f3feeb0723048975618b73f3dc4b3b4e906b17aacd50916f3de3350a9980fbfc
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
37daeed30664d0d59dc0c99707a3a3fb723b8dffdf62266078308b9b26c7a18f - Sigstore transparency entry: 2385991853
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 77.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d16bd1cdbb63985cb2f3ec4bda4de13ba6396c1f81468941c650b4157670ee1
|
|
| MD5 |
97dc9df43e2736644b5bf5db5609b24d
|
|
| BLAKE2b-256 |
274489be4c77ebbba058ea1d263a62349d306b13d92626b2593c4b56e01321d2
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
9d16bd1cdbb63985cb2f3ec4bda4de13ba6396c1f81468941c650b4157670ee1 - Sigstore transparency entry: 2385992298
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 83.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aabdeccdd1be80735cd8cb815565d9528c767113358fac2e8eba21030e018a65
|
|
| MD5 |
d6c340197ed21975abe4da2f43dd1b47
|
|
| BLAKE2b-256 |
7a1ec897af35bdc3f4e26d1050c8ada1eb91dff87e601681bb6b8a3f47db6b42
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
aabdeccdd1be80735cd8cb815565d9528c767113358fac2e8eba21030e018a65 - Sigstore transparency entry: 2385992001
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 79.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8bc9cb80cd736785aa39be5e5d934772a36f9ba30fa71b7c19dbe1da44a306f
|
|
| MD5 |
73db15ff206ee35e0c2a9df461adc88a
|
|
| BLAKE2b-256 |
d9f40831d2736370a4afc690aabfe60e295e2773456efdc764513974f7b2b2d9
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-manylinux_2_31_riscv64.whl -
Subject digest:
a8bc9cb80cd736785aa39be5e5d934772a36f9ba30fa71b7c19dbe1da44a306f - Sigstore transparency entry: 2385991514
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 82.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be98a4e72e3821714770ed290e5e1a8a6cabe77af58520a9adf718acc43a165e
|
|
| MD5 |
060d1e76d36f72a81b9d65049dc02a72
|
|
| BLAKE2b-256 |
385e0d73f7f9d3e4579df08af94847e39a675b654b4c99330ef1b5718594406c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
be98a4e72e3821714770ed290e5e1a8a6cabe77af58520a9adf718acc43a165e - Sigstore transparency entry: 2385992617
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 83.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc41c5376b30ba7b3d558505f7598799034c8aef30e3cee00f32bf8d26fbede
|
|
| MD5 |
22074f38a0a51bc561aa1d5ca8b28746
|
|
| BLAKE2b-256 |
f3326ce14f3209f1629e11b11f1c44f545b87ebe88a2f35e469526d72f2fe0db
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
cbc41c5376b30ba7b3d558505f7598799034c8aef30e3cee00f32bf8d26fbede - Sigstore transparency entry: 2385991187
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 81.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ade98a94cd71692baf0ab21245ecf9a2f1c275460dc4106e23ce9aca1c4c1838
|
|
| MD5 |
123d285b58be72ae230cd388f2363de0
|
|
| BLAKE2b-256 |
755d5664794aff60d8df94371a466171940c3ecb081d76d24ca1327dd32aed60
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
ade98a94cd71692baf0ab21245ecf9a2f1c275460dc4106e23ce9aca1c4c1838 - Sigstore transparency entry: 2385991710
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 86.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1626f1de1d7c109e25e20528cf1ffe17d0b614baa87c9d20f6181cb65234168
|
|
| MD5 |
f07772879de20f01524be61b96ae9fc3
|
|
| BLAKE2b-256 |
f0e50476f7b28544d29225bc1b0be5fd613ab62c38080c65d55299a8f1e7e334
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
f1626f1de1d7c109e25e20528cf1ffe17d0b614baa87c9d20f6181cb65234168 - Sigstore transparency entry: 2385991755
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 95.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b391e54bc8198387cf089ffd343d8c99d58e73f209c31aa2e5f420bf20bbb0c7
|
|
| MD5 |
cdf27aa77ac26ded59cfa887b8b3575a
|
|
| BLAKE2b-256 |
860fc332c26d75b0f2bcab549fe746b6978b2928d8b94fe226333c7e94ecfdd1
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
b391e54bc8198387cf089ffd343d8c99d58e73f209c31aa2e5f420bf20bbb0c7 - Sigstore transparency entry: 2385992229
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 92.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb1734c69974acaee369726b48031c0d0117830bc050188086a69227c32d2426
|
|
| MD5 |
52a23a2ace1a5baf6dd40e69f3690fe3
|
|
| BLAKE2b-256 |
6c58cce345652b019e2a80e51b8d31bd4fa1662612ff1260dfedbcd5e1675106
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
fb1734c69974acaee369726b48031c0d0117830bc050188086a69227c32d2426 - Sigstore transparency entry: 2385992134
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.6 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3930278a6635dac4dff15f8f336ae643101608160f4525e67a9fc8416061daf
|
|
| MD5 |
19aa71f88f98dc3b4a985d07c55ae564
|
|
| BLAKE2b-256 |
223969828d263af0d31c8ca99d7cae4cf8a5a9f37a1bfc63f2a40afb9cd2a805
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
c3930278a6635dac4dff15f8f336ae643101608160f4525e67a9fc8416061daf - Sigstore transparency entry: 2385991082
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 47.4 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7c77f38e6d0b5bf8d7af9cb9c6bb9f4e62f25edc2931251d46c3ed0d89121ab
|
|
| MD5 |
0cbd967605ced90bde536514cfbaa02d
|
|
| BLAKE2b-256 |
b81efdf9e6e71090a1e31fb4967ab3042301ab71ceaa800f3b1805be29e4dfd4
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
d7c77f38e6d0b5bf8d7af9cb9c6bb9f4e62f25edc2931251d46c3ed0d89121ab - Sigstore transparency entry: 2385992852
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
- Upload date:
- Size: 46.7 kB
- Tags: CPython 3.14, iOS 13.0+ x86-64 Simulator
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
435064ff2fc778a02d1234289a22050a4d3b29752062b5ecaf45eae62273ec47
|
|
| MD5 |
4d0510ffd90f381123609fce765036f6
|
|
| BLAKE2b-256 |
60f0f6ff0e564d4d2f4ac9161d6a8445cbfb317c83ad9f79deca3c3bf27b8b79
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl -
Subject digest:
435064ff2fc778a02d1234289a22050a4d3b29752062b5ecaf45eae62273ec47 - Sigstore transparency entry: 2385993178
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
- Upload date:
- Size: 40.2 kB
- Tags: CPython 3.14, iOS 13.0+ ARM64 Simulator
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6cb9e548816e0838b10d29b061cfbbfc81b726f6c5f89d60e83bd7d703ed06b
|
|
| MD5 |
f9d6ab77bccd47b51b820e9a9221fd77
|
|
| BLAKE2b-256 |
7cfb9058281862be3a2a12b1b2bd48addf8e0eaa085c1cf75e22d49663b22a9a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl -
Subject digest:
b6cb9e548816e0838b10d29b061cfbbfc81b726f6c5f89d60e83bd7d703ed06b - Sigstore transparency entry: 2385991888
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
- Upload date:
- Size: 39.7 kB
- Tags: CPython 3.14, iOS 13.0+ ARM64 Device
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b5563aca0b7b74751dafe6cc3e1850a3401414c05342f1bbeb26549b5c3bda0
|
|
| MD5 |
e47fee0bd60ed62143a2a4578ba39ca4
|
|
| BLAKE2b-256 |
9241cef45112b1c853c58a5a47dc4fb823d1cd7c79cf24bb8424ef7fd3fbb180
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl -
Subject digest:
2b5563aca0b7b74751dafe6cc3e1850a3401414c05342f1bbeb26549b5c3bda0 - Sigstore transparency entry: 2385991155
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-android_24_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-android_24_x86_64.whl
- Upload date:
- Size: 49.9 kB
- Tags: Android API level 24+ x86-64, CPython 3.14
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b813d6eda1805d7d8acb176589ee1a51c4d0e5e3245093eddbd330d6508bf112
|
|
| MD5 |
9407d04ca056bad3f81d38a3d1305d7e
|
|
| BLAKE2b-256 |
d10c432c08ff8dad0b08035d1aaa85afedce263d321cccddd6d63282aa736800
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-android_24_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-android_24_x86_64.whl -
Subject digest:
b813d6eda1805d7d8acb176589ee1a51c4d0e5e3245093eddbd330d6508bf112 - Sigstore transparency entry: 2385993224
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp314-cp314-android_24_arm64_v8a.whl.
File metadata
- Download URL: pybase64-1.5.0-cp314-cp314-android_24_arm64_v8a.whl
- Upload date:
- Size: 44.4 kB
- Tags: Android API level 24+ ARM64 v8a, CPython 3.14
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
774fe1a69e99c60ef7f5fb3d688e85db707e232355b4c93bbb96b4d17c5503cc
|
|
| MD5 |
a54c9309f36e87cae55475f17f041597
|
|
| BLAKE2b-256 |
c74f111bc52f03b44d569af3988a0665b2747ffe0e2a94008d03c976966e962d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp314-cp314-android_24_arm64_v8a.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp314-cp314-android_24_arm64_v8a.whl -
Subject digest:
774fe1a69e99c60ef7f5fb3d688e85db707e232355b4c93bbb96b4d17c5503cc - Sigstore transparency entry: 2385991702
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 40.0 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f7ddf3a7f1c85061f246a481c63a70d7aadd0a49add8e6c109b65360fbf923e
|
|
| MD5 |
060c5e60a02733946cb6d9c98c669738
|
|
| BLAKE2b-256 |
f2c5b5814d726d05749e6d5343a61c270a3c14a1f41faa20f4044ceb4f96d87c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-win_arm64.whl -
Subject digest:
1f7ddf3a7f1c85061f246a481c63a70d7aadd0a49add8e6c109b65360fbf923e - Sigstore transparency entry: 2385991589
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 44.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d01e4d495c5b10e79de3449501e41d2bc2a4aa90844a3735eb962a3a01645971
|
|
| MD5 |
cfcde22933fad201d387d5884473cd90
|
|
| BLAKE2b-256 |
ba43157fddaa16e53e50813dc73b2cb9e4d03e797427394657e89e14a1a8843f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-win_amd64.whl -
Subject digest:
d01e4d495c5b10e79de3449501e41d2bc2a4aa90844a3735eb962a3a01645971 - Sigstore transparency entry: 2385992171
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-win32.whl
- Upload date:
- Size: 42.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91aceea4287299ee60c1176909efd6f2de091da24c0d93d2f9861c93e3776ef7
|
|
| MD5 |
8393724a8e3d3d6774dd139716958c29
|
|
| BLAKE2b-256 |
2c4b58a70d9655842161bcc3ae73efede60ad83d6d195fdf110f0c0ed808bca0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-win32.whl -
Subject digest:
91aceea4287299ee60c1176909efd6f2de091da24c0d93d2f9861c93e3776ef7 - Sigstore transparency entry: 2385991593
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
- Upload date:
- Size: 33.1 kB
- Tags: CPython 3.13, PyEmscripten 2025.0 wasm32
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92998479a2a4464d141ef709e52dc3e4d4d4ce7f3b9cb5052d2c56c55b405b15
|
|
| MD5 |
a6dd1f8d0f803bb1ce624a75163b2b66
|
|
| BLAKE2b-256 |
43ecbf6a0df18b4a627a2ad3c8897e67797cb8128fed8cda2b654dd9ddebba25
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl -
Subject digest:
92998479a2a4464d141ef709e52dc3e4d4d4ce7f3b9cb5052d2c56c55b405b15 - Sigstore transparency entry: 2385992535
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 94.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0abc0f2312c17765bf92dd382982cca9dc1b0148bf0d708f5f88339d84bb7687
|
|
| MD5 |
801f0fa4a32a191e4fb24a3b03c4940b
|
|
| BLAKE2b-256 |
bf021486ad47fc065bbaa45c12229673bb03f0480dabdba408b04a54ac480264
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
0abc0f2312c17765bf92dd382982cca9dc1b0148bf0d708f5f88339d84bb7687 - Sigstore transparency entry: 2385991300
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl
- Upload date:
- Size: 80.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1f8f1bb4158069291fe6ac2d34db942418f2804564d04b8e97722041035f843
|
|
| MD5 |
2aa83cd40e1defe37d2ea87eca05d1f9
|
|
| BLAKE2b-256 |
4dce23b80fde747156f6387a2f769fac1384e2e34cd4f07daa32e990991eb64a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl -
Subject digest:
a1f8f1bb4158069291fe6ac2d34db942418f2804564d04b8e97722041035f843 - Sigstore transparency entry: 2385992525
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 78.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e675b15b7a7b81e5b1a1e747cc49f9f9e6649d3b5e8a61719b46b9a671433210
|
|
| MD5 |
a28c50f120c9ae7da588431dc51db783
|
|
| BLAKE2b-256 |
9bf057c36867282341ccc47c0db67590dd8f0c621fd435aa5944bec4713138b5
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl -
Subject digest:
e675b15b7a7b81e5b1a1e747cc49f9f9e6649d3b5e8a61719b46b9a671433210 - Sigstore transparency entry: 2385991414
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 80.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a34261348f88443d9e234f251a1f1fcb711c1cc006824fdb29b649735d8ac35f
|
|
| MD5 |
47df479a1c55e1a6fb59d50b84061342
|
|
| BLAKE2b-256 |
8d9c22878279f1663bea15b5211056e3c8cb19c4783d2566a0032bcfa37d678b
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl -
Subject digest:
a34261348f88443d9e234f251a1f1fcb711c1cc006824fdb29b649735d8ac35f - Sigstore transparency entry: 2385992365
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 92.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d303baddeddaccada149bbee270b3e2eedcaec2df082834895cdd897a602674
|
|
| MD5 |
3bd42587c51374341852a4a3d650b23a
|
|
| BLAKE2b-256 |
246aea3a1078de626ce765402d6d3e1cb6d69f83104646bcf2e2772983be77aa
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
8d303baddeddaccada149bbee270b3e2eedcaec2df082834895cdd897a602674 - Sigstore transparency entry: 2385991870
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 77.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0597ca31c472f3071844648ce5ab86a1732033ca230daffd8f87c6f8596a8ae
|
|
| MD5 |
ce6857f4992715738e3befe7cb28e9c8
|
|
| BLAKE2b-256 |
de2fa121c58260d63d16861fd936373d07c4ab0cef51b0d7391cafaf8e4648c0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
b0597ca31c472f3071844648ce5ab86a1732033ca230daffd8f87c6f8596a8ae - Sigstore transparency entry: 2385991350
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 83.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0143b3515b97bb3c4743fbdf10f53950c0bb1fe1a2db1054b422ba370594333
|
|
| MD5 |
7a8a85eb8b2ce0aafe5fd7b88d431da9
|
|
| BLAKE2b-256 |
5506eea9cb5955430d5f789c18eab854284c66b1a024efae4928992d44bcde65
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
e0143b3515b97bb3c4743fbdf10f53950c0bb1fe1a2db1054b422ba370594333 - Sigstore transparency entry: 2385992825
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 79.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99570e43605b9c849ff1606e1691e503962250f80ec3e827249f7ad820e402d8
|
|
| MD5 |
32aaa9478f873423556e20c863894b6c
|
|
| BLAKE2b-256 |
53b88970ecca7a5945f81d34f9a91d23169f7e62e2487ef3694e0004943e7243
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-manylinux_2_31_riscv64.whl -
Subject digest:
99570e43605b9c849ff1606e1691e503962250f80ec3e827249f7ad820e402d8 - Sigstore transparency entry: 2385992052
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 82.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f315f07b269f074995c445b65dfde62d12c0e889e9c3b0534befdb05866e880
|
|
| MD5 |
3c8e4aa794c2e2172e39ecc073e81647
|
|
| BLAKE2b-256 |
742d115526e63080e96ce039619a1a29a4fe49d138c5d7d525b6adbccf0c1c0f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
1f315f07b269f074995c445b65dfde62d12c0e889e9c3b0534befdb05866e880 - Sigstore transparency entry: 2385992987
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 83.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae78cdaec57f21e7f44cc5f9866d694cc072e1b1082286f30fd74e7545fa2916
|
|
| MD5 |
16c2508e884335710d6f76669934edb1
|
|
| BLAKE2b-256 |
db385b47895e2f19f9775a3daaec98a652ba7c0ccfb480c223d981c2ec75c0ed
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
ae78cdaec57f21e7f44cc5f9866d694cc072e1b1082286f30fd74e7545fa2916 - Sigstore transparency entry: 2385992644
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 81.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0578c54f1ae89e6175eddb742dbaf2e95a060735ec11f4b661f762b635680cbd
|
|
| MD5 |
056020fb23521dfe8d12d81935ada608
|
|
| BLAKE2b-256 |
2f2448cfe7e1b776c0af1ce5240f7e71383890cd361242e537b6c510804a68d2
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
0578c54f1ae89e6175eddb742dbaf2e95a060735ec11f4b661f762b635680cbd - Sigstore transparency entry: 2385991982
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 86.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf98b77c6cca5c5da30135b69b30668da07a32d41210c62121b34c84239d9d4a
|
|
| MD5 |
fc1e07db423239eedc162019749dc0bb
|
|
| BLAKE2b-256 |
67cd441fd3b9bc7a49846362fb52a0971cee6da4dca2eb8545100ec043b2a0da
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
bf98b77c6cca5c5da30135b69b30668da07a32d41210c62121b34c84239d9d4a - Sigstore transparency entry: 2385991775
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 95.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0be37689b624ae293394fc826c9a048c6118520d6a962de033ffb054564bf61f
|
|
| MD5 |
e37d7303375035d316fd9b487914b88f
|
|
| BLAKE2b-256 |
2384b91aabd22a65a3679633855dde720dfb86571e15f88a9b1b295adda90e8c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
0be37689b624ae293394fc826c9a048c6118520d6a962de033ffb054564bf61f - Sigstore transparency entry: 2385991523
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 92.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1529b8e08a93dd9c00d1e3b3c2b627a9600d96c2f40143dc0b3a85f48fa85e5
|
|
| MD5 |
8c153dcb4fe05f2ab711d468f28b6b89
|
|
| BLAKE2b-256 |
e5c38171fd18a57218c5e7c252f658709f9bd3d0eece9d4196542230103a53d6
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
a1529b8e08a93dd9c00d1e3b3c2b627a9600d96c2f40143dc0b3a85f48fa85e5 - Sigstore transparency entry: 2385992509
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa56c549af248664ed7e1cc8ebc4dd7f1505b1444d8f3bf15b6a89b43dd4151f
|
|
| MD5 |
5f77f2ec0b93d3b0ed7c3023df457c5c
|
|
| BLAKE2b-256 |
1b64e847e8710261596b3e7cf0935041a1c96a50fb2a7f3e9e09bc495510b25a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
aa56c549af248664ed7e1cc8ebc4dd7f1505b1444d8f3bf15b6a89b43dd4151f - Sigstore transparency entry: 2385990998
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 47.2 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42196f594460a083084d8e3c2f2554c958ebd8fe19bc30ef1b938197436e7d5
|
|
| MD5 |
8ed34d9ee46b11edb38422bec993a2c2
|
|
| BLAKE2b-256 |
607bf3213973e61b8a8d1bb78203fe226e7f368698fb931249eacc09048d2141
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
d42196f594460a083084d8e3c2f2554c958ebd8fe19bc30ef1b938197436e7d5 - Sigstore transparency entry: 2385992895
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
- Upload date:
- Size: 46.7 kB
- Tags: CPython 3.13, iOS 13.0+ x86-64 Simulator
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
220d8ab003d44144d80f8b776019adedc23fdc7bcb270396744b9805a8186d0e
|
|
| MD5 |
bcffbb4b202ee1d12676c7a441736bc8
|
|
| BLAKE2b-256 |
da12085dc70e757e6101c8f61239bae538640aac60ddfebb41e2534af3712e14
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl -
Subject digest:
220d8ab003d44144d80f8b776019adedc23fdc7bcb270396744b9805a8186d0e - Sigstore transparency entry: 2385991895
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
- Upload date:
- Size: 40.2 kB
- Tags: CPython 3.13, iOS 13.0+ ARM64 Simulator
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bde27266ec4a56c38ef8e17998e430d30cc6310fde76332381bf5aaa81872ba
|
|
| MD5 |
03db7ce539b9782110ce9c2cf923c79b
|
|
| BLAKE2b-256 |
9d2cb46f7e0c1ea482db0f8445d5bfad7e5a4f39d977868e10b4c3823e94fa20
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl -
Subject digest:
1bde27266ec4a56c38ef8e17998e430d30cc6310fde76332381bf5aaa81872ba - Sigstore transparency entry: 2385991808
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
- Upload date:
- Size: 39.7 kB
- Tags: CPython 3.13, iOS 13.0+ ARM64 Device
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75d21d0a2cae0bb071c68686d77e5100be611ec4e80e0d97f8736c27da0ab197
|
|
| MD5 |
e3ef44a3eaee82967ac1929484801a92
|
|
| BLAKE2b-256 |
a517a1fc8e55551530876d3be31079b8701b7f5ac8451b63a08a19a4f9714454
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl -
Subject digest:
75d21d0a2cae0bb071c68686d77e5100be611ec4e80e0d97f8736c27da0ab197 - Sigstore transparency entry: 2385992065
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-android_24_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-android_24_x86_64.whl
- Upload date:
- Size: 49.9 kB
- Tags: Android API level 24+ x86-64, CPython 3.13
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7661246f93c902bf147d5f7d72874902ef3e49a63ca3f0de333cb8e85765d2fd
|
|
| MD5 |
cd2050d3f36e4e6fa5ec33a54dd145e4
|
|
| BLAKE2b-256 |
e59a7412bd0e2c011069c754a1ac3e05ded9eab56614eea6d9251c74a434a472
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-android_24_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-android_24_x86_64.whl -
Subject digest:
7661246f93c902bf147d5f7d72874902ef3e49a63ca3f0de333cb8e85765d2fd - Sigstore transparency entry: 2385993139
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp313-cp313-android_24_arm64_v8a.whl.
File metadata
- Download URL: pybase64-1.5.0-cp313-cp313-android_24_arm64_v8a.whl
- Upload date:
- Size: 44.4 kB
- Tags: Android API level 24+ ARM64 v8a, CPython 3.13
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e79853f8e52ab0afa7b3ae445de23767b033fa0e58ad11099d3c6b79d012c7d
|
|
| MD5 |
ecab5b7abef26fb0def2e30c3f3582f4
|
|
| BLAKE2b-256 |
2a7cb359e979a2b53f1aa9d8f2d9f90b29eda90d7dd126c2871dc49db4d6d8cf
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp313-cp313-android_24_arm64_v8a.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp313-cp313-android_24_arm64_v8a.whl -
Subject digest:
2e79853f8e52ab0afa7b3ae445de23767b033fa0e58ad11099d3c6b79d012c7d - Sigstore transparency entry: 2385991766
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 39.9 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8b5f52776f0277e72a9c7e7944f682de2b3ee4655b7972a48c53f871963741a
|
|
| MD5 |
cfd792ff97e932aa8cc82d010439e912
|
|
| BLAKE2b-256 |
b487193dbb1eaf7751527a7e0510f5670efeed8642ec647b4c7177c384a6f7e9
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-win_arm64.whl -
Subject digest:
c8b5f52776f0277e72a9c7e7944f682de2b3ee4655b7972a48c53f871963741a - Sigstore transparency entry: 2385991157
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 44.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
125945f5b3cde8b79a8f942cfdb0390f4388fb9458a41f5f2a93746e1ef3c546
|
|
| MD5 |
78d3055d7c3e47367d24bfc5803da3fa
|
|
| BLAKE2b-256 |
e080eecc05ebac8d08a2bf855cc7bbe6a37d8c76cd19c6337c9b9fbe3225ee19
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-win_amd64.whl -
Subject digest:
125945f5b3cde8b79a8f942cfdb0390f4388fb9458a41f5f2a93746e1ef3c546 - Sigstore transparency entry: 2385992113
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-win32.whl
- Upload date:
- Size: 42.4 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d691553d1a88ed87cf1837babec3663275b29de906b48433c15b298e262e5243
|
|
| MD5 |
5c7fc0eb73179b63da7d358668e6cb20
|
|
| BLAKE2b-256 |
54c0318f79b614fa03089bf4672194325dfa732790546530697b55a53612637b
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-win32.whl -
Subject digest:
d691553d1a88ed87cf1837babec3663275b29de906b48433c15b298e262e5243 - Sigstore transparency entry: 2385991092
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 93.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccbae849677648be456ea0de769a78e432d2d24f71cbdc739741e69f8160e0d7
|
|
| MD5 |
d1723b53a4e4ca102f30ce1561137ab3
|
|
| BLAKE2b-256 |
c21ab536e571518eb2f4a2db1c6c7c5913af5780ff82c9eefb41f674fed71ceb
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
ccbae849677648be456ea0de769a78e432d2d24f71cbdc739741e69f8160e0d7 - Sigstore transparency entry: 2385991690
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl
- Upload date:
- Size: 79.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26422429a0bb2f15773dacc0fcb1bcddfce68c6b2d41fc14bc7fc17f8c529542
|
|
| MD5 |
29548e725e4bd3c7f5ef3229555f22dd
|
|
| BLAKE2b-256 |
708c43b2281077ca9a531bd896b7a9fe871d091d80d172d68e439c7aa6337033
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl -
Subject digest:
26422429a0bb2f15773dacc0fcb1bcddfce68c6b2d41fc14bc7fc17f8c529542 - Sigstore transparency entry: 2385992455
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 77.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28d5db510433bb1544dc128c4e7ebd85ae57cec2a4608edd1f7ca4fed3e53b3d
|
|
| MD5 |
ff4230f9895207cb17c9b7d9cd56c17f
|
|
| BLAKE2b-256 |
e9ee8101e43b5cc070c0adf298f87500154c13b9097d4456a2c1aadd71339329
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl -
Subject digest:
28d5db510433bb1544dc128c4e7ebd85ae57cec2a4608edd1f7ca4fed3e53b3d - Sigstore transparency entry: 2385991935
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 79.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0030a64fe91791e5e553edaff3a55d319cd07fb5e097b09c5f7f45e4905c40cb
|
|
| MD5 |
7cbff27ec086a683923c2ad693eab814
|
|
| BLAKE2b-256 |
6db51707748813784af0b1340f6c6525887f1ecb393c3f88070a2bb2d86bd94e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl -
Subject digest:
0030a64fe91791e5e553edaff3a55d319cd07fb5e097b09c5f7f45e4905c40cb - Sigstore transparency entry: 2385991241
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 91.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e8b163c8d2d2a5f414f2c31cdd91024e0c91c72e735a9a564a62460ac838acb
|
|
| MD5 |
858689f3fe2476ba5435274369cc9b5d
|
|
| BLAKE2b-256 |
7132a83622dfa3162dd6fcd019dd8fbb766f0ce064fe67b3d3d2759881dbac4e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
4e8b163c8d2d2a5f414f2c31cdd91024e0c91c72e735a9a564a62460ac838acb - Sigstore transparency entry: 2385991291
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 76.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6be40c3311eabe8a816e00041844f9b249828015dc98be8a48a7c3275954ee76
|
|
| MD5 |
6dcb3e331900a7c99a58a08852c7db68
|
|
| BLAKE2b-256 |
67fa19d11ee70fbdb10e574a39ad7fc7adc06e5635a2b2ac291a6554c7c651ae
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
6be40c3311eabe8a816e00041844f9b249828015dc98be8a48a7c3275954ee76 - Sigstore transparency entry: 2385991282
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 82.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11dfa286f6c5fe6795430bf08fc44b64c98e208558215b0590c9f28fd99a92e3
|
|
| MD5 |
d5be14a82626dc24f4e3dbcda2b52512
|
|
| BLAKE2b-256 |
d899b5e9e7d4b5e49d7a984c4a26b48bdf988ec62c2778df80144af1a39bd4b1
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
11dfa286f6c5fe6795430bf08fc44b64c98e208558215b0590c9f28fd99a92e3 - Sigstore transparency entry: 2385991181
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 78.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
356e7bd1453551c06231df8411bfbaed9998fbcba2da723d84fb270ff1f977a7
|
|
| MD5 |
f2a6fa132f788b40d68617b4421ecc82
|
|
| BLAKE2b-256 |
b993dd7fd7f8ed228f7735ec59a9f85f3c683cef371a76b29520344655bf7c97
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-manylinux_2_31_riscv64.whl -
Subject digest:
356e7bd1453551c06231df8411bfbaed9998fbcba2da723d84fb270ff1f977a7 - Sigstore transparency entry: 2385992199
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 81.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb5dc922ce3cb4211caa7e29e6daee98f319e59f297a904acd74f2fdd0674356
|
|
| MD5 |
ae3f0db86cb676e73ec9284066767a6b
|
|
| BLAKE2b-256 |
c19e6b380ff964dd77b79cc1ce565b73780345132e0e181d315f31a2263c5e1f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
fb5dc922ce3cb4211caa7e29e6daee98f319e59f297a904acd74f2fdd0674356 - Sigstore transparency entry: 2385991358
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 82.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1aaae81669bf18b5a35dcb43dbb200f52b13f847a56bed7a2e82f31cc6f9f74d
|
|
| MD5 |
8dbd3c31d4c7a8170f791919e725df2f
|
|
| BLAKE2b-256 |
b8040ba9a1f2ea39baf081dd44d22d710d9b050ce15991d641982f1814508484
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
1aaae81669bf18b5a35dcb43dbb200f52b13f847a56bed7a2e82f31cc6f9f74d - Sigstore transparency entry: 2385992608
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 80.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3344ce336d9d8292125369c1475d1663e7e1a06894e8e5150307e11f782c6afd
|
|
| MD5 |
f72c23de97adccefc128363c7b96b255
|
|
| BLAKE2b-256 |
c0c65bb0f21a9f4d231339a42f16ebabc7c6d9a7d619e756327b15a474650ece
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
3344ce336d9d8292125369c1475d1663e7e1a06894e8e5150307e11f782c6afd - Sigstore transparency entry: 2385991966
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 84.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
865b7db127a95e33640ebcdb4bb3aad165d4873ee7c1008949129f3c4f900dd8
|
|
| MD5 |
bcd194e3cf04e9043ade441776f45350
|
|
| BLAKE2b-256 |
aad1fc02005906fd48081b7b8f077cd422a55399fa351c2a6d3e5fed951794ce
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
865b7db127a95e33640ebcdb4bb3aad165d4873ee7c1008949129f3c4f900dd8 - Sigstore transparency entry: 2385993154
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 94.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a2b9cf39b4d30f600df8c56cccbc03adfc6e1ae8c04cd6b181105a432d4a515
|
|
| MD5 |
e104b44a0575f7c23f98ca32e5ab56e6
|
|
| BLAKE2b-256 |
af364e44a0688efe26434bf378b4565b01ac94f81422e8a5746291a03472cd56
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
1a2b9cf39b4d30f600df8c56cccbc03adfc6e1ae8c04cd6b181105a432d4a515 - Sigstore transparency entry: 2385991437
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 91.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80b171f1546935be4dae1e01bfd8630d2712271e067858b7135726e7d9bc7cce
|
|
| MD5 |
2c21acc72e917f82d286238be9cdbc68
|
|
| BLAKE2b-256 |
1d669f1be6a4db86577eebf3106496a2a791b37e5fb74695d4c8eeedbd04490a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
80b171f1546935be4dae1e01bfd8630d2712271e067858b7135726e7d9bc7cce - Sigstore transparency entry: 2385992389
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1149b7360dd99ef1ad10618df2a4f54a00385bc8d2c1aa244c0301a548ac415
|
|
| MD5 |
d28ac792c447553ceb998856c346dabd
|
|
| BLAKE2b-256 |
b661302d65a981c9baf156e4becbbbe49f38de72906c430ab373d6d1ca0d4258
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
d1149b7360dd99ef1ad10618df2a4f54a00385bc8d2c1aa244c0301a548ac415 - Sigstore transparency entry: 2385993241
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 47.2 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9732eba18ba7fe44c1b2827bfaadf381fed3789bd7e20c990e6c8d1ceba0179b
|
|
| MD5 |
c7a46084ba8f8ce36716e7e0e3a5a8bb
|
|
| BLAKE2b-256 |
84f4dba60f937caf26a6e2be6a138f5422da9f4ec988db49bd4e329bcb435cd2
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
9732eba18ba7fe44c1b2827bfaadf381fed3789bd7e20c990e6c8d1ceba0179b - Sigstore transparency entry: 2385992723
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 39.9 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dfe4566d653684daa21f41c75c8a64a8333b36a4377ccb12a1f16e321d7d1ca
|
|
| MD5 |
1624de369d5449b705fdd80fef56c99e
|
|
| BLAKE2b-256 |
d7f8114f6da0f71003a6826fe30a24096e98eeba6c506b1f9cebb2689b01305a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-win_arm64.whl -
Subject digest:
8dfe4566d653684daa21f41c75c8a64a8333b36a4377ccb12a1f16e321d7d1ca - Sigstore transparency entry: 2385993056
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49c62921f55d9d7713faeb855bd9aad1edfb8e09e2c8133b7058d4c447bdaa6e
|
|
| MD5 |
611d91637fc693329ef16bc3728a2d3b
|
|
| BLAKE2b-256 |
119e3e0be8871e71f05fe98074f40bd5749c17567e01b2c998b1fd88530eba38
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-win_amd64.whl -
Subject digest:
49c62921f55d9d7713faeb855bd9aad1edfb8e09e2c8133b7058d4c447bdaa6e - Sigstore transparency entry: 2385992912
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-win32.whl
- Upload date:
- Size: 42.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e868946a538178990a43fa6bbeff1eb027e515d6269743e4d31d19f72daf00ac
|
|
| MD5 |
b4cdc4d08fe53391f673081ab0c1bae6
|
|
| BLAKE2b-256 |
2542b2b1ed374bf93defab1d3482713ff76a9e56b61606eca5853c10a8ff5bf4
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-win32.whl -
Subject digest:
e868946a538178990a43fa6bbeff1eb027e515d6269743e4d31d19f72daf00ac - Sigstore transparency entry: 2385992739
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 93.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a707d36935229ae5c3044cd601908cb7bd9f25757003d029765ccf66818301ce
|
|
| MD5 |
62a23fd4f6bebad854523fb454996557
|
|
| BLAKE2b-256 |
1dfede44b16a234b12adf2a2b26a758805de8e7a88e2ccd547053d3dd96d8c57
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
a707d36935229ae5c3044cd601908cb7bd9f25757003d029765ccf66818301ce - Sigstore transparency entry: 2385991388
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl
- Upload date:
- Size: 78.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0855f67fa47c0bdf237ea875c11afce2a8cd879644b288d3f05ed9effab17953
|
|
| MD5 |
d2b410254505fa61c7a29585adb68948
|
|
| BLAKE2b-256 |
bd08f366686f58858af2ec5dcedb80c394bf264927ba12c99d9a7233cca16c66
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl -
Subject digest:
0855f67fa47c0bdf237ea875c11afce2a8cd879644b288d3f05ed9effab17953 - Sigstore transparency entry: 2385991503
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 77.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
216b78caa73ae9b82f3f006e9694ee5a1bde89e50f4552fd1679b56b080cfb7e
|
|
| MD5 |
428116b28db81d378faaffbf9a19df51
|
|
| BLAKE2b-256 |
13ce57bc5269db8cd07f427e7b42149f00194106c80d02f4147411005dee7522
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl -
Subject digest:
216b78caa73ae9b82f3f006e9694ee5a1bde89e50f4552fd1679b56b080cfb7e - Sigstore transparency entry: 2385993211
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 79.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d83f517403ff39404b8586d07e97c019cb2a7cb6665cb070c6aebf1fc03e5487
|
|
| MD5 |
414faf478d2859378dbb7350374ef9f9
|
|
| BLAKE2b-256 |
8d07e2595a9b32d2e635514de93847e1dca2bd6361c34b2e142b46b0eac852f0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl -
Subject digest:
d83f517403ff39404b8586d07e97c019cb2a7cb6665cb070c6aebf1fc03e5487 - Sigstore transparency entry: 2385990963
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 90.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d02948944dad3e99ebe70a3049d7df66f5faba97ed03b411349b034558ed936
|
|
| MD5 |
a6d4204e272c1f72a6924e121d178d32
|
|
| BLAKE2b-256 |
402e4dfee2d5c37473cb91204dac4f1df83710da30fcd93ae345c2a5acb6bdb9
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
5d02948944dad3e99ebe70a3049d7df66f5faba97ed03b411349b034558ed936 - Sigstore transparency entry: 2385991642
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 75.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d373b682dd0a267ece21869ca9a48d40b55120a3be714661ad0e9afdce9ce27e
|
|
| MD5 |
131c094bdaede9c26d2ca35160d20428
|
|
| BLAKE2b-256 |
7771d0559d16467c42ac91501e5e423d65be1801dd5ebf40f4a244134c760a46
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
d373b682dd0a267ece21869ca9a48d40b55120a3be714661ad0e9afdce9ce27e - Sigstore transparency entry: 2385992694
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 81.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
716aed288780c9c2081943a3a7b5be6993cdad56b0cdcb4ef4b562ef56c5a1ae
|
|
| MD5 |
88ab393daaeba1145f5ade8a8bcf207d
|
|
| BLAKE2b-256 |
206c57d95e6ff206d7aabb0a6ec54a8d860ca1e0c84fee611eacfe95945b7478
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
716aed288780c9c2081943a3a7b5be6993cdad56b0cdcb4ef4b562ef56c5a1ae - Sigstore transparency entry: 2385993131
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 78.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a167f17421c237a32c93072a053ff756d9fb225e69a620c3f4818665f0520044
|
|
| MD5 |
ebf5ac83c95fedd394b23addb9be2c46
|
|
| BLAKE2b-256 |
9d8009093682d7834a0cf8516b4d9b2b9ba579abb54c56046666ab12f97208d7
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-manylinux_2_31_riscv64.whl -
Subject digest:
a167f17421c237a32c93072a053ff756d9fb225e69a620c3f4818665f0520044 - Sigstore transparency entry: 2385991131
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 80.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3935b4402f257d9c7448944db07f91d6fc20453f8c3f0fa1bf26c490b534c84
|
|
| MD5 |
88c141d4a10b13b70d674060d7f854d0
|
|
| BLAKE2b-256 |
86372ec5e90db7c1d01c126b02933adb31838ed8f4d8834193c4f2c1440e2c28
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
c3935b4402f257d9c7448944db07f91d6fc20453f8c3f0fa1bf26c490b534c84 - Sigstore transparency entry: 2385991173
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 81.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3398eb35a82a94d61756f7a4ad6a1c5a3e735c6abb97167398a22389a9b8ca7a
|
|
| MD5 |
2e1bc9ae4f33ecaba7e3449c194ab4d4
|
|
| BLAKE2b-256 |
98f2db862e347968eeecf96729244f092a8e1d9bbc1daf94aef4baf3446296d5
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
3398eb35a82a94d61756f7a4ad6a1c5a3e735c6abb97167398a22389a9b8ca7a - Sigstore transparency entry: 2385992253
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 79.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
897ca382ec6c7bad041ce7b3a64b3a15f1b639dfea89ffcf29bdd235c706fac3
|
|
| MD5 |
f65575a0b25c9c8988770297cbaed484
|
|
| BLAKE2b-256 |
fdcf44aa61b4738b9827e50fc081c9072d553fc538a372580a6326771848d1cd
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
897ca382ec6c7bad041ce7b3a64b3a15f1b639dfea89ffcf29bdd235c706fac3 - Sigstore transparency entry: 2385992786
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 83.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b08e4a065c9fa88ab9b8a2345b58073776806488b1ff5e4348957d0aa218043
|
|
| MD5 |
7e5f3574bae7cff416b9cce83d03e492
|
|
| BLAKE2b-256 |
20c066a721f8d0d5f3d43704b78b30ddc51d07eef24ddf94470c8e1808b0826f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
8b08e4a065c9fa88ab9b8a2345b58073776806488b1ff5e4348957d0aa218043 - Sigstore transparency entry: 2385991673
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 94.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93bc9bdfaf87dc7d79ee0182b255383b7f82a3167d0166b99330d897b59f9053
|
|
| MD5 |
3dba0301991ffb44706eaff543e9f2c2
|
|
| BLAKE2b-256 |
fdee591f24aef04e1ca569450b85c86df0f8a8b3dda04f68cdbf6101312456d7
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
93bc9bdfaf87dc7d79ee0182b255383b7f82a3167d0166b99330d897b59f9053 - Sigstore transparency entry: 2385992925
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 90.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
045fa2f3f5da6cfa86822c645b92e18cfc7c13babccb5ceec9bb64a17ac3f1bc
|
|
| MD5 |
3113496ff15686525e88f4432c1705a5
|
|
| BLAKE2b-256 |
29f896c1413310f696ecd3364d887073f73708121469ff7f3bd3e24ec8dece6d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
045fa2f3f5da6cfa86822c645b92e18cfc7c13babccb5ceec9bb64a17ac3f1bc - Sigstore transparency entry: 2385991225
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2615d10e4cad323925d2f7d904ae38c6ae439b33069a0d56cc4ce64ea4c9b339
|
|
| MD5 |
5fe964b54d56fa4df97efabcbd2ed17b
|
|
| BLAKE2b-256 |
0d30c0471ba2ef6e15f153b8dd629c66f919f3f770c372c703a5637503282097
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
2615d10e4cad323925d2f7d904ae38c6ae439b33069a0d56cc4ce64ea4c9b339 - Sigstore transparency entry: 2385992331
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 46.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43df778a20db59f231b02c6dd70958e1fad532fc8a4f6bebb0555e74abe01898
|
|
| MD5 |
96f9c82dcd0a95a154c5870dd64fc2eb
|
|
| BLAKE2b-256 |
868597242944a88812139762723196e27a24a1484535c7e614c808f513b6dbc5
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
43df778a20db59f231b02c6dd70958e1fad532fc8a4f6bebb0555e74abe01898 - Sigstore transparency entry: 2385991919
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 39.9 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e6afda6996523b29d42b8b9dba309d2bad53fd2eaa06189d735c8c7e2885455
|
|
| MD5 |
a83b0e999e0c9a78b08db266173e5262
|
|
| BLAKE2b-256 |
86aa3b21a1a11da0dc0e2e97199da211eb9939fce51fe6b98680777ab53fb897
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-win_arm64.whl -
Subject digest:
8e6afda6996523b29d42b8b9dba309d2bad53fd2eaa06189d735c8c7e2885455 - Sigstore transparency entry: 2385992752
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
283d2fabf23e356e72b4fb8a59f5e319202c0328c748f6596f14459b0650bfbb
|
|
| MD5 |
58f3956922a1e5281f6eaa4ef001a80b
|
|
| BLAKE2b-256 |
35bcace0ad65a17acd0ecb762f5e1fb5c4a99a0bb02a2866ffb591e50b2ede05
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-win_amd64.whl -
Subject digest:
283d2fabf23e356e72b4fb8a59f5e319202c0328c748f6596f14459b0650bfbb - Sigstore transparency entry: 2385991377
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-win32.whl
- Upload date:
- Size: 42.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
352860c3c88a6ff74ed877755e20084e7645cbd5ed973448ca38f83c0aebc2ec
|
|
| MD5 |
606e23b5d37ed8793a2d2f9b4c22a828
|
|
| BLAKE2b-256 |
e1ffee054f2750b35727afd85a41a6d5e84be2130468d2ad10f7e0deacf64683
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-win32.whl -
Subject digest:
352860c3c88a6ff74ed877755e20084e7645cbd5ed973448ca38f83c0aebc2ec - Sigstore transparency entry: 2385992150
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 90.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc5b02c33ee9dee2cb3487c5d381bf931ff22144b1711fa093727fba991347ea
|
|
| MD5 |
b05357658359a1e45148d41bb09b5a5a
|
|
| BLAKE2b-256 |
e83c92bd29e54206d300eec94f7b634b48f1de97e0ffc0cb70c481ec2751a586
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
dc5b02c33ee9dee2cb3487c5d381bf931ff22144b1711fa093727fba991347ea - Sigstore transparency entry: 2385992381
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl
- Upload date:
- Size: 75.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3455b23f785486a5ab3d2b8bfc7f573d1bab0a10d061fb9b7f596096e316ae2
|
|
| MD5 |
4c5f9d708585520757fb8c7b38278ca9
|
|
| BLAKE2b-256 |
194ea29aab4757a46ed957306ed76004db8315de6da09535bbb4a34c213d9c1d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl -
Subject digest:
c3455b23f785486a5ab3d2b8bfc7f573d1bab0a10d061fb9b7f596096e316ae2 - Sigstore transparency entry: 2385991327
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 75.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aea6ab63971f72f69b2cace481e0df9cb01486317296e7809a086a71864a6013
|
|
| MD5 |
33c472a27ec7cda150b96d49c8f71127
|
|
| BLAKE2b-256 |
7b2d03d706e2a1afa19e79d0b86170eedaf921e4889fe69e78c005892ccad3bf
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-musllinux_1_2_riscv64.whl -
Subject digest:
aea6ab63971f72f69b2cace481e0df9cb01486317296e7809a086a71864a6013 - Sigstore transparency entry: 2385993108
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 76.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a80226a2135de8a454e6812dd604d1c42c4e94269223b242395d689bf247824f
|
|
| MD5 |
8f1b49e75accf05bcd5c393a6469e8ea
|
|
| BLAKE2b-256 |
a9c233026e61bf216a2e9f65a0ab7de4ec504c6fbdac0d6597cc5077838ac9f0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl -
Subject digest:
a80226a2135de8a454e6812dd604d1c42c4e94269223b242395d689bf247824f - Sigstore transparency entry: 2385992938
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 88.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0234b8f85c8816e82bbabf67a37014c3aaa2a668d3ab92fb5ef52c511318c84a
|
|
| MD5 |
5119106afedff68ec35c6f96709bf0ea
|
|
| BLAKE2b-256 |
1bd9ee6825788704f64f37a4f8215f109985fb46b38f30e3791e2403f42997e2
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
0234b8f85c8816e82bbabf67a37014c3aaa2a668d3ab92fb5ef52c511318c84a - Sigstore transparency entry: 2385991533
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 72.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ab1a34d824efc0bf235c0abf9415256bbd74288cdfc47f6646ec9fce04076f9
|
|
| MD5 |
de064f316d4e3b35a13f9c59c753bc8f
|
|
| BLAKE2b-256 |
3e0488e7c5043bbf459123b1cae785c7f0bd15fc3c524ca5e6df47b3170dc06d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
6ab1a34d824efc0bf235c0abf9415256bbd74288cdfc47f6646ec9fce04076f9 - Sigstore transparency entry: 2385991212
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 79.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ec51301e1f9f1fbdbd3bb6b34e0df08f5272937e0f86f535e9616341eb452af
|
|
| MD5 |
950754bd5fe2bb21b36666e9876e9504
|
|
| BLAKE2b-256 |
2748f7d8387969113a0b590de921fb5ab4d7e9d554a783477f15a7ab4056bf31
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
7ec51301e1f9f1fbdbd3bb6b34e0df08f5272937e0f86f535e9616341eb452af - Sigstore transparency entry: 2385991273
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 76.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7010b9ce91aaea5e389a7c4de0b8459a5a05a6795921124d8c82928eb13c4a9
|
|
| MD5 |
01de8f97aecb56a985101f42d9206cdb
|
|
| BLAKE2b-256 |
cc7baa7ebbcd0f9b4d50c8e83aaa1388d7e94fd63d84d35720b67ea865d4a87a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-manylinux_2_31_riscv64.whl -
Subject digest:
c7010b9ce91aaea5e389a7c4de0b8459a5a05a6795921124d8c82928eb13c4a9 - Sigstore transparency entry: 2385991322
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 78.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f091c932bef000b8dff3ee00dfd8769e138021770d46d577168d802af7abd22b
|
|
| MD5 |
6886c77f28b16a608fd7ddf9a24b1d9f
|
|
| BLAKE2b-256 |
3658fb24daf5a2d7e762528f60d992c7a37ec50e68945a003443af5a7808d531
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
f091c932bef000b8dff3ee00dfd8769e138021770d46d577168d802af7abd22b - Sigstore transparency entry: 2385992392
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 79.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
282bd86c49ddd905bc9b8f166433b4e2e07f6130a273a5ca61c55f44005a263b
|
|
| MD5 |
31eb19b76f9b859e059b384398b99ec0
|
|
| BLAKE2b-256 |
42ef843ef314651c98e62d1a734fa444f462488e7663d6423d582aeafa4e452c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
282bd86c49ddd905bc9b8f166433b4e2e07f6130a273a5ca61c55f44005a263b - Sigstore transparency entry: 2385991105
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 77.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
305ae0210e974f5d0dad3f0052559a83297433412e6ba0f8a6aed93bb4083ddb
|
|
| MD5 |
ad55b05e9935b8d48496a71dec1e6fdd
|
|
| BLAKE2b-256 |
0973a190bb18050f641a3b7d20a382c6f2f0b6d0747fc19220b9294a981af6bb
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
305ae0210e974f5d0dad3f0052559a83297433412e6ba0f8a6aed93bb4083ddb - Sigstore transparency entry: 2385991744
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 81.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eadf5e5fa8c0e2f15a3fe6f5513882f33b4a1b77d8c8cc9252c1e0dcc9e5bf6a
|
|
| MD5 |
718e5bdefb8852c987a2dd31ee429140
|
|
| BLAKE2b-256 |
dc51247e670ed36906dd0b7212b5bbe896b5d0f6d79061fdfb1118680c4816a8
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
eadf5e5fa8c0e2f15a3fe6f5513882f33b4a1b77d8c8cc9252c1e0dcc9e5bf6a - Sigstore transparency entry: 2385992101
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 91.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd4abc5f83ea43fe977caa7111af763e0f2ad5f4143a55abaef8bc4efe4fe30c
|
|
| MD5 |
b7794b252328a6f6a3e30e5b080ea8f3
|
|
| BLAKE2b-256 |
1e454cd44eacb152901c728eac25be8edaf261f2be7b07be690523fe9dc1b7c9
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
dd4abc5f83ea43fe977caa7111af763e0f2ad5f4143a55abaef8bc4efe4fe30c - Sigstore transparency entry: 2385992349
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 88.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32db63c2b2ebbd1152538e0c405bcb38bbaed1adba0efea04bd3d4b33e9cec70
|
|
| MD5 |
fddd205ca08d6dd602198e307aa6d90b
|
|
| BLAKE2b-256 |
5e803f0562eb2e8a84bbd895cf20b0fe7825f3ae6a37c11f281901cb5c739157
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
32db63c2b2ebbd1152538e0c405bcb38bbaed1adba0efea04bd3d4b33e9cec70 - Sigstore transparency entry: 2385991667
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.4 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43885294c9e7c79c4a43c42fe759a82e92d8822fe3e7f2f8b23af90e5dbc4269
|
|
| MD5 |
5e3e1726e747d74cfec008796bdeff79
|
|
| BLAKE2b-256 |
58ea1b16acb03a19a898e7d96f81de4205c65e73b99b8c9f7237849e62ec0f00
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
43885294c9e7c79c4a43c42fe759a82e92d8822fe3e7f2f8b23af90e5dbc4269 - Sigstore transparency entry: 2385992162
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 46.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30b0bc5add7b5ffbf9e8f84ad8cbbeeac420da70666d32bedecdbf2051e15592
|
|
| MD5 |
9cd6028decf70ac93ca1f91ec83aecd1
|
|
| BLAKE2b-256 |
0d41575bcf8d2f67e32cfde5bec8356e4d42c5d2d67452d47d529ee4a2abd86c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
30b0bc5add7b5ffbf9e8f84ad8cbbeeac420da70666d32bedecdbf2051e15592 - Sigstore transparency entry: 2385992481
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 39.9 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37e0adc6147a9d3bbf22f77f25fd8706c4179e861d4605173841ae4095a205a0
|
|
| MD5 |
830e8a1373d597125e985ebdb4150b73
|
|
| BLAKE2b-256 |
6a68a6e6fb9da33956cad22cd8f6ebbed80dc68762ffb3fa14f3b8c7b786822c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-win_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-win_arm64.whl -
Subject digest:
37e0adc6147a9d3bbf22f77f25fd8706c4179e861d4605173841ae4095a205a0 - Sigstore transparency entry: 2385992432
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c6e18fb581e9ec9e65c60ba7c752ef409b2472319ebdfa53cce0679669a4bb9
|
|
| MD5 |
919b53fb2f049df896cb683d45491227
|
|
| BLAKE2b-256 |
80f7ae7815b81b4e391980cd791053032c9a8b90173792b61188cf48a071f6d3
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-win_amd64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-win_amd64.whl -
Subject digest:
3c6e18fb581e9ec9e65c60ba7c752ef409b2472319ebdfa53cce0679669a4bb9 - Sigstore transparency entry: 2385991117
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-win32.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-win32.whl
- Upload date:
- Size: 42.4 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76ca8ca7ff922c5d51395fb72b1ee2f8e9ec896c293c3c5b3bca81f71653fed9
|
|
| MD5 |
1a8ac6a10e394f01c48bf0d920188f50
|
|
| BLAKE2b-256 |
0bad93b78d9bbe33ee08766041f05b2c35bfb664d01b8ba8511996d2dc6d9e40
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-win32.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-win32.whl -
Subject digest:
76ca8ca7ff922c5d51395fb72b1ee2f8e9ec896c293c3c5b3bca81f71653fed9 - Sigstore transparency entry: 2385991407
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 90.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9c391fc80f26bd809ce472208121718552483bb0ad649ed771bd705dba91a1f
|
|
| MD5 |
e0c1c9fe5c5746b53efa72b68ceb97ab
|
|
| BLAKE2b-256 |
e22c23881fb9924c2d96183c363ec3a6167ae4bd254a038ccb71af80f530993c
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
c9c391fc80f26bd809ce472208121718552483bb0ad649ed771bd705dba91a1f - Sigstore transparency entry: 2385991732
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl
- Upload date:
- Size: 75.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df018a1067ccf82ecc40484d2f2ad495a9f06a47c310265a53162a84f417a9dd
|
|
| MD5 |
04141c95580d4a5581d9fd22031eaa64
|
|
| BLAKE2b-256 |
be2ca0bd7e0cd11ca49de045287d4ce511c7656cd486d802d4b7778f45b1e59a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl -
Subject digest:
df018a1067ccf82ecc40484d2f2ad495a9f06a47c310265a53162a84f417a9dd - Sigstore transparency entry: 2385990983
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 75.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b5bc65829f567e11e83de59e4bfcccd8827a0da01cd525d1872f9cc3a8cd520
|
|
| MD5 |
3d42c94f8eb01df302923d53ccd4ac6a
|
|
| BLAKE2b-256 |
43d2294b81301cca7059001f862136453aaf98d4ab8eb6e051d24f2302a296d5
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-musllinux_1_2_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-musllinux_1_2_riscv64.whl -
Subject digest:
6b5bc65829f567e11e83de59e4bfcccd8827a0da01cd525d1872f9cc3a8cd520 - Sigstore transparency entry: 2385993198
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 76.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1a65d388032eeec4018de3b80e83a8dfa841f663c1d7e14beea4bc5cf4eac61
|
|
| MD5 |
2e4af7270fa39d41f7d48593203c00f9
|
|
| BLAKE2b-256 |
52f9a5cd188e24c7d71d8ae0d229509a8113ec1ea12565f09040f4161cd77356
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl -
Subject digest:
b1a65d388032eeec4018de3b80e83a8dfa841f663c1d7e14beea4bc5cf4eac61 - Sigstore transparency entry: 2385992404
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 87.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dadbc503888b18722f8e5c988ab67f555279263998e73d0a946f8bc9eaf4f745
|
|
| MD5 |
93ef8b79e14f430049ad5764b117d68d
|
|
| BLAKE2b-256 |
a77df8a25bf6f54bd077bd7d489e9e3d5ed92966e7c6a0b8fe7c2341f213a36d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
dadbc503888b18722f8e5c988ab67f555279263998e73d0a946f8bc9eaf4f745 - Sigstore transparency entry: 2385991295
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 72.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e34137a2fe746c8784a937fe74bde983b3d790f8aedf8625f1645d2744b01966
|
|
| MD5 |
841801bb90a0c2a28fd74611fc2880e6
|
|
| BLAKE2b-256 |
6782861210c9ceec0319e2af85ec8289fa218bdf266fd4181e7e37ceb31e845a
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
e34137a2fe746c8784a937fe74bde983b3d790f8aedf8625f1645d2744b01966 - Sigstore transparency entry: 2385991368
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 79.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb1030e8b12b4ef517b142f169f610b7971784188a86da19177e78d2481de6e6
|
|
| MD5 |
d19228a7e000ffc0f5c59ce4ddb5847c
|
|
| BLAKE2b-256 |
219e5a6a552877fbeac25db911b2debae48bc116cb00f10c4e95356c7fee1f5f
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
bb1030e8b12b4ef517b142f169f610b7971784188a86da19177e78d2481de6e6 - Sigstore transparency entry: 2385992214
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 75.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9043a0a4d93affc7c78f78023ab155b1128f819a900d08e3c2da29987062ab4c
|
|
| MD5 |
2b64f01287323b3e52e43d8e6efaae14
|
|
| BLAKE2b-256 |
43b385de54fac586a11a9a9cda54494c31fddd3b412bf76f9f91e472946c66a4
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-manylinux_2_31_riscv64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-manylinux_2_31_riscv64.whl -
Subject digest:
9043a0a4d93affc7c78f78023ab155b1128f819a900d08e3c2da29987062ab4c - Sigstore transparency entry: 2385991455
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Upload date:
- Size: 77.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44e8a5ac6a2f69894f1bc980d1397312c77f8d313a5e721b6409959b52c18330
|
|
| MD5 |
33c7cef6d2e4b5612a0ed7adeeb79f5a
|
|
| BLAKE2b-256 |
de7ab7c508c8fd8fe34579b7e0bfc7238c911304571e9c6c9eecb1f72d233397
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
44e8a5ac6a2f69894f1bc980d1397312c77f8d313a5e721b6409959b52c18330 - Sigstore transparency entry: 2385991657
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Upload date:
- Size: 78.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8caba079f6d36885b67f94e92dedf3663219a5f7d76a5f744045b4b7618d77f
|
|
| MD5 |
aef37fd357a5343d5e23700d74e585ea
|
|
| BLAKE2b-256 |
c2d3223019ff2a840753e5587aca999898ea1cdb7ca97ddea82f4a4cdcbadead
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
c8caba079f6d36885b67f94e92dedf3663219a5f7d76a5f744045b4b7618d77f - Sigstore transparency entry: 2385991426
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Upload date:
- Size: 77.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc35889ddf38f5036eb98617c065f0c9245e37e9dad16209b7e55e9e30b449de
|
|
| MD5 |
16c05f7750b53cdb35baf1a04838cc71
|
|
| BLAKE2b-256 |
583e7c07b6bd7fdd8096adf32d8bf2af39296261f4b1264f5aafb705666700de
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
cc35889ddf38f5036eb98617c065f0c9245e37e9dad16209b7e55e9e30b449de - Sigstore transparency entry: 2385993094
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 81.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e5ffb327f6df95bbe49e517eb3f4ce5127cc6bf9a7065f32e457ed51fac7c97
|
|
| MD5 |
9d53373e6e08cc98302a4b8f6fe1f3f1
|
|
| BLAKE2b-256 |
e42ae00cdd312f64f24390adfd0f8e237f3efeaf22026ee24a87449cc3817aff
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
4e5ffb327f6df95bbe49e517eb3f4ce5127cc6bf9a7065f32e457ed51fac7c97 - Sigstore transparency entry: 2385992317
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 91.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
967ec267e9c36c50b8a7e2ab188ab3036024e8ddb9f036eb97fc32a431d201de
|
|
| MD5 |
5b0fd7fb9a4dca10d97111dda36224a1
|
|
| BLAKE2b-256 |
467f969a2abe2b79b9e70d032ed8185a5800e015efbb37e62f5e37b870ef46f0
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
967ec267e9c36c50b8a7e2ab188ab3036024e8ddb9f036eb97fc32a431d201de - Sigstore transparency entry: 2385991145
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 88.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1ddf909fc9ee5f590de65a4595171aaf0d26656d81d1f50af49c4a73713725d
|
|
| MD5 |
82dd5cbe2defb17be11f7f2f55d5cc46
|
|
| BLAKE2b-256 |
9f32182354e82b1559d01ecba7aeb497aa3c5e6711effa79f557d324aad2a16d
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl -
Subject digest:
d1ddf909fc9ee5f590de65a4595171aaf0d26656d81d1f50af49c4a73713725d - Sigstore transparency entry: 2385991719
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 40.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd4ea6385741cdcaa01b516b170d69fb27cf4cc91ea9308ce4ab6de0482bcd7a
|
|
| MD5 |
ce602dc7fe473311a1ae5c1fed9d2648
|
|
| BLAKE2b-256 |
4a69fab5e5dbe38a24cfc4ad365636df82ffa42d10098892b4e43b301459efb1
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
bd4ea6385741cdcaa01b516b170d69fb27cf4cc91ea9308ce4ab6de0482bcd7a - Sigstore transparency entry: 2385991824
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pybase64-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pybase64-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 46.8 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19e047b417c39264062edd94d0012fc159573d57da7fa3633852f13d07f6e522
|
|
| MD5 |
80573efb6f8f648e15c799c4ab26287a
|
|
| BLAKE2b-256 |
5aecd6137703557e5f793b519ba0e2a1ddd0bd357698c4177813838ffd44648e
|
Provenance
The following attestation bundles were made for pybase64-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
build-upload.yml on mayeut/pybase64
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pybase64-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
19e047b417c39264062edd94d0012fc159573d57da7fa3633852f13d07f6e522 - Sigstore transparency entry: 2385992798
- Sigstore integration time:
-
Permalink:
mayeut/pybase64@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Branch / Tag:
refs/tags/v1.5.0 - Owner: https://github.com/mayeut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-upload.yml@cbcf6af196611a41cb1db38dd287f6b692817d14 -
Trigger Event:
push
-
Statement type: