Add linux script to generate 24 char DES Key
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Generates a random 24-character key suitable for RC_DES_KEY in .env.
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
LC_ALL=C tr -dc 'A-Za-z0-9' </dev/urandom | head -c 24
|
||||||
|
echo
|
||||||
Reference in New Issue
Block a user