Compare commits
2 Commits
f695a159b4
...
4a340eb0ca
| Author | SHA1 | Date |
|---|---|---|
|
|
4a340eb0ca | |
|
|
9a2be7c5f9 |
|
|
@ -0,0 +1,6 @@
|
|||
#! /bin/sh
|
||||
|
||||
for file in $@
|
||||
do
|
||||
$HOME/.bin/arm -a -p $file
|
||||
done
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
#! /bin/sh
|
||||
|
||||
for file in $@
|
||||
do
|
||||
password=$(zenity --password --title "Decrypt data password in $file")
|
||||
|
||||
steghide extract \
|
||||
--passphrase "$password" \
|
||||
-sf "$file"
|
||||
done
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
#! /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