]> git.pld-linux.org Git - packages/djbdns.git/blobdiff - add-sshfp.pl
- revert, tinydns already depends on perl, sigh
[packages/djbdns.git] / add-sshfp.pl
diff --git a/add-sshfp.pl b/add-sshfp.pl
new file mode 100644 (file)
index 0000000..07ba5a8
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/perl
+
+use strict;
+
+open IN, "ssh-keygen -f /etc/ssh/ssh_host_rsa_key.pub -r $ARGV[0] |";
+my $FP = <IN>;
+close IN;
+chop $FP;
+my ($host, $in, $sshfp, $alg, $fptype, $fp) = split " ", $FP;
+my $out = sprintf("\\%03o\\%03o", $alg, $fptype);
+for (my $i = 0; $i < length($fp); $i += 2) {
+       $out .= sprintf("\\%03o", hex substr($fp, $i, 2));
+}
+printf(":%s:44:%s:\n", $host, $out);
This page took 0.529173 seconds and 4 git commands to generate.