/usr/share/perl5/GnuPG/UserId.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 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 | # UserId.pm
# - providing an object-oriented approach to GnuPG user ids
#
# 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: UserId.pm,v 1.7 2001/08/21 13:31:50 ftobin Exp $
#
package GnuPG::UserId;
use Moo;
use MooX::late;
has [qw( validity as_string )] => (
isa => 'Any',
is => 'rw',
);
has signatures => (
isa => 'ArrayRef',
is => 'rw',
default => sub { [] },
);
has revocations => (
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 compare {
my ( $self, $other, $deep ) = @_;
my @comparison_ints = qw( validity as_string );
foreach my $field ( @comparison_ints ) {
return 0 unless $self->$field() eq $other->$field();
}
return 0 unless @{$self->signatures} == @{$other->signatures};
return 0 unless @{$self->revocations} == @{$other->revocations};
# FIXME: is it actually wrong if the associated signatures come out
# in a different order on the two compared designated revokers?
if (defined $deep && $deep) {
for ( my $i = 0; $i < scalar(@{$self->signatures}); $i++ ) {
return 0
unless $self->signatures->[$i]->compare($other->signatures->[$i], 1);
}
for ( my $i = 0; $i < scalar(@{$self->revocations}); $i++ ) {
return 0
unless $self->revocations->[$i]->compare($other->revocations->[$i], 1);
}
}
return 1;
}
# DEPRECATED
sub user_id_string {
my ( $self, $v ) = @_;
$self->as_string($v) if defined $v;
return $self->as_string();
}
1;
__END__
=head1 NAME
GnuPG::UserId - GnuPG User ID Objects
=head1 SYNOPSIS
# assumes a GnuPG::PublicKey object in $publickey
my $user_id = $publickey->user_ids_ref->[0]->as_string;
=head1 DESCRIPTION
GnuPG::UserId objects are generally not instantiated on their
own, but rather as part of GnuPG::PublicKey or GnuPG::SecretKey
objects.
=head1 OBJECT METHODS
=over 4
=item new( I<%initialization_args> )
This methods creates a new object. The optional arguments are
initialization of data members;
=item compare( I<$other>, I<$deep> )
Returns non-zero only when this User ID is identical to the other
GnuPG::UserID. If $deep is present and non-zero, the User ID's
signatures and revocations will also be compared.
=back
=head1 OBJECT DATA MEMBERS
=over 4
=item as_string
A string of the user id.
=item validity
A scalar holding the value GnuPG reports for the trust of authenticity
(a.k.a.) validity of a key.
See GnuPG's DETAILS file for details.
=item signatures
A list of GnuPG::Signature objects embodying the signatures
on this user id.
=item revocations
A list of revocations associated with this User ID, stored as
GnuPG::Signature objects (since revocations are a type of
certification as well).
=back
=head1 SEE ALSO
L<GnuPG::Signature>,
=cut
|