secure-messaging/python/secure_messaging/__init__.py
George Lambert d67509e470
Some checks are pending
ci / python (push) Waiting to run
ci / go (push) Waiting to run
S06-S08: Python spec, Go in-process leaf, tests and Forgejo CI
2026-09-15 22:17:19 -04:00

13 lines
500 B
Python

# Public package surface for the readable Python spec.
from .signed_config import SignedConfig, UnsignedConfig # signed wrapper load/save
from .envelope import PassthroughEnvelope # dest-in-clear, body ciphertext
from .error_bundle import NetworkErrorBundle # system-key + sender-only
from .admin_history import AdminHistory # DataCube-shaped append-only config log
__all__ = [
"SignedConfig",
"UnsignedConfig",
"PassthroughEnvelope",
"NetworkErrorBundle",
"AdminHistory",
]