Cross-platform Python bindings for the onionlink Tor v3 onion-service client
Project description
onionlink
onionlink is a small Rust Tor v3 onion-service client with Python bindings. It talks directly to Tor relays, builds the minimum circuits needed for v3 onion-service access, and can exchange raw bytes or a simple HTTP request with the service.
Security and anonymity are explicit non-goals. This is a protocol experiment and interoperability tool, not a replacement for Tor Browser, Arti, or the Tor daemon.
What It Implements
- Downloads and parses the live microdescriptor consensus.
- Hydrates relay microdescriptors to obtain Ed25519 identities and ntor keys.
- Derives the v3 onion-service blinded key and subcredential.
- Selects HSDirs and fetches the v3 descriptor over a guarded
EXTEND2circuit. - Decrypts unprotected v3 onion-service descriptors.
- Parses introduction points, including link specifiers, intro ntor keys, auth keys, and service encryption keys.
- Establishes a rendezvous point over a guarded
EXTEND2circuit. - Sends
INTRODUCE1over a guarded intro-point circuit. - Completes hs-ntor from
RENDEZVOUS2. - Opens a stream to
:<port>and sends/receives relay data.
Dependencies
- Rust 1.83 or newer
- Python 3.8 or newer for the Python package
maturinfor Python wheel builds
The codebase is intended to be platform-agnostic; install the equivalent Rust,
Python, and maturin tooling for your platform. The release workflow builds
prebuilt wheels for Linux x86_64 and Windows x64 on Python 3.8+, macOS ARM64 on
Python 3.10+, and macOS x86_64 on Python 3.8 and 3.9. Other platforms can build
from source with the same toolchain. Linux package examples:
On Arch Linux:
sudo pacman -S rust python python-pip
On Debian/Ubuntu-style systems:
sudo apt install build-essential curl python3 python3-pip
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Use your platform's Python launcher in place of python below if needed, such
as python3 or py -3.
Build
cargo build --workspace
Build Linux x86_64 manylinux Python wheels with Docker:
docker build --target wheels --output type=local,dest=dist .
This writes Python 3.8+ x86_64 manylinux wheels into dist/, including
cp313t and cp314t free-threaded wheels. This Docker recipe targets
Linux/manylinux and uses maturin to build the PyO3 extension.
Build a wheel directly on the current host with the native dependencies installed:
python -m pip wheel . -w dist
Run deterministic Rust parity tests:
cargo test --workspace
Run Python API tests after installing the test extra:
python -m pip install -e '.[test]'
PYTHONPATH=src python -m pytest
Python Client
The Python package exposes an OOP session API. A Session downloads the
microdescriptor consensus and hydrates relay microdescriptors once, then reuses
that directory state for multiple onion-service requests. Request methods release
the Python GIL while doing network work, so one initialized session can be used
from a ThreadPoolExecutor, regular worker threads, or asyncio.to_thread on
Python versions that provide it.
from concurrent.futures import ThreadPoolExecutor
from onionlink import Session
session = Session(timeout_ms=30_000, verbose=False)
def fetch(onion: str) -> bytes:
return session.get(onion, port=80, path="/").body
onions = [
"archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion",
]
with ThreadPoolExecutor(max_workers=4) as pool:
for body in pool.map(fetch, onions):
print(body[:200])
For native asyncio call sites, use AsyncSession. It keeps the synchronous
API shape and uses native PyO3/Tokio awaitables when the extension exposes
them, with an executor fallback for older bindings:
import asyncio
from onionlink import AsyncSession
async def main() -> None:
async with AsyncSession(timeout_ms=30_000) as session:
response = await session.get(
"archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion",
port=80,
path="/",
)
print(response.status_code, response.body[:200])
asyncio.run(main())
Cancelling an awaited async request stops waiting for its result, but the
underlying native blocking task can continue until the request finishes or the
configured timeout_ms is reached.
The PyO3 extension declares gil_used = false, and native bootstrap/request
work detaches from the Python runtime while running. Free-threaded wheels are
therefore built for py313t and py314t without re-enabling the GIL on import.
Raw request bytes are also supported:
from onionlink import Session
session = Session(bootstrap="128.31.0.39:9131", timeout_ms=30_000)
response = session.raw_request(
"exampleexampleexampleexampleexampleexampleexampleexampleexampleexample.onion",
1234,
b"hello\n",
)
Use request() for full HTTP control:
from onionlink import Session
session = Session(timeout_ms=30_000)
response = session.request(
"POST",
"exampleexampleexampleexampleexampleexampleexampleexampleexampleexample.onion",
port=80,
path="/api/items",
params={"trace": "1"},
headers={"Accept": "application/json"},
json={"name": "test"},
response_limit=8 * 1024 * 1024,
)
response.raise_for_status()
print(response.status_code, response.header("content-type"))
print(response.text)
Session constructor arguments:
bootstrap: HTTP directory cache ashost:port.consensus_file: optional localconsensus-microdescfile.timeout_ms: TCP/TLS read timeout.verbose: print native bootstrap and rendezvous progress to stderr.
Request methods:
request(method, onion, *, port=80, path="/", params=None, headers=None, body=None, data=None, json=None, form=None, host=None, http_version="HTTP/1.0", response_limit=4194304) -> Responseget/head/post/put/patch/delete/options(onion, **request_options) -> Responsehttp_get(onion, port=80, path="/", response_limit=4194304) -> bytesraw_request(onion, port, payload=b"", response_limit=4194304) -> bytesbuild_http_request(*, method, onion, path="/", headers=None, body=None, host=None, http_version="HTTP/1.0") -> bytes
AsyncSession exposes the same request methods as awaitables, plus
await AsyncSession.create(...) for eager initialization and
async with AsyncSession(...) for context-manager style initialization. It also
accepts an executor for the fallback path.
Response exposes status_code, reason, headers, body, raw,
http_version, ok, text, encoding, header(name, default=None), and
raise_for_status().
Usage
cargo run -p onionlink-cli -- <service-v3-address>.onion <port> [options]
Fetch / over HTTP with the CLI:
cargo run -p onionlink-cli -- \
archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion 80 \
--http-get / \
--verbose
Send raw text:
cargo run -p onionlink-cli -- <service-v3-address>.onion 1234 --send "hello"
Forward standard input:
printf 'hello\n' | cargo run -p onionlink-cli -- <service-v3-address>.onion 1234 --stdin
Options
--bootstrap host:portselects the HTTP directory cache used for bootstrap. The default is128.31.0.39:9131.--consensus-file pathuses a local microdescriptor consensus instead of downloading one.--timeout-ms nsets TCP/TLS read timeouts. The default is30000.--http-get [path]sends a simple HTTP/1.0 GET after connecting. Ifpathis omitted,/is used.--send textsends raw text after the stream opens.--stdinforwards standard input after the stream opens.--verboseenables progress logging for bootstrap, descriptor, intro, rendezvous, and stream activity.
Logging uses env_logger. --verbose defaults the CLI log level to info; set
RUST_LOG for more control, for example:
RUST_LOG=onionlink_core=debug,onionlink=info cargo run -p onionlink-cli -- <service-v3-address>.onion 80 --http-get /
If no send mode is provided, --http-get / is used by default.
Limitations
The implementation intentionally omits substantial parts of a real Tor client:
- no consensus, directory, relay, descriptor, or certificate signature validation;
- no relay-family, guard, path-bias, or anonymity-aware path selection;
- no bridges, pluggable transports, proxies, IPv6 dialing, or DNS helpers;
- no onion-service client authorization;
- no proof-of-work support for protected services;
- no authenticated SENDMEs or modern congestion-control behavior;
- no stream isolation, SOCKS server, circuit pooling, or persistent state;
- no traffic shaping or padding.
The client uses direct TLS connections to selected relays and short guarded circuits only where current relays require them, such as HSDir descriptor fetches, rendezvous establishment, and intro-point delivery.
Notes
The default bootstrap source is a public Tor directory authority/cache endpoint. Live behavior depends on relay reachability, descriptor availability, and the onion service accepting a connection at the requested port.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 onionlink-0.1.2-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ce45bd521be3c9ee667bd8a8aeb91dbe72bf666ec2829f8923c1c4719fd9109
|
|
| MD5 |
ea57834dda96030689c38f8f69f9446e
|
|
| BLAKE2b-256 |
9af8d535d99bd876ad95a278deeba3cfa74f5159f849df6b2f24bf576b2152c9
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp314-cp314t-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp314-cp314t-win_amd64.whl -
Subject digest:
6ce45bd521be3c9ee667bd8a8aeb91dbe72bf666ec2829f8923c1c4719fd9109 - Sigstore transparency entry: 1437065969
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c45bb0daf5ea26e49d1a62dc38df21d281912f5105250f71fea6f9aecacef73
|
|
| MD5 |
88d2bde76f75ba903b5eecbe1f4a7f45
|
|
| BLAKE2b-256 |
a53956e1171f879da8351546805af3c39baa7a2dc1436f7e3f623f3a1a74b009
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl -
Subject digest:
3c45bb0daf5ea26e49d1a62dc38df21d281912f5105250f71fea6f9aecacef73 - Sigstore transparency entry: 1437066365
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
429698b156395a8c53309022db6b95113449cc6f5c6df502afc63b8949b08195
|
|
| MD5 |
34f84b1e12e4d10f404295107004e0f4
|
|
| BLAKE2b-256 |
f053f638cee930cd91989fa30040a24d4b578004a51a35a6b1c2cac5e85d169c
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
429698b156395a8c53309022db6b95113449cc6f5c6df502afc63b8949b08195 - Sigstore transparency entry: 1437066243
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35d4de323566a3ea54c268fa7375a4133a599f70b1dd79a4bf6d90e4ffe2bc43
|
|
| MD5 |
9f42422dfbc160710fdc9aa11fe5ebe5
|
|
| BLAKE2b-256 |
511011d0965ca631b6c708130f3586ed3319c2de5e85144cc84f6625b27e01de
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp314-cp314-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp314-cp314-win_amd64.whl -
Subject digest:
35d4de323566a3ea54c268fa7375a4133a599f70b1dd79a4bf6d90e4ffe2bc43 - Sigstore transparency entry: 1437066420
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c978b480f75c850c0ce598ba36092dd1b2daadf532bc5f6ea6e6e931a7923d89
|
|
| MD5 |
f3f7b78d11bb1e10dc2a1f31a0ffe1d0
|
|
| BLAKE2b-256 |
77d398ecf49c199137b5b6af98cf12acd835dc99397c1015503d2bdf8641b4a8
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
c978b480f75c850c0ce598ba36092dd1b2daadf532bc5f6ea6e6e931a7923d89 - Sigstore transparency entry: 1437066372
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de21473fa3bd1bc0e8ddef05ce94f99fdb0b183e933ff24433f3e1ce63b56066
|
|
| MD5 |
e29bdd6ef21f5b34f52b0e492862c167
|
|
| BLAKE2b-256 |
40271c49f113e05289085dc52392d38ca6fc9ab9192eb2683212f1cae11deb35
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
de21473fa3bd1bc0e8ddef05ce94f99fdb0b183e933ff24433f3e1ce63b56066 - Sigstore transparency entry: 1437066324
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0620dd1ba621850171f26cb4ac242806fab2688ec59c996a016b6b99338f0782
|
|
| MD5 |
a8b1cce867572f95539202a4835889ac
|
|
| BLAKE2b-256 |
54858d5245ec0b176f3c2162803194cc74a217109622b0333bafdf7fffe1d808
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp313-cp313t-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp313-cp313t-win_amd64.whl -
Subject digest:
0620dd1ba621850171f26cb4ac242806fab2688ec59c996a016b6b99338f0782 - Sigstore transparency entry: 1437065984
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp313-cp313t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp313-cp313t-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3629ea1cc835c14b504f07948ddfe401dc832eae72844564d026f1549c0591e8
|
|
| MD5 |
d22dbd8a6aba51c2be6b2831d09c616a
|
|
| BLAKE2b-256 |
5ffb89b29d0966c48191e63c483653a803e155c9f7e02d55b61d51bb33873fc1
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp313-cp313t-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp313-cp313t-manylinux_2_28_x86_64.whl -
Subject digest:
3629ea1cc835c14b504f07948ddfe401dc832eae72844564d026f1549c0591e8 - Sigstore transparency entry: 1437066211
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
663573853161df3a02d2af97739b6a35524069603bcd2d23bcd49ae3a48b96d3
|
|
| MD5 |
c2545fb9996ba98122d2f39ba29576dc
|
|
| BLAKE2b-256 |
f6c67760717bd038d5682fcf795a00a556813c7bc5a3054d378eea7fdf0fccaa
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp313-cp313t-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp313-cp313t-macosx_11_0_arm64.whl -
Subject digest:
663573853161df3a02d2af97739b6a35524069603bcd2d23bcd49ae3a48b96d3 - Sigstore transparency entry: 1437066352
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4beaa13f14f5516220b5b891ed71cd1c51d90596f68d3fa92cf0cff0cf01877b
|
|
| MD5 |
a5336f0771c93f0e1c116c4bc6c2d969
|
|
| BLAKE2b-256 |
b64c2a4d3c8a0e969673dc621769f20c50c6ce1ca9379eff514c44b0f402d84e
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp313-cp313-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp313-cp313-win_amd64.whl -
Subject digest:
4beaa13f14f5516220b5b891ed71cd1c51d90596f68d3fa92cf0cff0cf01877b - Sigstore transparency entry: 1437066444
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daaeec3f5fc58cd5174a2806cd0e084f59fd09460135dbc795d00937f5833678
|
|
| MD5 |
915c84e0cdf2c65933089f37d1452f4d
|
|
| BLAKE2b-256 |
b4854893d1ec687db803e7db168b5ce2a6816f5aa6f4b5ac553e93375be31f20
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
daaeec3f5fc58cd5174a2806cd0e084f59fd09460135dbc795d00937f5833678 - Sigstore transparency entry: 1437066300
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d2abbbe6c29771c2672be0d784beb2cb3969c98de18c60359f12df61adb3a9b
|
|
| MD5 |
80c67e636018928e72540ffa5fd435d4
|
|
| BLAKE2b-256 |
620ed4ece5cd05d4960ae7ebdb39e4494247f66fce048d82a70616e6d7e5d26b
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
5d2abbbe6c29771c2672be0d784beb2cb3969c98de18c60359f12df61adb3a9b - Sigstore transparency entry: 1437065995
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c8a9c558d2ca16c83b55f9201ead83fd35ff9e2921da805a3ee235469f42570
|
|
| MD5 |
1bbc11dd9b7a3866fecf79cd44c4470d
|
|
| BLAKE2b-256 |
ce63ed89ce1b94f1f675e4d9b019c0d1dd5684bdd5159d22e96b9ef077fba7a6
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp312-cp312-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp312-cp312-win_amd64.whl -
Subject digest:
7c8a9c558d2ca16c83b55f9201ead83fd35ff9e2921da805a3ee235469f42570 - Sigstore transparency entry: 1437066257
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe5bfd38b255740220234fc4cde17ac9370377e3fdef6e1a9f3a6b01757be200
|
|
| MD5 |
9c01835c9a2f06c82f66d241615295ae
|
|
| BLAKE2b-256 |
17635c5dfb75ba0a631eb766751cab1b1bc713632c6de89e81b672a09663bada
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
fe5bfd38b255740220234fc4cde17ac9370377e3fdef6e1a9f3a6b01757be200 - Sigstore transparency entry: 1437066389
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0300db77e111378b40ecff1945bd47fd4a7b729a6aa1962b60192c5c6fcf4638
|
|
| MD5 |
820274579a4929930dcf55d73613b94c
|
|
| BLAKE2b-256 |
067c54b40b813ab28fd48f5feec6cfae2e34b27e8f68d0a8c18821b98c6ec3e2
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
0300db77e111378b40ecff1945bd47fd4a7b729a6aa1962b60192c5c6fcf4638 - Sigstore transparency entry: 1437066271
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
472fc918c84f8011c507a2df2e176c43a56bf7b7b0719f5b4848e1fd7b34dbe3
|
|
| MD5 |
ee699f33b5837334ca5964549d3d9a2f
|
|
| BLAKE2b-256 |
b716f51da6717ea25f53bf1d2ecf72b68e41ac024c8a7f22e311327da88b1f18
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp311-cp311-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp311-cp311-win_amd64.whl -
Subject digest:
472fc918c84f8011c507a2df2e176c43a56bf7b7b0719f5b4848e1fd7b34dbe3 - Sigstore transparency entry: 1437066406
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7102c1a3feb89b677c39a59fcd2a28f83a7e67abaad3c0b709cb2b5aac5ec949
|
|
| MD5 |
ddb33835cb24dbe9c201e67ce8a5bad7
|
|
| BLAKE2b-256 |
95406a810dea068d0f9b6f543c7c07963ca4104e0419c0815c7681ed4b7e9904
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
7102c1a3feb89b677c39a59fcd2a28f83a7e67abaad3c0b709cb2b5aac5ec949 - Sigstore transparency entry: 1437066433
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1701324e0f1043cf24acbf9ecf4fc10642a85afe30e7cb81e8f6b576b4941db0
|
|
| MD5 |
209f65971cb1479723a6c3a1e4cc5688
|
|
| BLAKE2b-256 |
c0cbb7d4ee4083aed12cfe48ab2760a5181be7122a0876327c937dfa05b3f2d9
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
1701324e0f1043cf24acbf9ecf4fc10642a85afe30e7cb81e8f6b576b4941db0 - Sigstore transparency entry: 1437065963
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b51b7cd81c13919d5b81645fa322ec9719a24b012459b299c26d2c31b97bad3
|
|
| MD5 |
f995ad515d10524ad17274c264de00a5
|
|
| BLAKE2b-256 |
1a83931ca400f2955007e6da310ad0f18cc6caf96e562282c4b588d0ceeda2b1
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp310-cp310-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp310-cp310-win_amd64.whl -
Subject digest:
9b51b7cd81c13919d5b81645fa322ec9719a24b012459b299c26d2c31b97bad3 - Sigstore transparency entry: 1437066000
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94aa29b3cc7ae3b6638b483b0157504fba7f74060a6f31e40e8cd1325ca35fe0
|
|
| MD5 |
7edcdca32efe6999d63a0a2918751fed
|
|
| BLAKE2b-256 |
ba35999a76d6950fbfca3f757bcc8aa2162c1faaeeb34ecb750bae906d59ad4c
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
94aa29b3cc7ae3b6638b483b0157504fba7f74060a6f31e40e8cd1325ca35fe0 - Sigstore transparency entry: 1437065977
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f37a8663f096931945450bd622d1e49fb53c3368268bd5a7e6fa6c45658b6f4
|
|
| MD5 |
b3cab0ab4d9bedb94e4811a5f7ce77b7
|
|
| BLAKE2b-256 |
9438284a28b253aef111caadfd7a39b221b4105d0aa57a567c877f6ac6c248f5
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
2f37a8663f096931945450bd622d1e49fb53c3368268bd5a7e6fa6c45658b6f4 - Sigstore transparency entry: 1437065952
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39f69f77ee095b0fd10adff99ba799df22bbe373d076f8a52008e2cce0a08803
|
|
| MD5 |
ba4b38dd1656959025fa93e0104730a9
|
|
| BLAKE2b-256 |
6da39d3edde8709bab47709c594d1bc8abdaea18ab93338b0779040b21265f79
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp39-cp39-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp39-cp39-win_amd64.whl -
Subject digest:
39f69f77ee095b0fd10adff99ba799df22bbe373d076f8a52008e2cce0a08803 - Sigstore transparency entry: 1437066457
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f20c0381c8db64dde4aa466ecdd3add0448e22a8edf4af1bdc80b6b1bf96485d
|
|
| MD5 |
69deceee1991ef432687d1b45192cb15
|
|
| BLAKE2b-256 |
6ffbca04808f01241bd487a70a5071e426fb50b2481be99a49487f43f72b0cc5
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
f20c0381c8db64dde4aa466ecdd3add0448e22a8edf4af1bdc80b6b1bf96485d - Sigstore transparency entry: 1437066340
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df52b96b6af56e5e3b5d1792ea78e41d47550b6d4d7a690ae730d46db41fee80
|
|
| MD5 |
1a9ae7e0cc93e0b792f6eb08caba149f
|
|
| BLAKE2b-256 |
2434c859eb5d74491894ce93f0639f08ef5118b155c94c6edea1a881dc1d45e7
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl -
Subject digest:
df52b96b6af56e5e3b5d1792ea78e41d47550b6d4d7a690ae730d46db41fee80 - Sigstore transparency entry: 1437066288
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
700c602fed525e091b654f1637d7022166156324a950889f2b36391759024d95
|
|
| MD5 |
24542fa82d4cd7059e13bc04db222431
|
|
| BLAKE2b-256 |
0387c37b8f5f379442fd91af6cda31d759e693cf81580daadfed1157cc06b87a
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp38-cp38-win_amd64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp38-cp38-win_amd64.whl -
Subject digest:
700c602fed525e091b654f1637d7022166156324a950889f2b36391759024d95 - Sigstore transparency entry: 1437065956
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a900268650aa193d74ecbbed16054cfadfb3207ec3149b4783499b922090fa2
|
|
| MD5 |
3ba26c6a1dad630cef67028e7dbd0c3a
|
|
| BLAKE2b-256 |
0e832f56dcd2c05af980ad2f1d6f47a447e0e8e5c71a3db508687eec3bc3e90b
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl -
Subject digest:
5a900268650aa193d74ecbbed16054cfadfb3207ec3149b4783499b922090fa2 - Sigstore transparency entry: 1437066308
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file onionlink-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl.
File metadata
- Download URL: onionlink-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81c18351c26a0544000a0676ee145ae607116cda8e36be246b3d5ff938c2315c
|
|
| MD5 |
4ab9372120bed531f9e30b9f95b4d530
|
|
| BLAKE2b-256 |
3e3269d28e7e7c885ba89b11dee764a0a26bff1b1c035f857959ac579d94a9bf
|
Provenance
The following attestation bundles were made for onionlink-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl:
Publisher:
publish-pypi.yml on RustedBytes/onionlink-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onionlink-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl -
Subject digest:
81c18351c26a0544000a0676ee145ae607116cda8e36be246b3d5ff938c2315c - Sigstore transparency entry: 1437066381
- Sigstore integration time:
-
Permalink:
RustedBytes/onionlink-rs@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RustedBytes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9ffcda73c78f80fa98902b1bc08877b8ecebf969 -
Trigger Event:
workflow_dispatch
-
Statement type: