File Coverage

blib/lib/Crypt/Cipher/AES.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 5 5 100.0
total 27 27 100.0


line stmt bran cond sub pod time code
1             package Crypt::Cipher::AES;
2              
3             ### BEWARE - GENERATED FILE, DO NOT EDIT MANUALLY!
4              
5 3     3   65984 use strict;
  3         17  
  3         80  
6 3     3   13 use warnings;
  3         4  
  3         126  
7             our $VERSION = '0.080';
8              
9 3     3   18 use base qw(Crypt::Cipher);
  3         5  
  3         1031  
10              
11 2     2 1 151 sub blocksize { Crypt::Cipher::blocksize('AES') }
12 2     2 1 10 sub keysize { Crypt::Cipher::keysize('AES') }
13 2     2 1 13 sub max_keysize { Crypt::Cipher::max_keysize('AES') }
14 2     2 1 14 sub min_keysize { Crypt::Cipher::min_keysize('AES') }
15 2     2 1 14 sub default_rounds { Crypt::Cipher::default_rounds('AES') }
16              
17             1;
18              
19             =pod
20              
21             =head1 NAME
22              
23             Crypt::Cipher::AES - Symmetric cipher AES (aka Rijndael), key size: 128/192/256 bits
24              
25             =head1 SYNOPSIS
26              
27             ### example 1
28             use Crypt::Mode::CBC;
29              
30             my $key = '...'; # length has to be valid key size for this cipher
31             my $iv = '...'; # 16 bytes
32             my $cbc = Crypt::Mode::CBC->new('AES');
33             my $ciphertext = $cbc->encrypt("secret data", $key, $iv);
34              
35             ### example 2 (slower)
36             use Crypt::CBC;
37             use Crypt::Cipher::AES;
38              
39             my $key = '...'; # length has to be valid key size for this cipher
40             my $iv = '...'; # 16 bytes
41             my $cbc = Crypt::CBC->new( -cipher=>'Cipher::AES', -key=>$key, -iv=>$iv );
42             my $ciphertext = $cbc->encrypt("secret data");
43              
44             =head1 DESCRIPTION
45              
46             This module implements the AES cipher. Provided interface is compliant with L module.
47              
48             B This module implements just elementary "one-block-(en|de)cryption" operation - if you want to
49             encrypt/decrypt generic data you have to use some of the cipher block modes - check for example
50             L, L or L (which will be slower).
51              
52             =head1 METHODS
53              
54             =head2 new
55              
56             $c = Crypt::Cipher::AES->new($key);
57             #or
58             $c = Crypt::Cipher::AES->new($key, $rounds);
59              
60             =head2 encrypt
61              
62             $ciphertext = $c->encrypt($plaintext);
63              
64             =head2 decrypt
65              
66             $plaintext = $c->decrypt($ciphertext);
67              
68             =head2 keysize
69              
70             $c->keysize;
71             #or
72             Crypt::Cipher::AES->keysize;
73             #or
74             Crypt::Cipher::AES::keysize;
75              
76             =head2 blocksize
77              
78             $c->blocksize;
79             #or
80             Crypt::Cipher::AES->blocksize;
81             #or
82             Crypt::Cipher::AES::blocksize;
83              
84             =head2 max_keysize
85              
86             $c->max_keysize;
87             #or
88             Crypt::Cipher::AES->max_keysize;
89             #or
90             Crypt::Cipher::AES::max_keysize;
91              
92             =head2 min_keysize
93              
94             $c->min_keysize;
95             #or
96             Crypt::Cipher::AES->min_keysize;
97             #or
98             Crypt::Cipher::AES::min_keysize;
99              
100             =head2 default_rounds
101              
102             $c->default_rounds;
103             #or
104             Crypt::Cipher::AES->default_rounds;
105             #or
106             Crypt::Cipher::AES::default_rounds;
107              
108             =head1 SEE ALSO
109              
110             =over
111              
112             =item * L, L
113              
114             =item * L
115              
116             =back
117              
118             =cut