Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Crypt::Cipher::Twofish

Name Crypt::Cipher::Twofish
Version 0.076
Located at /usr/local/lib64/perl5
File /usr/local/lib64/perl5/Crypt/Cipher/Twofish.pm
Is Core No
Search CPAN for this module Crypt::Cipher::Twofish
Documentation Crypt::Cipher::Twofish
Module Details Crypt::Cipher::Twofish


NAME

Crypt::Cipher::Twofish - Symmetric cipher Twofish, key size: 128/192/256 bits


SYNOPSIS

  ### example 1
  use Crypt::Mode::CBC;
  my $key = '...'; # length has to be valid key size for this cipher
  my $iv = '...';  # 16 bytes
  my $cbc = Crypt::Mode::CBC->new('Twofish');
  my $ciphertext = $cbc->encrypt("secret data", $key, $iv);
  ### example 2 (slower)
  use Crypt::CBC;
  use Crypt::Cipher::Twofish;
  my $key = '...'; # length has to be valid key size for this cipher
  my $iv = '...';  # 16 bytes
  my $cbc = Crypt::CBC->new( -cipher=>'Cipher::Twofish', -key=>$key, -iv=>$iv );
  my $ciphertext = $cbc->encrypt("secret data");


DESCRIPTION

This module implements the Twofish cipher. Provided interface is compliant with Crypt::CBC module.

BEWARE: This module implements just elementary ``one-block-(en|de)cryption'' operation - if you want to encrypt/decrypt generic data you have to use some of the cipher block modes - check for example Crypt::Mode::CBC, Crypt::Mode::CTR or Crypt::CBC (which will be slower).


METHODS

new

 $c = Crypt::Cipher::Twofish->new($key);
 #or
 $c = Crypt::Cipher::Twofish->new($key, $rounds);

encrypt

 $ciphertext = $c->encrypt($plaintext);

decrypt

 $plaintext = $c->decrypt($ciphertext);

keysize

  $c->keysize;
  #or
  Crypt::Cipher::Twofish->keysize;
  #or
  Crypt::Cipher::Twofish::keysize;

blocksize

  $c->blocksize;
  #or
  Crypt::Cipher::Twofish->blocksize;
  #or
  Crypt::Cipher::Twofish::blocksize;

max_keysize

  $c->max_keysize;
  #or
  Crypt::Cipher::Twofish->max_keysize;
  #or
  Crypt::Cipher::Twofish::max_keysize;

min_keysize

  $c->min_keysize;
  #or
  Crypt::Cipher::Twofish->min_keysize;
  #or
  Crypt::Cipher::Twofish::min_keysize;

default_rounds

  $c->default_rounds;
  #or
  Crypt::Cipher::Twofish->default_rounds;
  #or
  Crypt::Cipher::Twofish::default_rounds;


SEE ALSO

Perl Diver brought to you by ScriptSolutions.com © 1997- 2025