ca-bundle.pl

来自「mod_ssl-2.8.31-1.3.41.tar.gz 好用的ssl工具」· PL 代码 · 共 50 行

PL
50
字号
####  ca-bundle.pl -- Regenerate ca-bundle.crt from the Mozilla certdata.txt###   configurationmy $cvsroot  = ':pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot';my $certdata = 'mozilla/security/nss/lib/ckfw/builtins/certdata.txt';my $date = `date`;$date =~ s/\n$//s;print <<EOH;####  ca-bundle.crt -- Bundle of CA Root Certificates####  This is a bundle of X.509 certificates of public Certificate##  Authorities (CA). These were automatically extracted from Mozilla's##  root CA list (the file `certdata.txt'). It contains the certificates##  in both plain text and PEM format and therefore can be directly used##  with an Apache/mod_ssl webserver for SSL client authentication. Just##  configure this file as the SSLCACertificateFile.####  (SKIPME)####  Last Modified: $dateEOHopen(IN, "cvs -d $cvsroot co -p $certdata|")    || die "could not check out certdata.txt";my $incert = 0;while (<IN>) {    if (/^CKA_VALUE MULTILINE_OCTAL/) {        $incert = 1;        open(OUT, "|openssl x509 -text -inform DER -fingerprint")            || die "could not pipe to openssl x509";    } elsif (/^END/ && $incert) {        close(OUT);        $incert = 0;        print "\n\n";    } elsif ($incert) {        my @bs = split(/\\/);        foreach my $b (@bs) {            chomp $b;            printf(OUT "%c", oct($b)) unless $b eq '';        }    } elsif (/^CVS_ID.*Revision: ([^ ]*).*/) {        print "##  Source: \"certdata.txt\" CVS revision $1\n##\n\n";    }}close(IN);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?