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