add signing-key generator

This commit is contained in:
2025-10-22 09:18:47 +00:00
parent ee16deafde
commit 5a7b04117b

5
scripts/keygen.py Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env python3
# Generate a fresh HMAC key for signing telemetry packets.
# Prints the key once; store it in the collector's .env yourself.
import os, base64
print(base64.b64encode(os.urandom(32)).decode())