首次提交完整的python工程代码

This commit is contained in:
2026-06-15 20:38:42 +08:00
commit bca485d748
159 changed files with 248076 additions and 0 deletions

5
utils/hex_helper.py Normal file
View File

@@ -0,0 +1,5 @@
from utils.logger import logger
def hex_dump(data: bytes, title: str):
s = data.hex(" ").upper()
logger.info(f"[{title}] len={len(data)} | {s}")