Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 169 Bytes

generate-random-secret.md

File metadata and controls

7 lines (5 loc) · 169 Bytes

Generate a random secret

This is a useful recipe to create a random secret such as a API token:

python -c 'import secrets; print(secrets.token_hex(32))'