CryptX

 view release on metacpan or  search on metacpan

lib/Crypt/Cipher/MULTI2.pm  view on Meta::CPAN

package Crypt::Cipher::MULTI2;

### BEWARE - GENERATED FILE, DO NOT EDIT MANUALLY!

use strict;
use warnings;
our $VERSION = '0.090';

use base qw(Crypt::Cipher);

sub new {
  my ($class, @args) = @_;
  my $obj = Crypt::Cipher->new('MULTI2', @args);
  return bless $obj, $class;
}

sub blocksize      { Crypt::Cipher::blocksize('MULTI2')      }
sub keysize        { Crypt::Cipher::keysize('MULTI2')        }
sub max_keysize    { Crypt::Cipher::max_keysize('MULTI2')    }
sub min_keysize    { Crypt::Cipher::min_keysize('MULTI2')    }
sub default_rounds { Crypt::Cipher::default_rounds('MULTI2') }

1;

=pod

=head1 NAME

Crypt::Cipher::MULTI2 - Symmetric cipher MULTI2, key size: 320 bits

=head1 SYNOPSIS

  ### example 1
  use Crypt::Mode::CBC;

  my $key = '...'; # length must be a valid key size for this cipher
  my $iv = '...';  # 16 bytes
  my $cbc = Crypt::Mode::CBC->new('MULTI2');
  my $ciphertext = $cbc->encrypt("secret data", $key, $iv);

  ### example 2 (slower)
  use Crypt::CBC;
  use Crypt::Cipher::MULTI2;

  my $key = '...'; # length must be a valid key size for this cipher
  my $iv = '...';  # 16 bytes
  my $cbc = Crypt::CBC->new( -cipher=>'Cipher::MULTI2', -key=>$key, -iv=>$iv );
  my $ciphertext = $cbc->encrypt("secret data");

=head1 DESCRIPTION

This module implements the MULTI2 cipher. Its interface is compatible with L<Crypt::CBC>.

B<Note:> This module only implements single-block encryption and decryption.
For general data, use a block mode such as
L<Crypt::Mode::CBC>, L<Crypt::Mode::CTR>, or L<Crypt::CBC> (which is slower).

=head1 METHODS

Unless noted otherwise, assume C<$c> is an existing cipher object created via
C<new>, for example:

 my $c = Crypt::Cipher::MULTI2->new($key);

=head2 new

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

 # $key .... [binary string] key of an accepted length (see keysize, min_keysize, max_keysize)
 # $rounds . [integer] optional, number of rounds (if supported by the cipher; croaks on invalid value)

=head2 encrypt

Encrypts exactly one block of plaintext. The length of C<$plaintext> must
equal L</blocksize>; croaks otherwise. An empty string is accepted and
returned unchanged.

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

Returns the encrypted block as a binary string (raw bytes).

=head2 decrypt

Decrypts exactly one block of ciphertext. The length of C<$ciphertext> must
equal L</blocksize>; croaks otherwise. An empty string is accepted and
returned unchanged.

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

Returns the decrypted block as a binary string (raw bytes).

=head2 keysize

Just an alias for C<max_keysize>.

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

=head2 blocksize

Returns the cipher block size (in bytes).

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

=head2 max_keysize

Returns the maximum key size (in bytes).



( run in 0.817 second using v1.01-cache-2.11-cpan-e1769b4cff6 )