5 lines
83 B
Bash
5 lines
83 B
Bash
#!/bin/bash
|
|
|
|
secret=$(openssl rand -base64 32)
|
|
echo "Generated secret key $secret"
|