File Coverage

blib/lib/Net/SSH/Perl/Cipher/AES192_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::AES192_CTR;
2              
3 1     1   8 use base qw( Net::SSH::Perl::Cipher::AES_CTR );
  1         2  
  1         487  
4 1     1   11 use strict;
  1         12  
  1         40  
5              
6 0     0 0   sub keysize { 24 } # 192 bits
7              
8             1;
9             __END__