EZGG-LAN-NFC-Tools/secret.py
David Rodenkirchen ddc60f80fb initial commit
2026-02-26 08:18:45 +01:00

8 lines
174 B
Python

try:
f = open("hmac_key.txt", "r")
except FileNotFoundError:
print("Datei 'hmac_key.txt' fehlt.")
exit(1)
SECRET = f.readline().strip().encode("utf-8")
f.close()