/usr/share/perl5/GnuPG/SecretKey.pm is in libgnupg-interface-perl 0.50-3.
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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53  | #  SecretKey.pm
#    - providing an object-oriented approach to GnuPG secret keys
#
#  Copyright (C) 2000 Frank J. Tobin <ftobin@cpan.org>
#
#  This module is free software; you can redistribute it and/or modify it
#  under the same terms as Perl itself.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
#  $Id: SecretKey.pm,v 1.9 2001/09/14 12:34:36 ftobin Exp $
#
package GnuPG::SecretKey;
use Moo;
BEGIN { extends qw( GnuPG::PrimaryKey ) }
1;
__END__
=head1 NAME
GnuPG::SecretKey - GnuPG Secret Key Objects
=head1 SYNOPSIS
  # assumes a GnuPG::Interface object in $gnupg
  my @keys = $gnupg->get_secret_keys( 'ftobin' );
  # now GnuPG::SecretKey objects are in @keys
=head1 DESCRIPTION
GnuPG::SecretKey objects are generally instantiated
through various methods of GnuPG::Interface.
They embody various aspects of a GnuPG secret key.
This package inherits data members and object methods
from GnuPG::PrimaryKey, which is described here, but rather
in L<GnuPG::PrimaryKey>.
Currently, this package is functionally no different
from GnuPG::PrimaryKey.
=head1 SEE ALSO
L<GnuPG::PrimaryKey>,
=cut
 |