File Coverage

blib/lib/Crypt/OpenSSL/Random.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::OpenSSL::Random;
2              
3 1     1   405 use strict;
  1         1  
  1         34  
4 1     1   3 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  1         1  
  1         64  
5              
6 1     1   4 use XSLoader;
  1         3  
  1         52  
7             require Exporter;
8             @ISA = qw(Exporter);
9             @EXPORT_OK = qw( random_bytes random_pseudo_bytes random_seed
10             random_egd random_status );
11              
12             $VERSION = '0.10';
13             XSLoader::load( __PACKAGE__, $VERSION );
14              
15             1;
16             __END__