mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
Added example2.sh
This commit is contained in:
parent
d3b891a787
commit
67bdb74bcd
1 changed files with 22 additions and 0 deletions
22
examples/example2.sh
Executable file
22
examples/example2.sh
Executable file
|
@ -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
|
Loading…
Add table
Reference in a new issue