Overview
Comment: | Fixed issue with federal certificate fetching |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
832276f583d704fe7dda832faf4e430c |
User & Date: | rkeene on 2015-03-22 06:23:43 |
Other Links: | manifest | tags |
Context
2015-03-22
| ||
06:24 | Updated to not update built-in certs file if one of the makes fails check-in: 11c30d03cf user: rkeene tags: trunk | |
06:23 | Fixed issue with federal certificate fetching check-in: 832276f583 user: rkeene tags: trunk | |
2015-03-20
| ||
17:32 | CACKey 0.7.1 check-in: 7c43a082a7 user: rkeene tags: 0.7.1, trunk | |
Changes
Modified build/certs/federal/Makefile from [7088ba1ceb] to [4c5635d94a].
1 2 3 4 5 | all: cert-1.crt CPCA_TRCA.crt CommonPolicy.crt grep -l 'Issuer: C=US, O=U.S. Government, OU=FPKI, CN=Federal Bridge CA' *.crt | xargs rm -f grep -l 'Subject: C=US, O=U.S. Government, OU=FPKI, CN=Federal Common Policy CA' *.crt | xargs grep -H 'Issuer:' | grep -v 'Issuer: C=us, O=U.S. Government, OU=FBCA, CN=Common Policy' | cut -f 1 -d : | xargs rm -f CPCA_TRCA.crt: | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | all: cert-1.crt CPCA_TRCA.crt CommonPolicy.crt grep -l 'Issuer: C=US, O=U.S. Government, OU=FPKI, CN=Federal Bridge CA' *.crt | xargs rm -f grep -l 'Subject: C=US, O=U.S. Government, OU=FPKI, CN=Federal Common Policy CA' *.crt | xargs grep -H 'Issuer:' | grep -v 'Issuer: C=us, O=U.S. Government, OU=FBCA, CN=Common Policy' | cut -f 1 -d : | xargs rm -f CPCA_TRCA.crt: wget -O - --no-check-certificate https://pki.treas.gov/CPCA_TRCA.cer | openssl x509 -text -inform der > "$@.new" mv "$@.new" "$@" caCertsIssuedTofcpca.p7c: wget -O "$@.new" http://http.fpki.gov/fcpca/caCertsIssuedTofcpca.p7c mv "$@.new" "$@" root_sia.p7b: |
︙ | ︙ |