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, <lt>cpan@alizta.com<gt>