Mail::DKIM::Signature

Mail::DKIM::Signature module encapsulates a DKIM signature header.
Download

Mail::DKIM::Signature Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Jason Long
  • Publisher web site:
  • http://search.cpan.org/~jaslong/Mail-DKIM-0.26/lib/Mail/DKIM/Signature.pm

Mail::DKIM::Signature Tags


Mail::DKIM::Signature Description

Mail::DKIM::Signature module encapsulates a DKIM signature header. Mail::DKIM::Signature module encapsulates a DKIM signature header.CONSTRUCTORSnew() - create a new signature from parameters my $signature = new Mail::DKIM::Signature( );parse() - create a new signature from a DKIM-Signature header my $sig = parse Mail::DKIM::Signature( "DKIM-Signature: a=rsa-sha1; b=yluiJ7+0=; c=relaxed" );Constructs a signature by parsing the provided DKIM-Signature header content. You do not have to include the header name (i.e. "DKIM-Signature:") but it is recommended, so the header name can be preserved and returned the same way in as_string().Note: The input to this constructor is in the same format as the output of the as_string method.METHODSalgorithm() - get or set the algorithm (a=) fieldThe algorithm used to generate the signature. Should be either "rsa-sha1", an RSA-signed SHA-1 digest, or "rsa-sha256", an RSA-signed SHA-256 digest.See also hash_algorithm().as_string() - the signature header as a string print $signature->as_string . "n";outputs DKIM-Signature: a=rsa-sha1; b=yluiJ7+0=; c=relaxedAs shown in the example, the as_string method can be used to generate the DKIM-Signature that gets prepended to a signed message.as_string_without_data() - signature without the signature data print $signature->as_string_without_data . "n";outputs DKIM-Signature: a=rsa-sha1; b=; c=relaxedThis is similar to the as_string() method, but it always excludes the "data" part. This is used by the DKIM canonicalization methods, which require incorporating this part of the signature into the signed message.body_count() - get or set the body count (l=) field my $i = $signature->body_count;Informs the verifier of the number of bytes in the body of the email included in the cryptographic hash, starting from 0 immediately following the CRLF preceding the body. Also known as the l= tag.When creating a signature, this tag may be either omitted, or set after the selected canonicalization system has received the entire message body (but before it canonicalizes the DKIM-Signature).body_hash() - get or set the body hash (bh=) field my $bh = $signature->body_hash;The hash of the body part of the message. Whitespace is ignored in this value. This tag is required.When accessing this value, whitespace is stripped from the tag for you.canonicalization() - get or set the canonicalization (c=) field $signature->canonicalization("relaxed", "simple"); ($header, $body) = $signature->canonicalization;Message canonicalization (default is "simple/simple"). This informs the verifier of the type of canonicalization used to prepare the message for signing.In scalar context, this returns header/body canonicalization as a single string separated by /. In list context, it returns a two element array, containing first the header canonicalization, then the body.domain() - get or set the domain (d=) field my $d = $signature->domain; # gets the domain value $signature->domain("example.org"); # sets the domain valueThe domain of the signing entity, as specified in the signature. This is the domain that will be queried for the public key.expiration() - get or set the signature expiration (x=) fieldSignature expiration (default is undef, meaning no expiration). The signature expiration, if defined, is an unsigned integer identifying the standard Unix seconds-since-1970 time when the signature will expire.get_public_key() - fetches the public key referenced by this signature my $pubkey = $signature->get_public_key;Public key to fetch is determined by the protocol, selector, and domain fields.hash_algorithm() - access the hash algorithm specified in this signature my $hash = $signature->hash_algorithm;Determines what hashing algorithm is used as part of the signature's specified algorithm.For algorithm "rsa-sha1", the hash algorithm is "sha1". Likewise, for algorithm "rsa-sha256", the hash algorithm is "sha256". If the algorithm is not recognized, undef is returned.headerlist() - get or set the signed header fields (h=) field $signature->headerlist("a:b:c"); my $headerlist = $signature->headerlist; my @headers = $signature->headerlist;Signed header fields. A colon-separated list of header field names that identify the header fields presented to the signing algorithm.In scalar context, the list of header field names will be returned as a single string, with the names joined together with colons. In list context, the header field names will be returned as a list.identity() - get or set the signing identity (i=) field my $i = $signature->identity;Identity of the user or agent on behalf of which this message is signed. The identity has an optional local part, followed by "@", then a domain name. The domain name should be the same as or a subdomain of the domain returned by the domain method.Ideally, the identity should match the identity listed in the From: header, or the Sender: header, but this is not required to have a valid signature. Whether the identity used is "authorized" to sign for the given message is not determined here.method() - get or set the canonicalization (c=) fieldMessage canonicalization (default is "simple"). This informs the verifier of the type of canonicalization used to prepare the message for signing.protocol() - get or set the query methods (q=) fieldA colon-separated list of query methods used to retrieve the public key (default is "dns"). Each query method is of the form "type", where the syntax and semantics of the options depends on the type.selector() - get or set the selector (s=) fieldThe selector subdivides the namespace for the "d=" (domain) tag.data() - get or set the signature data (b=) field my $base64 = $signature->data; $signature->data($base64);The signature data. Whitespace is automatically stripped from the returned value. The data is Base64-encoded.prettify() - alters the signature to look "nicer" as an email header $signature->prettify;This method may alter the signature in a way that breaks signatures, so it should be done ONLY when the signature is being generated, BEFORE being fed to the canonicalization algorithm.prettify_safe() - same as prettify() but only touches the b= part $signature->prettify_safe;This method will not break the signature, but it only affects the b= part of the signature.timestamp() - get or set the signature timestamp (t=) fieldSignature timestamp (default is undef, meaning unknown creation time). This is the time that the signature was created. The value is an unsigned integer identifying the number of standard Unix seconds-since-1970.version() - get or set the DKIM specification version (v=) fieldThis is the version of the DKIM specification that applies to this signature record.Requirements:· Perl Requirements: · Perl


Mail::DKIM::Signature Related Software