1
0
Fork 0
bin/decrypt

15 lines
287 B
Bash
Executable File

#!/usr/bin/env bash
##########################
# File decryption script #
##########################
# Written by Starbeamrainbowlabs
# Uses openssl to symmetrically decrypt a file.
read -s -p "Password: " password
echo
openssl enc -in $1 -out ${1%.*} -d -aes256 -k "$password"
echo