logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

GnuPG::UserId - GnuPG User ID Objects

Description

       GnuPG::UserId objects are generally not instantiated on their own, but rather as part of GnuPG::PublicKey
       or GnuPG::SecretKey objects.

Name

       GnuPG::UserId - GnuPG User ID Objects

Object Data Members

       as_string
           A string of the user id.

       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.

       signatures
           A list of GnuPG::Signature objects embodying the signatures on this user id.

       revocations
           A list of revocations associated with  this  User  ID,  stored  as  GnuPG::Signature  objects  (since
           revocations are a type of certification as well).

Object Methods

       new( %initialization_args )
           This methods creates a new object.  The optional arguments are initialization of data members;

       compare( $other, $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.

See Also

       GnuPG::Signature,

perl v5.40.1                                       2025-03-14                                 GnuPG::UserId(3pm)

Synopsis

         # assumes a GnuPG::PublicKey object in $publickey
         my $user_id = $publickey->user_ids_ref->[0]->as_string;

See Also