Group
Extension

Matches 1

Crypt-RIPEMD160 ( T/TO/TODDR/Crypt-RIPEMD160-0.08.tar.gz, TODDR, 2020; MetaCPAN )
Crypt-RIPEMD160/t/01test.t ( view source; MetaCPAN )
");

    $ripemd160->reset;
    $ripemd160->addfile(*F);
    my $hex = $ripemd160->hexdigest;
    isnt($hex, '', 'Various flavours of file-handle to addfile - *F');
}

# 9: Fully qualified with :: ope
   $ripemd160->reset;
    $ripemd160->addfile(*main::F);
    my $hex = $ripemd160->hexdigest;
    isnt($hex, '', 'Various flavours of file-handle to addfile - *main::F');
}

# 11: Type glob reference 
0);
    $ripemd160->reset;
    $ripemd160->addfile(\*F);
    my $hex = $ripemd160->hexdigest;
    isnt($hex, '', 'Various flavours of file-handle to addfile - \\*F');
}

# 13: Other ways of reading th

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.