Files
dev.msfjarvis.claw.android/scripts/encrypt-secret.sh
T
2021-04-11 13:31:43 +05:30

17 lines
530 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# Simple script that uses OpenSSL to encrypt a provided file with a provided key, and writes the result
# to the provided path. Yes it's very needy.
INPUT_FILE="${1:-}"
OUTPUT_FILE="${2:-}"
ENCRYPT_KEY="${3:-}"
if [[ -n "$ENCRYPT_KEY" && -n "$INPUT_FILE" && -n "$OUTPUT_FILE" ]]; then
openssl enc -aes-256-cbc -md sha256 -pbkdf2 -e -in "${INPUT_FILE}" -out "${OUTPUT_FILE}" -k "${ENCRYPT_KEY}"
else
echo "Usage: ./encrypt-secret.sh <input file> <output file> <encryption key>"
fi