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   295008 use 5.014;
  3         27  
5 3     3   18 use strict;
  3         5  
  3         71  
6 3     3   16 use warnings;
  3         3  
  3         486  
7              
8             require Exporter;
9              
10             our $VERSION = "0.12";
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__