secure-messaging/python/secure_messaging/__init__.py
George Lambert 43cbf51d3e
Some checks are pending
ci / python (push) Waiting to run
ci / go (push) Waiting to run
S17/S18: send success and failure routes; Sphinx HTML/PDF
Python router + Go sm-leaf reject missing to, empty ct, plaintext body.
Summary logs never include ciphertext. MODULE.md.
2026-09-15 23:10:15 -04:00

18 lines
689 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
from .npe_adapter import NpeRequired # fail-closed NPE
from .router import RouteResult, handle_send # success/failure send policy
__all__ = [
"SignedConfig",
"UnsignedConfig",
"PassthroughEnvelope",
"NetworkErrorBundle",
"AdminHistory",
"NpeRequired",
"RouteResult",
"handle_send",
]