File Coverage

blib/lib/Crypt/Cipher/Serpent.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 6 6 100.0
total 32 32 100.0


line stmt bran cond sub pod time code
1             package Crypt::Cipher::Serpent;
2              
3             ### BEWARE - GENERATED FILE, DO NOT EDIT MANUALLY!
4              
5 3     3   122109 use strict;
  3         8  
  3         131  
6 3     3   14 use warnings;
  3         11  
  3         296  
7             our $VERSION = '0.089_001';
8              
9 3     3   22 use base qw(Crypt::Cipher);
  3         5  
  3         1298  
10              
11             sub new {
12 16     16 1 189268 my ($class, @args) = @_;
13 16         234 my $obj = Crypt::Cipher->new('Serpent', @args);
14 16         125 return bless $obj, $class;
15             }
16              
17 3     3 1 221646 sub blocksize { Crypt::Cipher::blocksize('Serpent') }
18 3     3 1 18 sub keysize { Crypt::Cipher::keysize('Serpent') }
19 3     3 1 36 sub max_keysize { Crypt::Cipher::max_keysize('Serpent') }
20 3     3 1 29 sub min_keysize { Crypt::Cipher::min_keysize('Serpent') }
21 3     3 1 27 sub default_rounds { Crypt::Cipher::default_rounds('Serpent') }
22              
23             1;
24              
25             =pod
26              
27             =head1 NAME
28              
29             Crypt::Cipher::Serpent - Symmetric cipher Serpent, key size: 128/192/256 bits
30              
31             =head1 SYNOPSIS
32              
33             ### example 1
34             use Crypt::Mode::CBC;
35              
36             my $key = '...'; # length must be a valid key size for this cipher
37             my $iv = '...'; # 16 bytes
38             my $cbc = Crypt::Mode::CBC->new('Serpent');
39             my $ciphertext = $cbc->encrypt("secret data", $key, $iv);
40              
41             ### example 2 (slower)
42             use Crypt::CBC;
43             use Crypt::Cipher::Serpent;
44              
45             my $key = '...'; # length must be a valid key size for this cipher
46             my $iv = '...'; # 16 bytes
47             my $cbc = Crypt::CBC->new( -cipher=>'Cipher::Serpent', -key=>$key, -iv=>$iv );
48             my $ciphertext = $cbc->encrypt("secret data");
49              
50             =head1 DESCRIPTION
51              
52             I
53              
54             This module implements the Serpent cipher. Its interface is compatible with L.
55              
56             B This module only implements single-block encryption and decryption.
57             For general data, use a block mode such as
58             L, L, or L (which is slower).
59              
60             =head1 METHODS
61              
62             Unless noted otherwise, assume C<$c> is an existing cipher object created via
63             C, for example:
64              
65             my $c = Crypt::Cipher::Serpent->new($key);
66              
67             =head2 new
68              
69             my $c = Crypt::Cipher::Serpent->new($key);
70             #or
71             my $c = Crypt::Cipher::Serpent->new($key, $rounds);
72              
73             # $key .... [binary string] key of an accepted length (see keysize, min_keysize, max_keysize)
74             # $rounds . [integer] optional, number of rounds (if supported by the cipher; croaks on invalid value)
75              
76             =head2 encrypt
77              
78             Encrypts exactly one block of plaintext. The length of C<$plaintext> must
79             equal L; croaks otherwise. An empty string is accepted and
80             returned unchanged.
81              
82             my $ciphertext = $c->encrypt($plaintext);
83              
84             Returns the encrypted block as a binary string (raw bytes).
85              
86             =head2 decrypt
87              
88             Decrypts exactly one block of ciphertext. The length of C<$ciphertext> must
89             equal L; croaks otherwise. An empty string is accepted and
90             returned unchanged.
91              
92             my $plaintext = $c->decrypt($ciphertext);
93              
94             Returns the decrypted block as a binary string (raw bytes).
95              
96             =head2 keysize
97              
98             Just an alias for C.
99              
100             $c->keysize;
101             #or
102             Crypt::Cipher::Serpent->keysize;
103             #or
104             Crypt::Cipher::Serpent::keysize;
105              
106             =head2 blocksize
107              
108             Returns the cipher block size (in bytes).
109              
110             $c->blocksize;
111             #or
112             Crypt::Cipher::Serpent->blocksize;
113             #or
114             Crypt::Cipher::Serpent::blocksize;
115              
116             =head2 max_keysize
117              
118             Returns the maximum key size (in bytes).
119              
120             $c->max_keysize;
121             #or
122             Crypt::Cipher::Serpent->max_keysize;
123             #or
124             Crypt::Cipher::Serpent::max_keysize;
125              
126             =head2 min_keysize
127              
128             Returns the minimum key size (in bytes).
129              
130             $c->min_keysize;
131             #or
132             Crypt::Cipher::Serpent->min_keysize;
133             #or
134             Crypt::Cipher::Serpent::min_keysize;
135              
136             =head2 default_rounds
137              
138             Returns the cipher's default round count.
139              
140             $c->default_rounds;
141             #or
142             Crypt::Cipher::Serpent->default_rounds;
143             #or
144             Crypt::Cipher::Serpent::default_rounds;
145              
146             =head1 SEE ALSO
147              
148             =over
149              
150             =item * L, L
151              
152             =item * L
153              
154             =back
155              
156             =cut