|
NAMEAcme::Steganography::Image::Png - hide data (badly) in Png images SYNOPSIS use Acme::Steganography::Image::Png;
# Write your data out as RGB PNGs hidden in the image "Camouflage.jpg"
my $writer = Acme::Steganography::Image::Png::RGB::556FS->new();
$writer->data(\$data);
my @filenames = $writer->write_images("Camouflage.jpg");
# Returns a list of the filenames it wrote to
# Then read them back.
my $reread =
Acme::Steganography::Image::Png::RGB::556->read_files(@files);
DESCRIPTIONAcme::Steganography::Image::Png is extremely ineffective at hiding your secrets inside Png images. There are 4 implementations
Write your data out by calling "write_images" Read your data back in by calling "read_files" You don't have to return the filenames in the correct order. BUGSVirtually no documentation. There's the source code... Not very many tests. Not robust against missing files when re-reading If you want real steganography, you're in the wrong place. Doesn't really do enough daft stuff yet to live up to being a proper Acme module. There are plans. AUTHORNicholas Clark, <nick@ccl4.org>, based on code written by JCHIN after a conversation we had.
|