audit-labs/evidence-seal
Tamper-evident seals and chain of custody for audit evidence.
clone: git clone https://gitbay.org/audit-labs/evidence-seal.git
v1.0.0: evidence_seal/__init__.py · raw
1"""evidence-seal — tamper-evident seals for audit evidence packages."""
2
3__version__ = "1.0.0"
4
5# Hash algorithm and manifest format version. Bump MANIFEST_VERSION only on a
6# breaking change to the manifest schema so verify can refuse the unknown.
7ALGORITHM = "sha256"
8MANIFEST_VERSION = 1