Overview
| Comment: | Updated to create a PKCS#7 bundle |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | piv |
| Files: | files | file ages | folders |
| SHA1: |
0a6ef43f4cb80a5d4c3b77a6c0a47ee8 |
| User & Date: | rkeene on 2013-08-03 02:20:39 |
| Other Links: | branch diff | manifest | tags |
Context
|
2015-07-15
| ||
| 20:10 | Merged divergent PIV branches Closed-Leaf check-in: 466549fe92 user: rkeene tags: piv | |
|
2013-08-03
| ||
| 02:20 | Updated to create a PKCS#7 bundle check-in: 0a6ef43f4c user: rkeene tags: piv | |
| 02:19 | Added support for outputting NetScaler cert configuration check-in: c46c2cd501 user: rkeene tags: piv | |
Changes
Modified build/certs/federal/Makefile from [c15ccd8551] to [8dcfe9c94d].
| ︙ | ︙ | |||
34 35 36 37 38 39 40 41 | idx=$$[$$idx + 1]; \ fi; \ done USG-federal-bundle.pem: certs ../build-tree.sh > "$@" clean: | > > > | | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | idx=$$[$$idx + 1]; \ fi; \ done USG-federal-bundle.pem: certs ../build-tree.sh > "$@" USG-federal-bundle.pk7: USG-federal-bundle.pem openssl crl2pkcs7 -outform der -nocrl -certfile USG-federal-bundle.pem > USG-federal-bundle.pk7 clean: rm -f cert-*.crt USG-federal-bundle.pem USG-federal-bundle.pk7 rm -f CPCA_TRCA.crt.new root_sia.p7b.new caCertsIssuedTofcpca.p7c.new CommonPolicy.crt.new distclean: clean rm -f CPCA_TRCA.crt root_sia.p7b caCertsIssuedTofcpca.p7c CommonPolicy.crt .PHONY: all certs |