blib/lib/Crypt/RC4/XS.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::RC4::XS; | ||||||
2 | |||||||
3 | 2 | 2 | 57595 | use strict; | |||
2 | 3 | ||||||
2 | 89 | ||||||
4 | 2 | 2 | 9 | use warnings; | |||
2 | 4 | ||||||
2 | 80 | ||||||
5 | |||||||
6 | require Exporter; | ||||||
7 | 2 | 2 | 1707 | use AutoLoader qw(AUTOLOAD); | |||
2 | 4502 | ||||||
2 | 13 | ||||||
8 | |||||||
9 | our @ISA = qw(Exporter); | ||||||
10 | |||||||
11 | our %EXPORT_TAGS = ( 'all' => [ qw() ] ); | ||||||
12 | |||||||
13 | our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); | ||||||
14 | our @EXPORT = qw(RC4); | ||||||
15 | |||||||
16 | our $VERSION = '0.02'; | ||||||
17 | |||||||
18 | require XSLoader; | ||||||
19 | XSLoader::load('Crypt::RC4::XS', $VERSION); | ||||||
20 | |||||||
21 | |||||||
22 | 1; | ||||||
23 | __END__ |