The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Acme::Stegano - Put some text inside another

SYNOPSIS

  use Acme::Stegano;

  # Create a stegano object passing a file you wish to inject

  my $st = Stegano->new("my-file.txt");
  $st->insert("This is a sample text");

  # nearby in some other part of code, someone could
  my $st = Stegano->new("my-file.txt");
  print $st->extract

DESCRIPTION

You can put some text inside another and it seems to remain the same. Then you could extract the text doing the inverse operation. The idea was from Damian Cownay in his Acme::Bleach.

SPECIAL THANKS

Well, this is based in the idea of Damian Conway used in Acme::Bleach, so thank it to him.

AUTHOR

Anarion: anarion@7a69ezine.org

COPYRIGHT

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.