File Coverage

blib/lib/Crypt/Bear/PEM.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Crypt::Bear::PEM;
2             $Crypt::Bear::PEM::VERSION = '0.004';
3 12     12   619371 use strict;
  12         38  
  12         421  
4 12     12   69 use warnings;
  12         25  
  12         592  
5              
6 12     12   61 use Exporter 'import';
  12         28  
  12         858  
7             our @EXPORT_OK = qw/pem_encode pem_decode/;
8             our %EXPORT_TAGS = (all => \@EXPORT_OK);
9              
10 12     12   2554 use Crypt::Bear;
  12         36  
  12         482  
11              
12             1;
13              
14             # ABSTRACT: A decoder for PEM
15              
16             __END__