Check-in [ff2eb37b0a]
Overview
Comment:Started work on updating DOD certs
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | update-dod-certs
Files: files | file ages | folders
SHA1:ff2eb37b0aa6432a32d17e9587c895ef99e1eaae
User & Date: rkeene on 2017-12-27 17:59:32
Other Links: manifest | tags
Context
2017-12-27
17:59
Started work on updating DOD certs Leaf check-in: ff2eb37b0a user: rkeene tags: update-dod-certs
2017-07-17
13:56
Updated to treat returning a zero-length signed message as an error check-in: 0c7c510048 user: rkeene tags: trunk
Changes

Modified build/certs/dod/Makefile from [dcbc2db73e] to [7fd88860f5].



1
2
3

4
5
6

7
8
9
10
11
12
13
14


all: cert-0.crt

rel3_dodroot_2048.cac:

	wget -O Certificates_PKCS7_v4.1_DoD.zip http://iasecontent.disa.mil/pki-pke/Certificates_PKCS7_v4.1_DoD.zip
	unzip Certificates_PKCS7_v4.1_DoD.zip Certificates_PKCS7_v4.1_DoD/Certificates_PKCS7_v4.1_DoD.der.p7b
	mv Certificates_PKCS7_v4.1_DoD/Certificates_PKCS7_v4.1_DoD.der.p7b "$@"

	rm -rf Certificates_PKCS7_v4.1_DoD Certificates_PKCS7_v4.1_DoD.zip

cert-%.crt: rel3_dodroot_2048.cac
	idx=0; \
	( \
		openssl pkcs7 -in rel3_dodroot_2048.cac -inform DER -print_certs -text; \
	) | while IFS='' read -r line; do \
		if [ -z "$${line}" ]; then \
>
>



>
|
<
|
>
|







1
2
3
4
5
6
7

8
9
10
11
12
13
14
15
16
17
DOD_CERTS_VERSION = 5.1

all: cert-0.crt

rel3_dodroot_2048.cac:
	rm -f __TMP__.zip
	wget -O __TMP__.zip http://iasecontent.disa.mil/pki-pke/Certificates_PKCS7_v$(DOD_CERTS_VERSION)_DoD.zip

	unzip __TMP__.zip '*/*.der.p7b'
	mv */*.der.p7b "$@"
	rm -rf Certificates_P* __TMP__.zip

cert-%.crt: rel3_dodroot_2048.cac
	idx=0; \
	( \
		openssl pkcs7 -in rel3_dodroot_2048.cac -inform DER -print_certs -text; \
	) | while IFS='' read -r line; do \
		if [ -z "$${line}" ]; then \

Modified cackey_builtin_certs.h from [cffe24d77b] to [98af3e86bd].

cannot compute difference between binary files