move it to function
This commit is contained in:
parent
7d4715c9f5
commit
6ea7b77093
15
gen_tlsa.pl
15
gen_tlsa.pl
@ -18,11 +18,16 @@ sub usage {
|
||||
|
||||
usage() if (scalar(@ARGV) != 2);
|
||||
|
||||
gen_tlsa(@ARGV);
|
||||
|
||||
sub gen_tlsa {
|
||||
my ($label, $cert_file) = @_;
|
||||
my $state = WAIT_BEGIN;
|
||||
my $pem = '';
|
||||
my ($fh, $line);
|
||||
|
||||
open(my $fh, '<', $ARGV[1]);
|
||||
while(my $line = <$fh>) {
|
||||
open($fh, '<', $cert_file);
|
||||
while($line = <$fh>) {
|
||||
if ($state == WAIT_BEGIN) {
|
||||
if ($line=~/^-----BEGIN CERTIFICATE-----/) {
|
||||
$state = WAIT_END;
|
||||
@ -36,6 +41,6 @@ while(my $line = <$fh>) {
|
||||
}
|
||||
}
|
||||
close($fh);
|
||||
say $ARGV[0], ' IN TLSA 1 0 1 ', Digest::SHA::sha256_hex(decode_base64($pem));
|
||||
|
||||
#say $pem;
|
||||
say($label, ' IN TLSA 1 0 1 ',
|
||||
Digest::SHA::sha256_hex(decode_base64($pem)));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user