Compare commits
No commits in common. "4a340eb0cac3662d041d68a5be47ab20de964632" and "f695a159b4e82a8c8e2915309293bc734294b438" have entirely different histories.
4a340eb0ca
...
f695a159b4
|
|
@ -1,6 +0,0 @@
|
|||
#! /bin/sh
|
||||
|
||||
for file in $@
|
||||
do
|
||||
$HOME/.bin/arm -a -p $file
|
||||
done
|
||||
|
|
@ -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
|
||||
|
|
@ -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"
|
||||
Loading…
Reference in New Issue