testsAndMisc/python_pkg/screen_locker/_log_integrity.py

20 lines
402 B
Python
Raw Normal View History

"""HMAC-based integrity checking — re-exports from shared package."""
from __future__ import annotations
from python_pkg.shared.log_integrity import (
HMAC_KEY_FILE,
_generate_hmac_key,
_load_hmac_key,
compute_entry_hmac,
verify_entry_hmac,
)
__all__ = [
"HMAC_KEY_FILE",
"_generate_hmac_key",
"_load_hmac_key",
"compute_entry_hmac",
"verify_entry_hmac",
]