1Net::DNS::SEC(3)      User Contributed Perl Documentation     Net::DNS::SEC(3)
2
3
4

NAME

6       Net::DNS::SEC - DNSSEC extensions to Net::DNS
7

SYNOPSIS

9           use Net::DNS::SEC;
10

DESCRIPTION

12       The Net::DNS::SEC suite provides additional packages required to
13       support DNSSEC as described in RFC4033, RFC4034, RFC4035 and subsequent
14       related documents.
15
16       It also provides support for SIG0 which is useful for dynamic updates
17       using key-pairs.
18
19       RSA, DSA and elliptic curve crypto algorithms are supported.
20
21       Net::DNS::SEC is installed as an extension to an existing Net::DNS
22       installation.
23
24       The extended features are made available by replacing Net::DNS by
25       Net::DNS::SEC in the use declaration.
26

UTILITY FUNCTIONS

28   algorithm
29           $mnemonic = algorithm( 5 );
30           $numeric  = algorithm( 'RSA-SHA1' );
31           print "algorithm mnemonic\t", $mnemonic, "\n";
32           print "algorithm number:\t",  $numeric,  "\n";
33
34       algorithm() provides conversions between an algorithm code number and
35       the corresponding mnemonic.
36
37   digtype
38           $mnemonic = digtype( 2 );
39           $numeric  = digtype( 'SHA-256' );
40           print "digest type mnemonic\t", $mnemonic, "\n";
41           print "digest type number:\t",  $numeric,  "\n";
42
43       digtype() provides conversions between a digest type number and the
44       corresponding mnemonic.
45
46   key_difference
47           @result = key_difference( \@a, \@b );
48
49       Fills @result with all keys in array @a that are not in array @b.
50
52       Copyright (c)2014-2018 Dick Franks
53
54       Copyright (c)2001-2005 RIPE NCC. Author Olaf M. Kolkman
55
56       All Rights Reserved
57

LICENSE

59       Permission to use, copy, modify, and distribute this software and its
60       documentation for any purpose and without fee is hereby granted,
61       provided that the above copyright notice appear in all copies and that
62       both that copyright notice and this permission notice appear in
63       supporting documentation, and that the name of the author not be used
64       in advertising or publicity pertaining to distribution of the software
65       without specific prior written permission.
66
67       THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
68       OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
69       MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
70       IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
71       CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
72       TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
73       SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
74

SEE ALSO

76       perl, Net::DNS, RFC4033, RFC4034, RFC4035, OpenSSL
77       <http://www.openssl.org/docs>
78
79
80
81perl v5.28.0                      2018-06-04                  Net::DNS::SEC(3)
Impressum