Skip to content

Commit

Permalink
Add column headers to TSV files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Stradling committed May 8, 2017
1 parent 6ef0451 commit 1498c78
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion make_caroots.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ function make_caroots_pem {
}

function make_caroots_tsv {
find crt/common crt/$1 -iname *.crt -printf %f -exec openssl x509 -nameopt utf8 -subject -noout -in '{}' ';' 2>/dev/null | sed "s/\.crtsubject= /\t/g" | sort > tsv/$1-ca-roots.tsv
echo "SHA-256(Certificate) CA Name" > tsv/$1-ca-roots.tsv
find crt/common crt/$1 -iname *.crt -printf %f -exec openssl x509 -nameopt utf8 -subject -noout -in '{}' ';' 2>/dev/null | sed "s/\.crtsubject= /\t/g" | sort >> tsv/$1-ca-roots.tsv
}

make_caroots_pem dodo
Expand Down
1 change: 1 addition & 0 deletions tsv/dodo-ca-roots.tsv
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
SHA-256(Certificate) CA Name
001686CD181F83A1B1217D305B365C41E3470A78A1D37B134A98CD547B92DAB3 C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority
007E452FD5CF838946696DFE37A2DB2EF3991436D27BCBAB45922053C15A87A8 C=SI, O=POSTA, OU=POSTArCA
00AB444ABD6BDBA33DA8DE569AC4ECDE326D1BE1A61442D5EEC3975A0C243F04 C=ES, O=Agencia Notarial de Certificacion S.L. Unipersonal - CIF B83395988, CN=ANCERT Certificados Notariales
Expand Down
1 change: 1 addition & 0 deletions tsv/mammoth-ca-roots.tsv
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
SHA-256(Certificate) CA Name
001686CD181F83A1B1217D305B365C41E3470A78A1D37B134A98CD547B92DAB3 C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority
007E452FD5CF838946696DFE37A2DB2EF3991436D27BCBAB45922053C15A87A8 C=SI, O=POSTA, OU=POSTArCA
00AB444ABD6BDBA33DA8DE569AC4ECDE326D1BE1A61442D5EEC3975A0C243F04 C=ES, O=Agencia Notarial de Certificacion S.L. Unipersonal - CIF B83395988, CN=ANCERT Certificados Notariales
Expand Down
1 change: 1 addition & 0 deletions tsv/sabre-ca-roots.tsv
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
SHA-256(Certificate) CA Name
001686CD181F83A1B1217D305B365C41E3470A78A1D37B134A98CD547B92DAB3 C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority
007E452FD5CF838946696DFE37A2DB2EF3991436D27BCBAB45922053C15A87A8 C=SI, O=POSTA, OU=POSTArCA
00AB444ABD6BDBA33DA8DE569AC4ECDE326D1BE1A61442D5EEC3975A0C243F04 C=ES, O=Agencia Notarial de Certificacion S.L. Unipersonal - CIF B83395988, CN=ANCERT Certificados Notariales
Expand Down

0 comments on commit 1498c78

Please sign in to comment.