diff --git a/examples/example4.sh b/examples/example4.sh new file mode 100755 index 0000000..cf250b7 --- /dev/null +++ b/examples/example4.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +# +# Test the LSB method with sets. +# + + +echo "Hide the message with Sieve of Eratosthenes..." +slsb-set --hide -i ./pictures/Ginnifer-Goodwin.png -o ./surprise.png --generator eratosthenes -m 'Probably the most beautiful woman in the world.' +echo "" + +echo "Steganalysis of the original photo..." +steganalysis-parity -i ./pictures/Ginnifer-Goodwin.png -o ./surprise_st_original.png + +echo "Steganalysis of the secret photo..." +steganalysis-parity -i ./surprise.png -o ./surprise_st_secret.png +echo "" + +echo "Reveal with Sieve of Eratosthenes..." +echo "The secret is:" +slsb-set --reveal --generator eratosthenes -i ./surprise.png \ No newline at end of file diff --git a/examples/pictures/Ginnifer-Goodwin.png b/examples/pictures/Ginnifer-Goodwin.png new file mode 100644 index 0000000..9401439 Binary files /dev/null and b/examples/pictures/Ginnifer-Goodwin.png differ