|
NAMECrypt::OpenPGP::Message - Sequence of PGP packetsSYNOPSISuse Crypt::OpenPGP::Message; my $data; $data .= $_ while <STDIN>; my $msg = Crypt::OpenPGP::Message->new( Data => $data ); my @pieces = $msg->pieces; DESCRIPTIONCrypt::OpenPGP::Message provides a container for a sequence of PGP packets. It transparently handles ASCII-armoured messages, as well as cleartext signatures.USAGECrypt::OpenPGP::Message->new( %arg )Constructs a new Crypt::OpenPGP::Message object, presumably to be filled with some data, where the data is a serialized stream of PGP packets.Reads the packets into in-memory packet objects. Returns the new Message object on success, "undef" on failure. %arg can contain:
$msg->piecesReturns an array containing packet objects. For example, if the packet stream contains a public key packet, a user ID packet, and a signature packet, the array will contain three objects: a Crypt::OpenPGP::Certificate object; a Crypt::OpenPGP::UserID object; and a Crypt::OpenPGP::Signature object, in that order.AUTHOR & COPYRIGHTSPlease see the Crypt::OpenPGP manpage for author, copyright, and license information.
Visit the GSP FreeBSD Man Page Interface. |