diff options
Diffstat (limited to 'scripts/Old/make-hashes.pl')
-rw-r--r-- | scripts/Old/make-hashes.pl | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/scripts/Old/make-hashes.pl b/scripts/Old/make-hashes.pl new file mode 100644 index 00000000..4b58a9d0 --- /dev/null +++ b/scripts/Old/make-hashes.pl @@ -0,0 +1,42 @@ +# -*- Perl -*- +# $Id$ + +use strict; + +my $openssl = "/u/sra/isc/route-pki/subvert-rpki.hactrn.net/openssl/openssl/apps/openssl"; +my $dir = "hashed"; + +my @cmds; +my %hashes; + +exit unless (@ARGV); + +open(F, "-|", "find", @ARGV, qw{-type f ( -name *.cer -o -name *.crl )}) + or die("Couldn't run find: $!\n"); + +@ARGV = (); + +while (<F>) { + chomp; + my $f = $_; + my $type = /\.cer$/ ? "x509" : "crl"; + $_ = "$dir/$f"; + s=/[^/]+$==; + my $d = $_; + my $h = `$openssl $type -inform DER -in $f -noout -hash`; + chomp($h); + $h .= "."; + $h .= "r" if ($type eq "crl"); + $h .= 0 + $hashes{$d}{$h}++; + push(@cmds, "$openssl $type -inform DER -outform PEM -out $d/$h -in $f\n"); +} + +close(F); + +print("rm -rf $dir\n"); + +print("test -d $_ || mkdir -p $_\n") + foreach (sort(keys(%hashes))); + +print($_) + foreach (@cmds); |