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

NAME

Crypt::Vigenere - Perl implementation of the Vigenere cipher

SYNOPSIS

  use Crypt::Vigenere;

  $vigenere = Crypt::Vigenere->new( $keyword );

  # Encode the plaintext
  $cipher_text = $vigenere->encodeMessage( $plain_text );

  # Decode the ciphertext 
  $plain_text = $vigenere->decodeMessage( $cipher_text );

DESCRIPTION

See the documentation that came with the Crypt::Vigenere package for more information.

EXPORT

None by default.

AUTHOR

Alistair Mills, http://search.cpan.org/~friffin/