1Net::DNS::RR::SMIMEA(3)User Contributed Perl DocumentatioNnet::DNS::RR::SMIMEA(3)
2
3
4

NAME

6       Net::DNS::RR::SMIMEA - DNS SMIMEA resource record
7

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR('name SMIMEA usage selector matchingtype certificate');
11

DESCRIPTION

13       The SMIMEA DNS resource record (RR) is used to associate an end entity
14       certificate or public key with the associated email address, thus
15       forming a "SMIMEA certificate association".  The semantics of how the
16       SMIMEA RR is interpreted are described in RFC6698.
17

METHODS

19       The available methods are those inherited from the base class augmented
20       by the type-specific methods defined in this package.
21
22       Use of undocumented package features or direct access to internal data
23       structures is discouraged and could result in program termination or
24       other unpredictable behaviour.
25
26   usage
27           $usage = $rr->usage;
28           $rr->usage( $usage );
29
30       8-bit integer value which specifies the provided association that will
31       be used to match the certificate.
32
33   selector
34           $selector = $rr->selector;
35           $rr->selector( $selector );
36
37       8-bit integer value which specifies which part of the certificate
38       presented by the server will be matched against the association data.
39
40   matchingtype
41           $matchingtype = $rr->matchingtype;
42           $rr->matchingtype( $matchingtype );
43
44       8-bit integer value which specifies how the certificate association is
45       presented.
46
47   certificate
48   cert
49           $cert = $rr->cert;
50           $rr->cert( $cert );
51
52       Hexadecimal representation of the certificate data.
53
54   certbin
55           $certbin = $rr->certbin;
56           $rr->certbin( $certbin );
57
58       Binary representation of the certificate data.
59
60   babble
61           print $rr->babble;
62
63       The babble() method returns the 'BubbleBabble' representation of the
64       digest if the Digest::BubbleBabble package is available, otherwise an
65       empty string is returned.
66
67       BubbleBabble represents a message digest as a string of plausible
68       words, to make the digest easier to verify.  The "words" are not
69       necessarily real words, but they look more like words than a string of
70       hex characters.
71
72       The 'BubbleBabble' string is appended as a comment when the string
73       method is called.
74
76       Copyright (c)2016 Dick Franks.
77
78       All rights reserved.
79
80       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
81

LICENSE

83       Permission to use, copy, modify, and distribute this software and its
84       documentation for any purpose and without fee is hereby granted,
85       provided that the above copyright notice appear in all copies and that
86       both that copyright notice and this permission notice appear in
87       supporting documentation, and that the name of the author not be used
88       in advertising or publicity pertaining to distribution of the software
89       without specific prior written permission.
90
91       THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
92       OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
93       MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
94       IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
95       CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
96       TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
97       SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
98

SEE ALSO

100       perl, Net::DNS, Net::DNS::RR, RFC8162, RFC6698
101
102
103
104perl v5.26.3                      2018-02-09           Net::DNS::RR::SMIMEA(3)
Impressum