initial commit

This commit is contained in:
2026-05-15 16:23:51 -04:00
commit cc44c5a571
11 changed files with 1495 additions and 0 deletions

4
keygen.py Normal file
View File

@@ -0,0 +1,4 @@
import os, base64, json
key = os.urandom(32)
print(base64.b64encode(key).decode())