File Coverage

blib/lib/Net/SSH/Perl/Cipher/AES128_CTR.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             package Net::SSH::Perl::Cipher::AES128_CTR;
2              
3 1     1   7 use base qw( Net::SSH::Perl::Cipher::AES_CTR );
  1         3  
  1         107  
4 1     1   6 use strict;
  1         3  
  1         44  
5              
6 0     0 0   sub keysize { 16 } # 128 bits
7              
8             1;
9             __END__