DNS::LDNS::DNSSecZone(3) | User Contributed Perl Documentation | DNS::LDNS::DNSSecZone(3) |
NAME¶
DNS::LDNS::DNSSecZone - Zone with dnssec data
SYNOPSIS¶
use DNS::LDNS ':all' my z = new DNS::LDNS::DNSSecZone( filename => '/path/to/myzone', origin => new DNS::LDNS::RData(LDNS_RDF_TYPE_DNAME, 'myzone'), #optional ttl => 3600, #optional class => LDNS_RR_CLASS_, #optional ) my z = new DNS::LDNS::DNSSecZone( file => \*FILE, origin => ..., ttl => ..., class => ... ) my z = new DNS::LDNS::DNSSecZone rr = z->soa rbtree = z->names rrsets = z->find_rrset z->add_rr(rr) z->create_from_zone(zone) z->add_empty_nonterminals z->sign(keylist, policy) z->sign_nsec3(keylist, policy, algorithm, flags, iterations, salt) z->create_nsecs z->create_nsec3s(algorithm, flags, iterations, salt) z->create_rrsigs(key_list, policy, flags)
TODO¶
z->to_string
SEE ALSO¶
AUTHOR¶
Erik Pihl Ostlyngen, <erik.ostlyngen@uninett.no>
COPYRIGHT AND LICENSE¶
Copyright (C) 2013 by UNINETT Norid AS
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.2 or, at your option, any later version of Perl 5 you may have available.
2016-12-20 | perl v5.26.3 |