Skip to content

Instantly share code, notes, and snippets.

@henriquesebastiao
Created November 14, 2023 16:36
Show Gist options
  • Save henriquesebastiao/254b7017c524438f634437b196137979 to your computer and use it in GitHub Desktop.
Save henriquesebastiao/254b7017c524438f634437b196137979 to your computer and use it in GitHub Desktop.
Generate secret key with python.
python -c "import string as s;from random import SystemRandom as sr;print(''.join(sr().choices(s.ascii_letters + s.punctuation, k=64)))"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment