8 lines
122 B
Plaintext
8 lines
122 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
BASEDIR="$(dirname "$0")"
|
||
|
|
||
|
. "$BASEDIR/init"
|
||
|
|
||
|
openssl enc -e -a -aes-128-cbc -S "$CRYPT_SALT" -k "$CRYPT_PASS"
|