From 67bdb74bcdbe11b10e6705a84a62eafb157a5bfe Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Thu, 29 Dec 2011 09:58:01 +0100 Subject: [PATCH] Added example2.sh --- examples/example2.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 examples/example2.sh diff --git a/examples/example2.sh b/examples/example2.sh new file mode 100755 index 0000000..06d6d05 --- /dev/null +++ b/examples/example2.sh @@ -0,0 +1,22 @@ +clear + +echo "We're going to test a little Stéganô..." + +echo "Hide the message with the Sieve of Eratosthenes..." +slsb-set --hide -i ./pictures/Montenach.png -o ./surprise.png --generator eratosthenes -m 'Joyeux Noël!' +echo "" + +echo "Try to reveal with Mersenne numbers..." +slsb-set --reveal --generator mersenne -i ./surprise.png +echo "" + +echo "Try to reveal with fermat numbers..." +slsb-set --reveal --generator fermat -i ./surprise.png +echo "" + +echo "Try to reveal with carmichael numbers..." +slsb-set --reveal --generator carmichael -i ./surprise.png +echo "" + +echo "Try to reveal with Sieve of Eratosthenes..." +slsb-set --reveal --generator eratosthenes -i ./surprise.png