16 lines
324 B
Bash
Executable File
16 lines
324 B
Bash
Executable File
#! /bin/sh
|
|
|
|
password=$(zenity --password --title "Encrypt data password")
|
|
|
|
image=$(zenity --file-selection --title="Select an image")
|
|
file=$(basename $image)
|
|
|
|
cp $image ./$file
|
|
|
|
steghide embed \
|
|
--encryption twofish \
|
|
--compress 9 \
|
|
-cf $file \
|
|
-ef $1 \
|
|
--passphrase "$password"
|