1GnuPG::UserId(3) User Contributed Perl Documentation GnuPG::UserId(3)
2
3
4
6 GnuPG::UserId - GnuPG User ID Objects
7
9 # assumes a GnuPG::PublicKey object in $publickey
10 my $user_id = $publickey->user_ids_ref->[0]->as_string;
11
13 GnuPG::UserId objects are generally not instantiated on their own, but
14 rather as part of GnuPG::PublicKey or GnuPG::SecretKey objects.
15
17 new( %initialization_args )
18 This methods creates a new object. The optional arguments are
19 initialization of data members;
20
22 as_string
23 A string of the user id.
24
25 validity
26 A scalar holding the value GnuPG reports for the trust of
27 authenticity (a.k.a.) validity of a key. See GnuPG's DETAILS file
28 for details.
29
30 signatures
31 A list of GnuPG::Signature objects embodying the signatures on this
32 user id.
33
35 GnuPG::Signature,
36
37
38
39perl v5.12.0 2009-07-13 GnuPG::UserId(3)