mirror of
https://github.com/writefreely/writefreely.git
synced 2024-11-14 16:31:03 +00:00
Add key generation script + keys folder
This commit is contained in:
parent
b674215c6c
commit
e392b3a040
25
keys.sh
Executable file
25
keys.sh
Executable file
@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# keys.sh generates keys used for the encryption of certain user data. Because
|
||||
# user data becomes unrecoverable without these keys, the script and won't
|
||||
# overwrite any existing keys unless you explicitly delete them.
|
||||
#
|
||||
|
||||
# Generate cookie encryption and authentication keys
|
||||
if [[ ! -e "$(pwd)/keys/cookies_enc.aes256" ]]; then
|
||||
dd of=$(pwd)/keys/cookies_enc.aes256 if=/dev/urandom bs=32 count=1
|
||||
else
|
||||
echo "cookies key already exists! rm keys/cookies_enc.aes256 if you understand the consquences."
|
||||
fi
|
||||
if [[ ! -e "$(pwd)/keys/cookies_auth.aes256" ]]; then
|
||||
dd of=$(pwd)/keys/cookies_auth.aes256 if=/dev/urandom bs=32 count=1
|
||||
else
|
||||
echo "cookies authentication key already exists! rm keys/cookies_auth.aes256 if you understand the consquences."
|
||||
fi
|
||||
|
||||
# Generate email encryption key
|
||||
if [[ ! -e "$(pwd)/keys/email_enc.aes256" ]]; then
|
||||
dd of=$(pwd)/keys/email_enc.aes256 if=/dev/urandom bs=32 count=1
|
||||
else
|
||||
echo "email key already exists! rm keys/email_enc.aes256 if you understand the consquences."
|
||||
fi
|
1
keys/.gitignore
vendored
Normal file
1
keys/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.aes256
|
4
keys/README.md
Normal file
4
keys/README.md
Normal file
@ -0,0 +1,4 @@
|
||||
Keys
|
||||
====
|
||||
|
||||
Contains keys for encrypting database and session data. Generate necessary keys by running (from the root of the project) `./keys.sh`.
|
Loading…
Reference in New Issue
Block a user