/usr/share/perl5/GnuPG/Key.pm is in libgnupg-interface-perl 0.45-1.
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | # Key.pm
# - providing an object-oriented approach to GnuPG 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: Key.pm,v 1.10 2001/12/10 01:29:27 ftobin Exp $
#
package GnuPG::Key;
use Any::Moose;
with qw(GnuPG::HashInit);
has [
qw( length
algo_num
hex_id
hex_data
creation_date
expiration_date
creation_date_string
expiration_date_string
fingerprint
usage_flags
)
] => (
isa => 'Any',
is => 'rw',
);
has [
qw(
signatures
revokers
revocations
pubkey_data
)] => (
isa => 'ArrayRef',
is => 'rw',
default => sub { [] },
);
sub push_signatures {
my $self = shift;
push @{ $self->signatures }, @_;
}
sub push_revocations {
my $self = shift;
push @{ $self->revocations }, @_;
}
sub push_revokers {
my $self = shift;
push @{ $self->revokers }, @_;
}
sub short_hex_id {
my ($self) = @_;
return substr $self->hex_id(), -8;
}
sub compare {
my ($self, $other, $deep) = @_;
my @string_comparisons = qw(
length
algo_num
hex_id
creation_date
creation_date_string
usage_flags
);
my $field;
foreach $field (@string_comparisons) {
return 0 unless $self->$field eq $other->$field;
}
my @can_be_undef = qw(
hex_data
expiration_date
expiration_date_string
);
foreach $field (@can_be_undef) {
return 0 unless (defined $self->$field) == (defined $other->$field);
if (defined $self->$field) {
return 0 unless $self->$field eq $other->$field;
}
}
my @objs = qw(
fingerprint
);
foreach $field (@objs) {
return 0 unless $self->$field->compare($other->$field, $deep);
}
if (defined $deep && $deep) {
my @lists = qw(
signatures
revokers
revocations
);
my $i;
foreach my $list (@lists) {
return 0 unless @{$self->$list} == @{$other->$list};
for ( $i = 0; $i < scalar(@{$self->$list}); $i++ ) {
return 0
unless $self->$list->[$i]->compare($other->$list->[$i], $deep);
}
}
return 0 unless @{$self->pubkey_data} == @{$other->pubkey_data};
for ( $i = 0; $i < scalar(@{$self->pubkey_data}); $i++ ) {
return 0 unless (0 == $self->pubkey_data->[$i]->bcmp($other->pubkey_data->[$i]));
}
}
return 1;
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=head1 NAME
GnuPG::Key - GnuPG Key Object
=head1 SYNOPSIS
# assumes a GnuPG::Interface object in $gnupg
my @keys = $gnupg->get_public_keys( 'ftobin' );
# now GnuPG::PublicKey objects are in @keys
=head1 DESCRIPTION
GnuPG::Key objects are generally not instantiated on their
own, but rather used as a superclass of GnuPG::PublicKey,
GnuPG::SecretKey, or GnuPG::SubKey objects.
=head1 OBJECT METHODS
=head2 Initialization Methods
=over 4
=item new( I<%initialization_args> )
This methods creates a new object. The optional arguments are
initialization of data members.
=item hash_init( I<%args> ).
=item short_hex_id
This returns the commonly-used short, 8 character short hex id
of the key.
=item compare( I<$other>, I<$deep> )
Returns non-zero only when this Key is identical to the other
GnuPG::Key. If $deep is present and non-zero, the key's associated
signatures, revocations, and revokers will also be compared.
=back
=head1 OBJECT DATA MEMBERS
=over 4
=item length
Number of bits in the key.
=item algo_num
They algorithm number that the Key is used for.
=item usage flags
The Key Usage flags associated with this key, represented as a string
of lower-case letters. Possible values include: (a) authenticate, (c)
certify, (e) encrypt, and (s) sign.
A key may have any combination of them in any order. In addition to
these letters, the primary key has uppercase versions of the letters
to denote the _usable_ capabilities of the entire key, and a potential
letter 'D' to indicate a disabled key.
See "key capabilities" DETAILS from the GnuPG sources for more
details.
=item hex_data
The data of the key. WARNING: this seems to have never been
instantiated, and should always be undef.
=item pubkey_data
A list of Math::BigInt objects that correspond to the public key
material for the given key (this member is empty on secret keys).
For DSA keys, the values are: prime (p), group order (q), group generator (g), y
For RSA keys, the values are: modulus (n), exponent (e)
For El Gamal keys, the values are: prime (p), group generator (g), y
For more details, see: http://tools.ietf.org/html/rfc4880#page-42
=item hex_id
The long hex id of the key. This is not the fingerprint nor
the short hex id, which is 8 hex characters.
=item creation_date_string
=item expiration_date_string
Formatted date of the key's creation and expiration. If the key has
no expiration, expiration_date_string will return undef.
=item creation_date
=item expiration_date
Date of the key's creation and expiration, stored as the number of
seconds since midnight 1970-01-01 UTC. If the key has no expiration,
expiration_date will return undef.
=item fingerprint
A GnuPG::Fingerprint object.
=item signatures
A list of GnuPG::Signature objects embodying the signatures on this
key. For subkeys, the signatures are usually subkey-binding
signatures. For primary keys, the signatures are statements about the
key itself.
=item revocations
A list of revocations associated with this key, stored as
GnuPG::Signature objects (since revocations are a type of
certification as well). Note that a revocation of a primary key has a
different semantic meaning than a revocation associated with a subkey.
=item revokers
A list of GnuPG::Revoker objects associated with this key, indicating
other keys which are allowed to revoke certifications made by this
key.
=back
=head1 SEE ALSO
L<GnuPG::Fingerprint>,
L<GnuPG::Signature>,
L<GnuPG::Revoker>,
=cut
|