1Net::DNS::RR::SSHFP(3)User Contributed Perl DocumentationNet::DNS::RR::SSHFP(3)
2
3
4
6 Net::DNS::RR::SSHFP - DNS SSHFP resource record
7
9 "use Net::DNS::RR";
10
12 Class for Delegation signer (SSHFP) resource records.
13
15 In addition to the regular methods
16
17 algorithm
18 print "algoritm" = ", $rr->algorithm, "\n";
19
20 Returns the RR's algorithm field in decimal representation
21
22 1 = RSA
23 2 = DSS
24
25 fingerprint
26 print "fingerprint" = ", $rr->fingerprint, "\n";
27
28 Returns the SHA1 fingerprint over the label and key in hexadecimal
29 representation.
30
31 fpbin
32 $fpbin = $rr->fpbin;
33
34 Returns the fingerprint as binary material.
35
36 fptype
37 print "fingerprint type" . " = " . $rr->fptype ."\n";
38
39 Returns the fingerprint type of the SSHFP RR.
40
41 babble
42 print $rr->babble;
43
44 If Digest::BubbleBabble is available on the sytem this method returns
45 the 'BabbleBubble' representation of the fingerprint. The
46 'BabbleBubble' string may be handy for telephone confirmation.
47
48 The 'BabbleBubble' string returned as a comment behind the RDATA when
49 the string method is called.
50
51 The method returns an empty string if Digest::BubbleBable is not
52 installed.
53
56 Jakob Schlyter for code review and supplying patches.
57
59 Copyright (c) 2004 RIPE NCC, Olaf Kolkman.
60
61 "All rights reserved, This program is free software; you may
62 redistribute it and/or modify it under the same terms as Perl itself.
63
65 perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet,
66 Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, draft-ietf-dnssext-
67 delegation-signer
68
69
70
71perl v5.12.0 2009-01-26 Net::DNS::RR::SSHFP(3)