/usr/share/perl5/GnuPG/HashInit.pm is in libgnupg-interface-perl 0.52-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | package GnuPG::HashInit;
use Moo::Role;
sub hash_init {
my ($self, %args) = @_;
while ( my ( $method, $value ) = each %args ) {
$self->$method($value);
}
}
1;
__END__
|