Zion Boggan
repos/Oversight/oversight_core/__init__.py
zionboggan.com ↗
34 lines · python
History for this file →
1
"""
2
OVERSIGHT - Sealed Entity, Notarized Trust, Integrity & Evidence Layer.
3
 
4
Open protocol for data provenance, attribution, and leak detection.
5
 
6
Core:
7
  - container       sealed file format (binary)
8
  - crypto          vetted primitives + PQ hooks
9
  - manifest        signed metadata
10
  - watermark       per-recipient attribution marks
11
  - beacon          passive callback tokens
12
"""
13
 
14
from .container import seal, open_sealed, SealedFile
15
from .manifest import Manifest, Recipient, WatermarkRef
16
from .crypto import ClassicIdentity, random_dek, content_hash
17
from . import watermark, beacon, l3_policy
18
 
19
__all__ = [
20
    "seal",
21
    "open_sealed",
22
    "SealedFile",
23
    "Manifest",
24
    "Recipient",
25
    "WatermarkRef",
26
    "ClassicIdentity",
27
    "random_dek",
28
    "content_hash",
29
    "watermark",
30
    "beacon",
31
    "l3_policy",
32
]
33
 
34
__version__ = "0.4.11"