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.
Default redaction output
redact() emits per-type pseudonym codes, not Chinese label literals:
>>> redact("员工张三,身份证110101199003074610,电话13812345678", mode='fast', lang='zh')
('员工P-83811,身份证ID-89732,电话138****5678',
{'P-83811': '张三', 'ID-89732': '110101199003074610', '138****5678': '13812345678'})
| Type group | Default output | Strategy | Reversible |
|---|---|---|---|
person / organization |
P-NNNNN / O-NNNNN |
pseudonym |
✓ |
phone / email / bank_card |
138****5678 (partial digits visible) |
mask |
✗ |
id_number / medical / ssn / ... |
ID-NNNNN / MED-NNNNN / SSN-NNNNN |
remove → per-type code |
✓ |
self_reference |
我 / 我妈 (kept verbatim) |
keep |
✓ |
To unify all reversible types under one prefix (hides PII type from the LLM):
redact(
text,
unified_prefix="R",
config={
"phone": {"strategy": "remove"}, # mask types must opt in to participate
"email": {"strategy": "remove"},
},
)
# → "员工R-83811,身份证R-89732,电话R-12345"
<TYPE_N> 1-based sequential token style is roadmapped for v0.6.x. See docs/configuration.md for full strategy reference.
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, Collaborative
Layer 1 Rust+Regex phone, ID, bank card, email, self-reference, ... <0.2ms
│
produce_hints() → text_intent, pii_density, self_reference_tier
│
Layer 2 NER ← hints locations, organizations, standalone names 10-100ms
Layer 3 Local LLM implicit PII — symptoms→disease, behavior→belief ~20s
Layers are not independent — L1 passes hints to L2, enabling collaborative detection. Instruction text ("帮我看看这段代码") skips NER entirely. High PII density lowers NER thresholds. Cross-layer agreement boosts confidence.
Unicode-hardened: NFKC normalization, zero-width stripping, Cyrillic/Greek confusable defense, Chinese digit detection (一三八零零一三八零零零 → detected as phone).
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. Default is mode="fast" (Layer 1 only, zero deps, sub-ms). Opt in: mode="ner" (+ NER models) → mode="auto" (all three layers).
Telemetry: ARGUS_PERF_LOG=perf.jsonl for per-call timing breakdown. Details →
Limitations & When NOT to Rely on This
argus-redact is a PII data minimization aid, not an anonymization or compliance certification:
- L1 fast (regex) matches well-defined formats. Novel or obfuscated variants, cross-field inference attacks pass through.
- L2 NER is statistical inference; out-of-distribution text (informal, typo-heavy, minority names) has higher miss rate. See benchmark results for measured numbers.
- No guarantee against adversarial inputs — attackers can craft text that evades detection.
- Not a GDPR / PIPL anonymization framework — anonymization is a compliance process decision, not a single-library output.
When to use argus-redact: reversible pseudonymization for LLM pipelines where you need redact() → LLM → restore() with zero PII crossing the network boundary.
When to consider alternatives: if you need one-way English PII masking with a single model call, OpenAI Privacy Filter and similar model-based maskers may fit better. argus-redact's niche is Chinese-optimized multi-layer detection + reversibility.
Combine argus-redact with audit logging, rate limiting, and upstream policy — no single layer is sufficient.
8 Languages
| zh | en | ja | ko | de | uk | in | br | |
|---|---|---|---|---|---|---|---|---|
| Phone | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| National ID | MOD11-2 + 15位旧版 | 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 (17 chars) | 0.07ms | 0.04ms | 13,036 docs/sec |
| Medium (770 chars) | 1.00ms | 0.05ms | 1,031 docs/sec |
| Long (10K chars) | 22.2ms | 0.05ms | 45 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.6.0) | Next milestone |
|---|---|---|
| Protected | ~47 PII types, L1-L4. PII leak 0% across GPT-4o / Claude / Gemini. Cross-layer hints in 8 langs (zh/en/ja/ko/de/uk/in/br). MCP token-only key handling. Windows CI | Adversarial testing |
| Usable | PRvL U=100%. Pseudonym codes + realistic mode (zh + en + RFC shared) + per-call strategy overrides + keep strategy + resumable streaming sessions + incremental streaming default + cross-language alias restore (zh ↔ en) |
Task-aware guidance |
| Reversible | PRvL R by task: reference 100%, extract 50%, creative 0% (by design). Cross-language LLM rewrites (张三 → Zhang San) auto-restored via KeyEntry.aliases |
Task-aware guidance |
| Compliance | PIPL ~85%, risk assessment + profiles | PIPL/GDPR/HIPAA (byproduct) |
| Coverage | 8 langs, 4 LLMs benchmarked, 6 frameworks | Browser extension |
Risk Assessment
# 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", ...)
report.entities # detected PII details
report.stats # per-layer timing
# CLI
argus-redact assess <<< "身份证110101199003074610"
Compliance profiles: redact(text, profile="pipl") / "gdpr" / "hipaa".
Type filtering: redact(text, types=["phone", "id_number"]) / types_exclude=["address"].
Realistic Redaction (pseudonym-llm profile)
Default redaction emits placeholder labels ([TEL-79329], P-164) — clear for audit, but breaks downstream LLM reasoning because the message structure is gone. The pseudonym-llm profile replaces PII with realistic-looking but reserved-range fake values (e.g., 19999... mobile, 999... ID, 999999... bank card). LLMs reason correctly; humans can still tell it's synthetic if they know the convention.
Each call returns three text forms sharing one key dict:
| Form | Example | Use for |
|---|---|---|
audit_text |
请拨打 [TEL-79329] 联系 P-164 |
Compliance archive — placeholder labels are auditable |
downstream_text |
请拨打 19999123456 联系张明 |
LLM input — semantic structure preserved |
display_text |
请拨打 19999123456ⓕ 联系张明ⓕ |
UI rendering — visible ⓕ marker prevents confusion |
from argus_redact import redact_pseudonym_llm, restore
# Chinese
zh = redact_pseudonym_llm("请拨打 13912345678 联系王建国", lang="zh")
zh.downstream_text # "请拨打 19999123456 联系张明" → LLM
zh.display_text # "请拨打 19999123456ⓕ 联系张明ⓕ" → UI
# English
en = redact_pseudonym_llm("Call (415) 555-1234, SSN 123-45-6789", lang="en")
en.downstream_text # "Call (555) 555-0142, SSN 999-37-2811" → LLM
en.audit_text # "Call [PHONE-23801], SSN [SSN-15772]" → audit
# Mixed (auto-detect)
mx = redact_pseudonym_llm("客户Wang at user@company.com", lang="auto")
# Round-trip works on any of the three forms, in any language
restore(zh.downstream_text, zh.key) # → original
restore(en.downstream_text, en.key) # → original
restore(mx.downstream_text, mx.key) # → original
# CLI emits all three forms as JSON
echo "Call (415) 555-1234" | \
argus-redact redact -k key.json --profile pseudonym-llm -l en | \
jq .downstream_text
# "Call (555) 555-0142"
Reserved ranges:
- zh:
199-99-XXXXXXmobile (sub-segment unassigned by 工信部),099-landline (no such area code),999XXXID address code (GB/T 2260 unassigned),999999bank BIN (银联 unassigned), 滨海市 fictional city. - en:
(555) 555-01XXphone (FCC permanent fictional reservation),999-XX-XXXXSSN (SSA never assigns 9XX),999999credit card BIN, John Doe / Jane Roe person, 1313 Mockingbird Lane address. - shared (RFC):
example.com/.org/.netemail (RFC 2606),192.0.2.0/24/198.51.100.0/24/203.0.113.0/24IPv4 (RFC 5737),2001:db8::/32IPv6 (RFC 3849),00:00:5E:00:53:xxMAC (RFC 7042).
Argus Gateway integration: response headers should include X-Argus-Redact-Profile: pseudonym-llm; UI clients render display_text, LLM clients consume downstream_text. Storage of downstream_text as business truth is unsafe — it's synthetic by design.
Real users named like canonical fakes (e.g., a real customer named 张三 or John Doe): pass reserved_names={"person_zh": ()} (or person_en) to disable that locale's canonical-name pollution detection so the real user's name flows through normal redaction.
Streaming
For chat sessions or long-form input where text arrives in chunks, use StreamingRedactor (input side) and StreamingRestorer (output side). Both require complete logical units per chunk (sentence / paragraph / turn) — entities split across chunk boundaries are not handled.
from argus_redact.streaming import StreamingRedactor, StreamingRestorer
# Input side: redact each chunk; same original value across chunks → same fake
r = StreamingRedactor(salt=b"my-secret-salt", lang="zh")
for chunk in input_stream: # one sentence/paragraph/turn each
res = r.feed(chunk)
send_to_llm(res.downstream_text)
# Output side: restore LLM output stream at sentence boundaries
restorer = StreamingRestorer(r.aggregate_key())
for chunk in llm_output_stream:
restored = restorer.feed(chunk)
if restored:
print(restored, end="")
print(restorer.flush(), end="")
True byte-level streaming (entities crossing chunk boundaries) needs full incremental detection and is roadmapped for a later release.
⚠️ Realistic-mode output must not be re-redacted (it would corrupt the key dict).
redact_pseudonym_llmwill raisePseudonymPollutionErrorif called on already-faked input — callrestore()first.
Full API → · Known limitations →
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 |
| PII Type Catalog | All 52 types — strategy, sensitivity, PIPL/GDPR/HIPAA mapping (auto-generated) |
| Architecture | Three-layer engine, cross-layer hints, 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.6.0.tar.gz.
File metadata
- Download URL: argus_redact-0.6.0.tar.gz
- Upload date:
- Size: 542.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f64b8bc07bb984b30c3cdf288a8984e6ce40cd927ea0db2d44431b0d1d755fd
|
|
| MD5 |
3fd7ac608702127f26902ba1ba97c434
|
|
| BLAKE2b-256 |
8fae4c01d634f9058384fcfaa84246e0a7faab5a0c3008049fd16c7bebb85010
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0.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.6.0.tar.gz -
Subject digest:
2f64b8bc07bb984b30c3cdf288a8984e6ce40cd927ea0db2d44431b0d1d755fd - Sigstore transparency entry: 1432613487
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.2 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 |
50b07fa78ac844c0d1de798cd9e9a0134de7b967e93b6790899b8e101844822d
|
|
| MD5 |
0d4a7de8618e5bd20e6c2fd4dcbec2f6
|
|
| BLAKE2b-256 |
0379879bc92f997c0d8d26994e8bce5910b4fd5352cd97de41a593b15eaa2992
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp313-cp313-win_amd64.whl -
Subject digest:
50b07fa78ac844c0d1de798cd9e9a0134de7b967e93b6790899b8e101844822d - Sigstore transparency entry: 1432616545
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab7d08008fbb1141e59130dccead9f02a3f304ea4b618a372e43eaa52d2cb66f
|
|
| MD5 |
b9ea7d46fe087c9a0239dfd19af0a2fa
|
|
| BLAKE2b-256 |
7502f0d8d998b75c9803f93518f6e421477c859e91345116780ec8cc2db660b4
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
ab7d08008fbb1141e59130dccead9f02a3f304ea4b618a372e43eaa52d2cb66f - Sigstore transparency entry: 1432613663
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34aef8546d207fd426e864caa9e8539916e824bc6228234d2c148782ed223cb1
|
|
| MD5 |
3c1b2d69efdefa8674760c3ce468c200
|
|
| BLAKE2b-256 |
33318b3c8ed878b8e698720f91b82ecdc839e814aa930c8eff39f3582ea49072
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
34aef8546d207fd426e864caa9e8539916e824bc6228234d2c148782ed223cb1 - Sigstore transparency entry: 1432617238
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
273d45a0266a4e091650c977337c1bb097f3e0be4d12045c077229e82a625ecd
|
|
| MD5 |
13293c02b866cd60d208478a5fd832f1
|
|
| BLAKE2b-256 |
d2d2ff504ad7f3ae9fcec7f2c4bc42b2cb94903bab7207c66ea083331a4d7f65
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
273d45a0266a4e091650c977337c1bb097f3e0be4d12045c077229e82a625ecd - Sigstore transparency entry: 1432616700
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1497d43b21b4fef4521ad9010a8a1400bb14581c68a14f16ba6a0653d8f5d72b
|
|
| MD5 |
334f25b65605d4865ba0054121368152
|
|
| BLAKE2b-256 |
bae9cdfa3cd90d133f8f083085a1b645cc05e2c8d9f8d9426422d41476eac4de
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1497d43b21b4fef4521ad9010a8a1400bb14581c68a14f16ba6a0653d8f5d72b - Sigstore transparency entry: 1432615189
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 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 |
f90174bedbf60458bc32890e49eb9af876516e410d34b92ab3d9b1f2bc1e6a6b
|
|
| MD5 |
222335b3157c57377120f68fc8893790
|
|
| BLAKE2b-256 |
ef2e2b0404754e494f61d2bfad9e639f32bcff682e17be3ba49284808a98c1e6
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
f90174bedbf60458bc32890e49eb9af876516e410d34b92ab3d9b1f2bc1e6a6b - Sigstore transparency entry: 1432617451
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, 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 |
c928c94f301dbbcfca512bddff4c9a38b5c0cb403a874ea5bf5ebae5f6b2849f
|
|
| MD5 |
eb7212e61ac54567971a14e38189ecaf
|
|
| BLAKE2b-256 |
ab659b1cde0f95a640dd7d543f15f66ec3d991cc13df64928d1f0d5fdee756a6
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
c928c94f301dbbcfca512bddff4c9a38b5c0cb403a874ea5bf5ebae5f6b2849f - Sigstore transparency entry: 1432615631
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.2 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 |
2de5f8adce0236ffb9e3fb7ac159e72d8555fc0545b74de42da4ab0fcd13d1a0
|
|
| MD5 |
2c3383f2aa5ecb999f7e484152f00b54
|
|
| BLAKE2b-256 |
afdd758ca25a236c36125103ae4a9d79dc7b8468b16022791900513da381f839
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp312-cp312-win_amd64.whl -
Subject digest:
2de5f8adce0236ffb9e3fb7ac159e72d8555fc0545b74de42da4ab0fcd13d1a0 - Sigstore transparency entry: 1432616185
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b788ce8f98e5177b909b34fb9fbf82319584dc8e19de5f072849b37d893e2f38
|
|
| MD5 |
4028232237e01f13da09f07c1e8dc152
|
|
| BLAKE2b-256 |
b9aaeb826866475162357a12ff6f641934cc1a30980dec12974095d27f74a785
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
b788ce8f98e5177b909b34fb9fbf82319584dc8e19de5f072849b37d893e2f38 - Sigstore transparency entry: 1432617124
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4241fe838cd111f47a1366fc25497d78fed4eedeb82beb5e407108d8a00485fe
|
|
| MD5 |
fbcc41935898675c431528d8db843ee8
|
|
| BLAKE2b-256 |
3504f5f1848dc9192fa6c5f2d21206e11b83e63221852e52949fd6f36757a359
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
4241fe838cd111f47a1366fc25497d78fed4eedeb82beb5e407108d8a00485fe - Sigstore transparency entry: 1432613899
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc046e08d5f0825dad457a849936c78d2bfcaf0f9a3875cb3c61b3ec63e6bc8c
|
|
| MD5 |
e72ec7f73ad64cb86ea7cfb69a9cd89d
|
|
| BLAKE2b-256 |
3f8af80d7041358ea123e5c9ce740fbc89f32b8854cf455349d4863e1be54169
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
dc046e08d5f0825dad457a849936c78d2bfcaf0f9a3875cb3c61b3ec63e6bc8c - Sigstore transparency entry: 1432614705
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fed561189a9e7dbdd551437726237096d2fc7712df6d66e572f14a8d1a6cc192
|
|
| MD5 |
870f82749cbf808d1c5642abbfd0f9f9
|
|
| BLAKE2b-256 |
de2fc22089d8fc7f9b508e82de3a95f4d09a6624e3740faa545fd21b1dad9531
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
fed561189a9e7dbdd551437726237096d2fc7712df6d66e572f14a8d1a6cc192 - Sigstore transparency entry: 1432616300
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 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 |
cfddef4a11ef87b8ffe46c6f77e6c944c1577a3324af26e2d1282713627e3b92
|
|
| MD5 |
1ebb402f0d6029bac7251121d765be35
|
|
| BLAKE2b-256 |
933fdda749471625e7d0ed0025084416725ec54ea84799ab5416fdcd887dbccf
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
cfddef4a11ef87b8ffe46c6f77e6c944c1577a3324af26e2d1282713627e3b92 - Sigstore transparency entry: 1432615105
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, 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 |
e5e3357db3f4912adfebd9298d2a8af51fdea643673bcf66708a85fd0e2231ea
|
|
| MD5 |
631a29d1f540752e1a3880f5725edf64
|
|
| BLAKE2b-256 |
3c851de02a55071fa3161042be6d79eec4729d98d822587c0093aedb1ba52566
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
e5e3357db3f4912adfebd9298d2a8af51fdea643673bcf66708a85fd0e2231ea - Sigstore transparency entry: 1432614553
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.2 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 |
43505b468175275a23931ecd2ee1cb8d615d6f9e1e94142b68ed83ce05837c83
|
|
| MD5 |
5a6f6a50be4b9d0444c3f06d884be9c6
|
|
| BLAKE2b-256 |
a2e48e19ed1e9e4347ef8d4bbe04d9b352abac607c702a7e89f0cf9bc7474870
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp311-cp311-win_amd64.whl -
Subject digest:
43505b468175275a23931ecd2ee1cb8d615d6f9e1e94142b68ed83ce05837c83 - Sigstore transparency entry: 1432615447
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cd6fc71e0ff3cb09607065100ffe60f8f44a37e3d714ea9c857e8e5e1a967d5
|
|
| MD5 |
ae37c38111b08aad9ee9e79ee7fbe940
|
|
| BLAKE2b-256 |
f39b4a5fbf19e0829e19e9b24c5bd5a831978cdddebfb0b6f0ccf5cf9a5bddca
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
7cd6fc71e0ff3cb09607065100ffe60f8f44a37e3d714ea9c857e8e5e1a967d5 - Sigstore transparency entry: 1432616115
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cc06c7f1ec2a98483d40bac278d250db6f61c002a2af02f5b3794cb61e44bab
|
|
| MD5 |
7649acc1f0b737704d21799a97341420
|
|
| BLAKE2b-256 |
4c5111bf6cf1d90bb9ed4f843785c4a2b3081d98819b86585e5fba77194d203e
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
8cc06c7f1ec2a98483d40bac278d250db6f61c002a2af02f5b3794cb61e44bab - Sigstore transparency entry: 1432616030
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b7fee091d5247321cfd3a319f0772249888d5976b00a850fa5c251cbaced276
|
|
| MD5 |
e8b16a7ff1ac035158f43eeac793d57a
|
|
| BLAKE2b-256 |
3fd70dcecfe9154c66381bbe81caf3e2babe4a58f8bf05cce9110eb60fd30437
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9b7fee091d5247321cfd3a319f0772249888d5976b00a850fa5c251cbaced276 - Sigstore transparency entry: 1432615969
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3d363f481678214bd47d5985dd4257e82296d923af17592b74b8f8a594d618a
|
|
| MD5 |
96b8c141995aa2cd4bb1cef09f443054
|
|
| BLAKE2b-256 |
aa5c776636311e76e8766e66f2ae70c03cb091996fdee376536d0ff0b0c99318
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b3d363f481678214bd47d5985dd4257e82296d923af17592b74b8f8a594d618a - Sigstore transparency entry: 1432614612
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 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 |
6e30de31095bd85da8833a4bf5ccf8156bd08c0d32c66d21357d8da38ebec51a
|
|
| MD5 |
cd3b84231577c38330da919dd66bf066
|
|
| BLAKE2b-256 |
0d5f67ea0da52fba5cfa8857dc42afdb8b8f450b70fc67c93547e6b0f0da6ae1
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
6e30de31095bd85da8833a4bf5ccf8156bd08c0d32c66d21357d8da38ebec51a - Sigstore transparency entry: 1432616844
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, 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 |
2b40adda43e3b0fc40f25a902e2faf6fa01025f7145ba453a8604d4463a94dcd
|
|
| MD5 |
885ad7a796131ea69d7184e22b9b602a
|
|
| BLAKE2b-256 |
8382f08be9b72e5b5bd7ef7c47c7cf4b21b486b7d68d94c3d947e84f04ed2ff2
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
2b40adda43e3b0fc40f25a902e2faf6fa01025f7145ba453a8604d4463a94dcd - Sigstore transparency entry: 1432616938
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.2 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 |
b4af1532301b1f254566b542b274a8d755cb4037d4ab0a5062760ccc952a8d09
|
|
| MD5 |
98269cbf707ae851031a44b2a71fc78c
|
|
| BLAKE2b-256 |
82a4c430f9d046e3bf532720955d0144c7621969c4b939cd4868c69f25dddfa6
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp310-cp310-win_amd64.whl -
Subject digest:
b4af1532301b1f254566b542b274a8d755cb4037d4ab0a5062760ccc952a8d09 - Sigstore transparency entry: 1432614121
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a554067ba514ce7f93038df734c7f8940b24ff2a52319bbf3e3ff6d216691144
|
|
| MD5 |
fa8405af1dae8c62bc306638666e546d
|
|
| BLAKE2b-256 |
8727bbf01ef2b6cba4d8adf12fd79af8c4db2f6e3f6641c555a51ecbc0bbcf6b
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
a554067ba514ce7f93038df734c7f8940b24ff2a52319bbf3e3ff6d216691144 - Sigstore transparency entry: 1432617615
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41cc11e387000c3d053b662ff94d8b21d71e942c3e7c2bbd807abd6fcd3c1c8a
|
|
| MD5 |
758f1f119947d4770d28176d63b98b68
|
|
| BLAKE2b-256 |
d158431c3845c3ffe73b309ee35a1a8818af4ff2fe1a3a9ded782feb194b818f
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
41cc11e387000c3d053b662ff94d8b21d71e942c3e7c2bbd807abd6fcd3c1c8a - Sigstore transparency entry: 1432616461
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6fb8656064f7316e49a0272af7b437bdd4014f9c6bd59357e1b29d6a32ae0c2
|
|
| MD5 |
34efa91f98619b68cfb69049460f2d4c
|
|
| BLAKE2b-256 |
c72a2b8a12134cc3b2da5a2c1c361e9d77b3e06b623f9b23f44437c731a3f49e
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
c6fb8656064f7316e49a0272af7b437bdd4014f9c6bd59357e1b29d6a32ae0c2 - Sigstore transparency entry: 1432615696
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: argus_redact-0.6.0-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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94ee5c88b4ad5c52fded10d8b511fabe3cbeb81bf0fdd8520ee19811ea8996e2
|
|
| MD5 |
0f3f93b92f28e2c3fbf436a058875fd0
|
|
| BLAKE2b-256 |
58feaaaedc8fee49e8beaa3980d1dc47a6f2d22ecf918c0bec45022f0f44a3f1
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
94ee5c88b4ad5c52fded10d8b511fabe3cbeb81bf0fdd8520ee19811ea8996e2 - Sigstore transparency entry: 1432615870
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 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 |
cf4b9e74bfaaff38b8f01f1c6bc5a92a4187a2f6b2e933de921ed7d8d70929d5
|
|
| MD5 |
a3c05930aea5754008b8155448f69c09
|
|
| BLAKE2b-256 |
d960342248c023dcd3eecb93202f8a0976ea0cab640473537651e13a508699ec
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
cf4b9e74bfaaff38b8f01f1c6bc5a92a4187a2f6b2e933de921ed7d8d70929d5 - Sigstore transparency entry: 1432614887
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type:
File details
Details for the file argus_redact-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: argus_redact-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, 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 |
afee6023cb3214535ed5c1cafa7015601b36e75d7e846bfdafd96102cbe9c658
|
|
| MD5 |
24312607b496137f5be8efa86c3aa073
|
|
| BLAKE2b-256 |
ffca868fdab50575ccebe0b14727a65dd568814f795ce799103c959a14365e5c
|
Provenance
The following attestation bundles were made for argus_redact-0.6.0-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.6.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
afee6023cb3214535ed5c1cafa7015601b36e75d7e846bfdafd96102cbe9c658 - Sigstore transparency entry: 1432614362
- Sigstore integration time:
-
Permalink:
wan9yu/argus-redact@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/wan9yu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f2318ab458a80ebaf15ab74b5d3288a7ce2a5deb -
Trigger Event:
push
-
Statement type: