Crypt::Vigenere - Perl implementation of the Vigenere cipher


Crypt-Vigenere documentation  | view source Contained in the Crypt-Vigenere distribution.

Index


NAME

Top

Crypt::Vigenere - Perl implementation of the Vigenere cipher

SYNOPSIS

Top

  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

Top

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

EXPORT

None by default.

AUTHOR

Top

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


Crypt-Vigenere documentation  | view source Contained in the Crypt-Vigenere distribution.