File Coverage

blib/lib/Crypt/OpenSSL/SignCSR.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT OpenSSL Self Sign a Certificate Signing Request in XS.
2             package Crypt::OpenSSL::SignCSR;
3              
4 3     3   336502 use 5.014;
  3         8  
5 3     3   12 use strict;
  3         5  
  3         61  
6 3     3   12 use warnings;
  3         3  
  3         420  
7              
8             require Exporter;
9              
10             our $VERSION = '0.16';
11              
12             our @ISA = qw(Exporter);
13              
14             our %EXPORT_TAGS = ( 'all' => [ qw(
15              
16             ) ] );
17              
18             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
19              
20             our @EXPORT = qw(
21              
22             );
23              
24             require XSLoader;
25             XSLoader::load('Crypt::OpenSSL::SignCSR', $VERSION);
26              
27             1;
28             __END__