Encrypt PII, not meaning. Locally.
Project description
argus-redact
Encrypt PII, not meaning. Locally.
The privacy layer between you and AI. Your identity stays on your device — AI gets the meaning, not you.
from argus_redact import redact, restore
redacted, key = redact("王五在协和医院做了体检,手机13812345678", names=["王五"])
# "P-83811在[LOCATION]做了体检,手机138****5678"
llm_output = call_llm(redacted) # LLM never sees real identities
restored = restore(llm_output, key) # one line to get everything back
pip install argus-redact
Three Promises
| Promise | How | |
|---|---|---|
| 🛡️ | Protected — your PII never leaves your device | 3-layer local detection: regex → NER → local LLM |
| 🧠 | Usable — AI can still understand and help you | Pseudonym replacement preserves meaning and context |
| 🔄 | Reversible — you get everything back, intact | Per-message key, one-line restore |
Other tools shred your PII — it's gone forever. argus-redact encrypts it with a different key every time. ETH Zurich research shows LLMs can deanonymize users for $1-4/person when pseudonyms are fixed. We generate fresh random keys per call — the cloud sees unrelated pseudonyms every time.
Privacy Levels
argus-redact evaluates your text from your perspective, not a regulator's:
🟢 Safe — nothing about you is exposed
🟡 Caution — contains personal info, not dangerous alone
🟠 Danger — can narrow down to you specifically
🔴 Exposed — directly identifies you
from argus_redact import redact
report = redact("身份证110101199003074610,手机13812345678,确诊糖尿病", report=True)
report.risk.level # "critical"
report.risk.score # 1.0
report.risk.reasons # ("id_number (critical)", "phone (high)", "medical (critical)", ...)
This is what compliance frameworks don't tell you: how dangerous is it to share this specific text with AI?
Three Layers
Layer 1 Rust+Regex phone, ID, bank card, email, address, person names <0.2ms
Layer 2 NER locations, organizations, standalone names 10-100ms
Layer 3 Local LLM implicit PII — symptoms→disease, behavior→belief ~20s
Core engine (regex matching, entity merging, restore, pseudonym generation) is written in Rust via PyO3 for maximum performance. Python handles orchestration, NER models, and LLM integration.
~47 PII types across 4 levels — from phone numbers to medical diagnoses, religious beliefs, political opinions. Use what you need: mode="fast" (Layer 1 only) → mode="ner" (+ NER) → mode="auto" (all three).
8 Languages
| zh | en | ja | ko | de | uk | in | br | |
|---|---|---|---|---|---|---|---|---|
| Phone | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| National ID | MOD11-2 | SSN | My Number | RRN | Tax ID | NINO | Aadhaar | CPF/CNPJ |
| Bank/Card | Luhn | Luhn | — | — | IBAN | — | PAN | — |
| Person names | HanLP | spaCy | spaCy | spaCy | spaCy | spaCy | spaCy | spaCy |
| ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Mix freely: lang=["zh", "en", "de"]. Pass known names: names=["王一", "张三"].
Performance
Rust core (PyO3) — M1 Max, mode="fast":
| Text | redact() | restore() | Throughput |
|---|---|---|---|
| Short (13 chars) | 0.06ms | 0.005ms | 17,879 docs/sec |
| Medium (96 chars) | 0.22ms | 0.05ms | 4,654 docs/sec |
| Long (960 chars) | 1.45ms | 0.05ms | 691 docs/sec |
Pre-built wheels for all major platforms — no Rust toolchain needed to install:
✓ Linux x86_64 (glibc + musl/Alpine)
✓ Linux aarch64 (Raspberry Pi + Alpine ARM)
✓ macOS (Apple Silicon + Intel)
✓ Windows x64
× Python 3.10 / 3.11 / 3.12 / 3.13
ai4privacy benchmark: Email P=95% R=94%. Chinese PII F1=97%. Benchmarks → | Performance →
North Star
| Dimension | Current (v0.4.2) | Next milestone |
|---|---|---|
| Protected | ~47 PII types, L1-L4. PII leak 0% across GPT-4o / Claude / Gemini | Adversarial testing |
| Usable | PRvL U=100%. Pseudonym codes preserve trigger words | More task types |
| Reversible | PRvL R by task: reference 100%, extract 50%, creative 0% (by design) | Task-aware guidance |
| Compliance | PIPL ~85%, risk + audit PDF | PIPL/GDPR/HIPAA (byproduct) |
| Coverage | 8 langs, 4 LLMs benchmarked, 6 frameworks | Browser extension |
Risk Assessment & Audit
# Assess risk before sending to AI
report = redact(text, report=True)
report.risk.level # "critical"
report.risk.pipl_articles # ("PIPL Art.28", "PIPL Art.51", ...)
# Generate compliance audit report
from argus_redact import generate_report_pdf
generate_report_pdf(report, "audit-report.pdf")
# CLI
argus-redact assess -f json <<< "身份证110101199003074610"
argus-redact assess -f pdf -o report.pdf <<< "身份证110101199003074610"
Compliance profiles: redact(text, profile="pipl") / "gdpr" / "hipaa".
Type filtering: redact(text, types=["phone", "id_number"]) / types_exclude=["address"].
Integrations
| Install | |
|---|---|
| LangChain / LlamaIndex / FastAPI | core |
| Presidio bridge | pip install argus-redact[presidio] |
| MCP Server (Claude Desktop / Cursor) | pip install argus-redact[mcp] |
| HTTP API Server | pip install argus-redact[serve] |
| Structured data (JSON / CSV) | core |
| Streaming restore | core |
| Docker | slim 157MB / full 5GB |
Security
PII never leaves your device. Per-message keys prevent cross-request profiling. Full security model →
Meets PIPL · GDPR · HIPAA technical requirements as a byproduct of its privacy-first design. Details →
Documentation
| Getting Started | Install, first redact/restore, key management |
| API Reference | All parameters, return types, streaming, structured data |
| CLI Reference | Commands, flags, serve, MCP server |
| Configuration | Per-type strategies, enterprise mask rules, false positive reduction |
| Sensitive Info | Taxonomy, privacy levels, roadmap |
| Architecture | Three-layer engine, pure/impure separation |
| Language Packs | Adding new languages |
| Security Model | Threat model, compliance, per-message keys |
| PRvL Standard | Open evaluation standard: Privacy × Reversibility × Language |
| Layer 3 Benchmark | LLM model comparison, prompt design, regulatory analysis |
| Benchmarks | Evaluation against 9 public PII datasets |
| Performance | Latency, throughput, benchmark results |
Contributing
CONTRIBUTING.md — language packs, test scenarios, framework integrations welcome.
Contributors
| Who | Contribution |
|---|---|
| @aiedwardyi | Brazilian Portuguese language pack (CPF, CNPJ, phone) |
License
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 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 argus_redact-0.4.2.tar.gz.
File metadata
- Download URL: argus_redact-0.4.2.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0296f09d6dc907b27d344c2906e504d87f3dbcbf7ab2468032074b83b2b8399b
|
|
| MD5 |
74ba5693946495c2e21fcc83422ccbd3
|
|
| BLAKE2b-256 |
adcf3abd401ed0f919906b32d170b094bb92d21f5fe5352f6d88db7aed277d5c
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2.tar.gz:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2.tar.gz -
Subject digest:
0296f09d6dc907b27d344c2906e504d87f3dbcbf7ab2468032074b83b2b8399b - Sigstore transparency entry: 1237475645
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09a0ec79a3364168c26ac64e8f55139499d3bc6de3cca4e0a27b2da7e909e0f7
|
|
| MD5 |
eeae85e2fc10c8f8ab79b06b931cf4dc
|
|
| BLAKE2b-256 |
90f4e3ca817283452b1783bfa10dcbc684e15480918334e07c209aa95728d9e1
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp313-cp313-win_amd64.whl -
Subject digest:
09a0ec79a3364168c26ac64e8f55139499d3bc6de3cca4e0a27b2da7e909e0f7 - Sigstore transparency entry: 1237475817
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80d665d0b74b50b0825758ac42c36f23a126b657f525d94c20553c842d9fcb0d
|
|
| MD5 |
4611eaadab25dc6f2f4ccce175dc8319
|
|
| BLAKE2b-256 |
ae59cfd3e599da3e4d611d0933f7c7d329204eba4d14fe38786b09579b672ab0
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
80d665d0b74b50b0825758ac42c36f23a126b657f525d94c20553c842d9fcb0d - Sigstore transparency entry: 1237475695
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdc92345e19f7ace4a9db3e0e732982a7859ad8fcb99b27b96d00525c079cbd0
|
|
| MD5 |
d4a2322601a6723e420ca3274ff95f24
|
|
| BLAKE2b-256 |
47dc08d36c561f0da68e997d834a87992d7a3e8aee6d2075f30fa147281f5c87
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
cdc92345e19f7ace4a9db3e0e732982a7859ad8fcb99b27b96d00525c079cbd0 - Sigstore transparency entry: 1237475943
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b24a87aac7269ae0411fb3772c58d30c4ef270eba06ea3b3e3009c5fa61e4ac
|
|
| MD5 |
48eeac41d0a9214594e51dd4b3d0a2a6
|
|
| BLAKE2b-256 |
0aa6aeea25595c89d2046fe603986e17eeec88e3b8a42ff194744651897e81cb
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5b24a87aac7269ae0411fb3772c58d30c4ef270eba06ea3b3e3009c5fa61e4ac - Sigstore transparency entry: 1237475762
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c1bbed70e6a9d94da17f43806ff43d12ec2d2e07b81356f0daaa6b056c5ed55
|
|
| MD5 |
a08f04e9129291d87cd7011acda5ae8b
|
|
| BLAKE2b-256 |
550d1a61f2bad213112e56ad259b829c4681e335e75ec75a55f7b2064a0658bb
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
4c1bbed70e6a9d94da17f43806ff43d12ec2d2e07b81356f0daaa6b056c5ed55 - Sigstore transparency entry: 1237475661
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e57fba84ab7cb34c3920215ef7914022f206657cfdfbbcc19c0f341a10737aaa
|
|
| MD5 |
2d7f08421fc0bc515e30d163b6299839
|
|
| BLAKE2b-256 |
84e2b847fdc4adefc2330dc22c27a9280ba8f22039d29289ee03344f529177f6
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
e57fba84ab7cb34c3920215ef7914022f206657cfdfbbcc19c0f341a10737aaa - Sigstore transparency entry: 1237475887
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de2913cee0ef7a1668e5ea1388e96a27510fc8e1ff66dfac4822f9e66ccde3b7
|
|
| MD5 |
9ea99ac7237b7ecbfa55e7323058b84b
|
|
| BLAKE2b-256 |
182bd85bddb379f8346343a09e9570fe9e7fc919a34a65c4a71c64a0afbd801f
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
de2913cee0ef7a1668e5ea1388e96a27510fc8e1ff66dfac4822f9e66ccde3b7 - Sigstore transparency entry: 1237475708
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82ad61b428dcd4bce7c1bb2298c64e24bf88bd0ec09f0480b06f2596738d38aa
|
|
| MD5 |
4c8b6f738d4a7d6770d659d3f230ac3a
|
|
| BLAKE2b-256 |
9cddd6d3e8a63fc781e3dff5fb696c4b820cdd67dc86c4b7a54b74a400642400
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp312-cp312-win_amd64.whl -
Subject digest:
82ad61b428dcd4bce7c1bb2298c64e24bf88bd0ec09f0480b06f2596738d38aa - Sigstore transparency entry: 1237475653
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b50b72acc589dcf8f61caa9afc47aded9d35b272ae1494a2d19e94850f2083ea
|
|
| MD5 |
65191fb454f51a5d721ae5daf9d50223
|
|
| BLAKE2b-256 |
1c7fa48feeb5fea5168bb117ea4f9261c308dc4bc60f7f706213dee61eaf6c1b
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
b50b72acc589dcf8f61caa9afc47aded9d35b272ae1494a2d19e94850f2083ea - Sigstore transparency entry: 1237475710
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08863edddf599a3774322aa5323faac6a2c692f07306d5fdafbb87b32d761342
|
|
| MD5 |
46634c35c3ae7b6bc5a5fd4ba678e35e
|
|
| BLAKE2b-256 |
2ba29a5fea4cbf7896e575bc56c077e421ffdba7520b146e71e0f276964d618d
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
08863edddf599a3774322aa5323faac6a2c692f07306d5fdafbb87b32d761342 - Sigstore transparency entry: 1237475747
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af3fd6c08cdec3ee84fd43a29ea939142b70f84f362cf42d6718771d684b13b9
|
|
| MD5 |
17e45075a5df7c9a0f4234b830127e2f
|
|
| BLAKE2b-256 |
ca9587717108760f31c59c5a992dc8cd2dcb9106825faf0f6c657d40220f21a2
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
af3fd6c08cdec3ee84fd43a29ea939142b70f84f362cf42d6718771d684b13b9 - Sigstore transparency entry: 1237475778
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2454aa19dc315d5e3f86815856b808196d4392fb32a34fbae4c0fdea61b19508
|
|
| MD5 |
2666db3a51ce09adbac32d0591f181c4
|
|
| BLAKE2b-256 |
6f077878816a927d6d705502b7401ec7c3a5b4741b1ea30845aa8db6a4c5ec94
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
2454aa19dc315d5e3f86815856b808196d4392fb32a34fbae4c0fdea61b19508 - Sigstore transparency entry: 1237475856
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3ced00571701b68d39f57cc60a77d7667b1d9f7b326ad3c5e14e4f8e942a096
|
|
| MD5 |
f9f09ad540d870df26ccc8919d89d8d8
|
|
| BLAKE2b-256 |
0c0fccecf5e1d166b69ada595abb2b463bea29f5233f279fab8b6bbd782444e6
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
e3ced00571701b68d39f57cc60a77d7667b1d9f7b326ad3c5e14e4f8e942a096 - Sigstore transparency entry: 1237475678
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4689a80ede5f16bece48085a0dff03ef6ec19cae25cca69f671c198bb2dee47
|
|
| MD5 |
1d0c2b0ae9876e79339e2cf087178fb8
|
|
| BLAKE2b-256 |
cbf2a6eb28f0811cc436535af90a5431b6cc3438b78e1e76d7662d1757c20da2
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
c4689a80ede5f16bece48085a0dff03ef6ec19cae25cca69f671c198bb2dee47 - Sigstore transparency entry: 1237476009
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f8c0ba35f613f42df339d1af9dadc1f6d1b808fe7e94fc10934b2cca09511a5
|
|
| MD5 |
974fbcd9cfa344ac0d3990daf0585741
|
|
| BLAKE2b-256 |
6976bc4c120855a76ea096085d5767f7bbdd75e118c9fd279085b765d8b68f84
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp311-cp311-win_amd64.whl -
Subject digest:
7f8c0ba35f613f42df339d1af9dadc1f6d1b808fe7e94fc10934b2cca09511a5 - Sigstore transparency entry: 1237475967
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c61881977d0a59f3478d289ca3704241e012c75b56d800608fd4c3a00bef8438
|
|
| MD5 |
4f1160437993172c070468318d88ef80
|
|
| BLAKE2b-256 |
d56068269c4a941142b8719ddb33809150ff4cb048082440abd392d1e3515e6a
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
c61881977d0a59f3478d289ca3704241e012c75b56d800608fd4c3a00bef8438 - Sigstore transparency entry: 1237475786
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f5af748b40f2751384b1e6ac2c304565af4da3fbe32896cc8f2337a51b62592
|
|
| MD5 |
f9ab111f670e5ad6331e38462eb4b093
|
|
| BLAKE2b-256 |
d4fa3c071ab70e9e1a8b0ac6282dec41927b2e9cd7254abf8e93a44a90e29cd2
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
0f5af748b40f2751384b1e6ac2c304565af4da3fbe32896cc8f2337a51b62592 - Sigstore transparency entry: 1237475920
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a8d85c91f32235fee531f19544835b0be6076b1d4ea6835749dc91a18374766
|
|
| MD5 |
c12ff322a809eb2e5097496e6af11098
|
|
| BLAKE2b-256 |
0c1297b13241957f6bf4e1e0d6d53840d01607687352b70ae3c5f7b0451498bb
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9a8d85c91f32235fee531f19544835b0be6076b1d4ea6835749dc91a18374766 - Sigstore transparency entry: 1237475650
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77096eb1552a4c6f0028474d357b5e2c8e45531cf948f911d48a3c8dc4f078f4
|
|
| MD5 |
5a8333858017fb7e0811a7aaf6c9dcc2
|
|
| BLAKE2b-256 |
85438a64deeb31f22962b507eb455c17a73616f3162a865c00d2efc6d2f912fd
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
77096eb1552a4c6f0028474d357b5e2c8e45531cf948f911d48a3c8dc4f078f4 - Sigstore transparency entry: 1237475868
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9b345941dfbf5ac38dc3bbd092c9cef9db7e1523459eb6e821b490480beca8a
|
|
| MD5 |
2dced72d7ed8702d2b38929a60720a9e
|
|
| BLAKE2b-256 |
c23cc76d564c4ed0c0bf76a77c944c5b6dcc445fe9606044d0ac2cc5212e680f
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
c9b345941dfbf5ac38dc3bbd092c9cef9db7e1523459eb6e821b490480beca8a - Sigstore transparency entry: 1237475740
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3835836e98567e85004d314e3e3bc3c2fa2410294d1c59be2b91df0d81a60f47
|
|
| MD5 |
fefe2ee4dbaed2a93c8125cce8a9f135
|
|
| BLAKE2b-256 |
c8dfc8a36f9aaf301994b033f1e288120af1c7c757d9e39f9baa6338691c9350
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
3835836e98567e85004d314e3e3bc3c2fa2410294d1c59be2b91df0d81a60f47 - Sigstore transparency entry: 1237475906
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
598af264ae3fc9f80e6a14560a614e569564b3fc94547997f3db42c60d4c06c3
|
|
| MD5 |
443cd8e7a2ecb636b36aee7257e87997
|
|
| BLAKE2b-256 |
126ad2fe08f526cbde0072aa43ed62a220d213f96358fe642ba8244ff7eef5b0
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp310-cp310-win_amd64.whl -
Subject digest:
598af264ae3fc9f80e6a14560a614e569564b3fc94547997f3db42c60d4c06c3 - Sigstore transparency entry: 1237475824
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcca7395544a7082ed9ac5269c7b644d9d23c0e7f77da7a07c3a83ffcc3d7426
|
|
| MD5 |
9e71dd961b63cbaddf929dcdefc31522
|
|
| BLAKE2b-256 |
57cdb321c8afc531cc8ad0c6d97f1a19e451ca29de5474f656191ba8fecea7ea
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
dcca7395544a7082ed9ac5269c7b644d9d23c0e7f77da7a07c3a83ffcc3d7426 - Sigstore transparency entry: 1237475701
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e8877febe39a12d543d0eaec19677acd7cc8b4b89b914e366573ad54f8bc6b3
|
|
| MD5 |
26f203ea6664e11ba414d4deb2710af7
|
|
| BLAKE2b-256 |
bcd88231dc8b161778e351438c35c8428368119dcd3ec31cbd16a11113a17d76
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
4e8877febe39a12d543d0eaec19677acd7cc8b4b89b914e366573ad54f8bc6b3 - Sigstore transparency entry: 1237475806
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f23b50527304c846afadf42cc288db9afec3c1bfa2247cdf0e93f6931d593ac
|
|
| MD5 |
721aabb626ba350c6a9fe520a37da333
|
|
| BLAKE2b-256 |
5877b82846432c043b2fdc30057ee8e0f850fbe8b68f76dc8957afea399c9cae
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
2f23b50527304c846afadf42cc288db9afec3c1bfa2247cdf0e93f6931d593ac - Sigstore transparency entry: 1237475727
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf861c15737605fe3809c17ef8d308a86dae800523d32ca920f9ef521e9d113
|
|
| MD5 |
fb50d5b3655e269011102d41d4836db5
|
|
| BLAKE2b-256 |
c1bacfe3342ac36987ce08a5645eb4f2fb7e7c6eff541bc31230dbf0abf4ed76
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
dcf861c15737605fe3809c17ef8d308a86dae800523d32ca920f9ef521e9d113 - Sigstore transparency entry: 1237475670
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2900ed9b6d67a9e6927cf3b9cae85cecb703744d70b7cf488854351c6f65f428
|
|
| MD5 |
6aed768baee4c76792b4926146402f01
|
|
| BLAKE2b-256 |
a11e15b14f730524a6b3074599618a8afa014739fb556612f0a9ad17d00e186c
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
2900ed9b6d67a9e6927cf3b9cae85cecb703744d70b7cf488854351c6f65f428 - Sigstore transparency entry: 1237475985
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12ce315e6ec353fc440f763bb49029cf0ac84574342724293477b7f9916f2246
|
|
| MD5 |
29489381527abdf54f7780ee241e4f92
|
|
| BLAKE2b-256 |
9a218617e3997ed10aec06fdd52a32c36e8c2fecb9b9de46e69801c77d7d52b8
|
Provenance
The following attestation bundles were made for argus_redact-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
release.yml on wan9yu/argus-redact
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
argus_redact-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
12ce315e6ec353fc440f763bb49029cf0ac84574342724293477b7f9916f2246 - Sigstore transparency entry: 1237475690
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ba64b4cd889e22aa1016859aa684af0ec4679440 -
Trigger Event:
push
-
Statement type: