blib/lib/Crypt/GCM.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 9 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 12 | 12 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Crypt::GCM; | ||||||
2 | |||||||
3 | 4 | 4 | 168699 | use strict; | |||
4 | 12 | ||||||
4 | 144 | ||||||
4 | 4 | 4 | 22 | use warnings; | |||
4 | 8 | ||||||
4 | 98 | ||||||
5 | 4 | 4 | 21 | use Carp; | |||
4 | 11 | ||||||
4 | 934 | ||||||
6 | |||||||
7 | require Exporter; | ||||||
8 | |||||||
9 | our @ISA = qw(Exporter); | ||||||
10 | |||||||
11 | our %EXPORT_TAGS = ( 'all' => [ qw() ] ); | ||||||
12 | our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); | ||||||
13 | our @EXPORT = qw(); | ||||||
14 | |||||||
15 | our $VERSION = '0.02'; | ||||||
16 | |||||||
17 | require XSLoader; | ||||||
18 | XSLoader::load('Crypt::GCM', $VERSION); | ||||||
19 | |||||||
20 | |||||||
21 | 1; | ||||||
22 | __END__ |