Compare commits

..

No commits in common. "4a340eb0cac3662d041d68a5be47ab20de964632" and "f695a159b4e82a8c8e2915309293bc734294b438" have entirely different histories.

3 changed files with 0 additions and 31 deletions

View File

@ -1,6 +0,0 @@
#! /bin/sh
for file in $@
do
$HOME/.bin/arm -a -p $file
done

View File

@ -1,10 +0,0 @@
#! /bin/sh
for file in $@
do
password=$(zenity --password --title "Decrypt data password in $file")
steghide extract \
--passphrase "$password" \
-sf "$file"
done

View File

@ -1,15 +0,0 @@
#! /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"