#! /bin/sh
password=$(zenity --password --title "Encrypt $filename")
openssl enc -aes-256-cbc -nosalt -a \
-in $1 -out $1.enc \
-pass pass:$password