man GnuPG::Fingerprint () - GnuPG Fingerprint Objects
NAME
GnuPG::Fingerprint - GnuPG Fingerprint Objects
SYNOPSIS
# assumes a GnuPG::Key in $key my $fingerprint = $key->fingerprint->as_hex_string();
DESCRIPTION
GnuPG::Fingerprint objects are generally part of GnuPG::Key objects, and are not created on their own.
OBJECT METHODS
Initialization Methods
- new( %initialization_args )
- This methods creates a new object. The optional arguments are initialization of data members; the initialization is done in a manner according to the method created as described in new_hash_init in Class::MethodMaker.
- hash_init( %args ).
- This method works as described in new_hash_init in Class::MethodMaker.
OBJECT DATA MEMBERS
Note that these data members are interacted with via object methods created using the methods described in get_set in Class::MethodMaker, or object in Class::MethodMaker. Please read there for more information.
- as_hex_string
- This is the hex value of the fingerprint that the object embodies, in string format.
SEE ALSO
GnuPG::Key, Class::MethodMaker