*** PERINGATAN: Derivasi kunci yang sudah usang digunakan

# You write something as
openssl aes-256-cbc -salt -in $input -out $output
# Change your command to
openssl enc -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 -salt -in $input -out $output
CharllierJr