receipt 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- receipt/__init__.py +17 -0
- receipt/append_gate.py +812 -0
- receipt/canonical.py +143 -0
- receipt/release_chain.py +1298 -0
- receipt/sign.py +459 -0
- receipt-0.2.0.dist-info/METADATA +48 -0
- receipt-0.2.0.dist-info/RECORD +9 -0
- receipt-0.2.0.dist-info/WHEEL +4 -0
- receipt-0.2.0.dist-info/licenses/LICENSE +202 -0
receipt/__init__.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Verifiable custody of agent-produced records.
|
|
2
|
+
|
|
3
|
+
Shipped: the append-only release-chain verifier (receipt.release_chain),
|
|
4
|
+
ECMAScript-compatible canonical JSON (receipt.canonical), the append-only gate
|
|
5
|
+
(receipt.append_gate), and standalone Ed25519 signing plus consumer-pinned
|
|
6
|
+
threshold keyrings (receipt.sign). The ledger machinery was extracted from
|
|
7
|
+
PolicyEngine/ledger at commit 0798427850 behind differential harnesses that run
|
|
8
|
+
the unmodified upstream as an oracle and prove byte-identical verdicts. Trust
|
|
9
|
+
anchors are supplied by the consumer's committed code via ChainSpec,
|
|
10
|
+
AppendGateSpec, ProducerKeySpec, or KeyringSpec; the package ships no defaults.
|
|
11
|
+
|
|
12
|
+
Pending extraction: standalone dual-witness TSA orchestration, push attestation
|
|
13
|
+
with offline bundles, waiver ratchet, chronology tiers, and the spanning
|
|
14
|
+
verification CLI.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
__version__ = "0.2.0"
|