blib/lib/Crypt/Loki97.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 6 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 8 | 8 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Crypt::Loki97; | ||||||
2 | |||||||
3 | 7 | 7 | 2236549 | use strict; | |||
7 | 16 | ||||||
7 | 315 | ||||||
4 | 7 | 7 | 38 | use warnings; | |||
7 | 14 | ||||||
7 | 839 | ||||||
5 | require Exporter; | ||||||
6 | |||||||
7 | our @EXPORT_OK = qw(keysize blocksize new encrypt decrypt); | ||||||
8 | our $VERSION = '1.0.1'; | ||||||
9 | our @ISA = qw(Exporter); | ||||||
10 | |||||||
11 | require XSLoader; | ||||||
12 | XSLoader::load('Crypt::Loki97', $VERSION); | ||||||
13 | |||||||
14 | # Preloaded methods go here. | ||||||
15 | |||||||
16 | 1; | ||||||
17 | |||||||
18 | __END__ |