File Coverage

blib/lib/Crypt/OpenSSH/ChachaPoly.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::OpenSSH::ChachaPoly;
2              
3 1     1   17010 use strict;
  1         2  
  1         27  
4 1     1   4 use warnings;
  1         1  
  1         109  
5              
6             require Exporter;
7              
8             our @ISA = qw(Exporter);
9              
10             # Items to export into callers namespace by default. Note: do not export
11             # names by default without a very good reason. Use EXPORT_OK instead.
12             # Do not simply export all your public functions/methods/constants.
13              
14             # This allows declaration use Crypt::OpenSSH::ChachaPoly ':all';
15             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
16             # will save memory.
17             our %EXPORT_TAGS = ( 'all' => [ qw(
18            
19             ) ] );
20              
21             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
22              
23             our @EXPORT = qw(
24            
25             );
26              
27             our $VERSION = '0.02';
28              
29             require XSLoader;
30             XSLoader::load('Crypt::OpenSSH::ChachaPoly', $VERSION);
31              
32             # Preloaded methods go here.
33              
34             1;
35             __END__