1Net::DNS::RR::TLSA(3) User Contributed Perl DocumentationNet::DNS::RR::TLSA(3)
2
3
4
6 Net::DNS::RR::TLSA - DNS TLSA resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name TLSA usage selector matchingtype certificate');
11
13 The Transport Layer Security Authentication (TLSA) DNS resource record
14 is used to associate a TLS server certificate or public key with the
15 domain name where the record is found, forming a "TLSA certificate
16 association". The semantics of how the TLSA RR is interpreted are
17 described in RFC6698.
18
20 The available methods are those inherited from the base class augmented
21 by the type-specific methods defined in this package.
22
23 Use of undocumented package features or direct access to internal data
24 structures is discouraged and could result in program termination or
25 other unpredictable behaviour.
26
27 usage
28 $usage = $rr->usage;
29
30 8-bit integer value which specifies the provided association that will
31 be used to match the certificate presented in the TLS handshake.
32
33 selector
34 $selector = $rr->selector;
35
36 8-bit integer value which specifies which part of the TLS certificate
37 presented by the server will be matched against the association data.
38
39 matchingtype
40 $matchingtype = $rr->matchingtype;
41
42 8-bit integer value which specifies how the certificate association is
43 presented.
44
45 cert
46 $cert = $rr->cert;
47
48 Hexadecimal representation of the certificate data.
49
50 certbin
51 $certbin = $rr->certbin;
52
53 Binary representation of the certificate data.
54
56 Copyright (c)2012 Willem Toorop, NLnet Labs.
57
58 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
59
60 All rights reserved.
61
62 This program is free software; you may redistribute it and/or modify it
63 under the same terms as Perl itself.
64
66 perl, Net::DNS, Net::DNS::RR, RFC6698
67
68
69
70perl v5.16.3 2012-12-28 Net::DNS::RR::TLSA(3)