mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
26 lines
722 B
Bash
Executable file
26 lines
722 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#
|
|
# Test the LSB method with sets.
|
|
#
|
|
|
|
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
|