Crypt-CAST5_PP

 view release on metacpan or  search on metacpan

CAST5_PP.pm  view on Meta::CPAN

use AutoLoader qw( AUTOLOAD );
use Carp;
use integer;
use vars qw( @s1 @s2 @s3 @s4 @s5 @s6 @s7 @s8 $VERSION );

$VERSION = "1.04";

sub new {
  my ($class, $key) = @_;
  my $cast5 = { };
  bless $cast5 => $class;
  $cast5->init($key) if defined $key;
  return $cast5;
} # new

sub blocksize { return 8  }
sub keysize   { return 16 }

1 # end module
__END__

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.612 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )