Crypt::Shark is a Crypt::CBC compliant block cipher.
ABSTRACT
Shark is 64-bit block cipher that accepts a 128-bit key.
SYNOPSIS
use Crypt::Shark;
$cipher = new Crypt::Shark $key;
$ciphertext = $cipher->encrypt($plaintext);
$plaintext = $cipher->decrypt($ciphertext);
Shark is 64-bit block cipher that accepts a 128-bit key. It was designed by Vincent Rijmen, Joan Daemen, Bart Preneel, Antoon Bosselaers, and Erik De Win.
This module supports the Crypt::CBC interface, with the following functions.
Requirements:
· Perl