secure-messaging/python/secure_messaging/__init__.py
George Lambert f4da7ff446
Some checks are pending
ci / python (push) Waiting to run
ci / go (push) Waiting to run
S15: sm-leaf health HTTP, verae.sm.* acks, systemd unit
Loopback GET /health, nats-leaf:// rewrite, subject request-reply tests.
Do not replace pfc-py-admin. NpeRequired stays on the package surface.
2026-09-15 22:40:50 -04:00

15 lines
575 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
__all__ = [
"SignedConfig",
"UnsignedConfig",
"PassthroughEnvelope",
"NetworkErrorBundle",
"AdminHistory",
"NpeRequired",
]