mirror of
https://github.com/kuhyx/screen-locker.git
synced 2026-07-04 15:03:15 +02:00
- C/lichess_random_engine, vocabulary_curve, misc/split, 1dvelocitysimulator, opening_learner: test suites added - CPP/miscelanious: tests added - TS/battery-status, champions_leauge_scores, two-inputs: tests added - python_pkg/fm24_searcher, wake_alarm: new packages added - Fix ruff/cppcheck/eslint/clang-format failures - Update .gitignore for C/C++ build artifacts
20 lines
402 B
Python
20 lines
402 B
Python
"""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",
|
|
]
|