The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::DNS::RR::NSEC3PARAM - DNS NSEC3PARAM resource record

SYNOPSIS

use Net::DNS::RR;

DESCRIPTION

Class for DNS Address (NSEC3PARAM) resource records.

The NSEC3PARAM RR contains the NSEC3 parameters (hash algorithm, flags, iterations and salt) needed to calculate hashed ownernames. The presence of an NSEC3PARAM RR at a zone apex indicates that the specified parameters may be used by authoritative servers to choose an appropriate set of NSEC3 records for negative responses.

METHODS

hashalgo

Reads and sets the hashalgo (hash algorithm) attribute.

flags

Reads and sets the flag field. Check the IANA registry for valid values. At the time of code release the only defined value was 0x00

iterations

Reads and sets the iterations field

salt

Reads and sets the salt value. Accepts and returns a string with a number in hexadecimal notation.

COPYRIGHT

Copyright (c) 2007,2008 NLnet Labs. Author Olaf M. Kolkman <olaf@net-dns.org>

All Rights Reserved

Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.

THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS; IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Based on, and contains, code by Copyright (c) 1997 Michael Fuhr.

Acknowledgements to Roy Arends who made a test version for this class and whose code I've looked at before writing this module.

SEE ALSO

http://www.net-dns.org/ http://tools.ietf.org/wg/dnsext/draft-ietf-dnsext-nsec3 Net::DNS::RR::NSEC3,

perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet, Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC4033, RFC4034, RFC4035, RFC 5155