Changes In Branch piv Through [c46c2cd501] Excluding Merge-Ins
This is equivalent to a diff from 402217513a to c46c2cd501
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 | |
2013-02-07
| ||
23:29 | Added script to generate certificate bundles in heirarchy order check-in: 6a49836224 user: rkeene tags: piv | |
2013-01-15
| ||
14:20 | Updated to make "leakcheck" more tolerant of %p formats check-in: 33a93aab41 user: rkeene tags: trunk | |
14:12 | Merged in trunk check-in: 8f27214611 user: rkeene tags: piv | |
14:11 | Updated debugging messages to be written in a single fprintf() call in an attempt to avoid having them intermingled when written from multiple threads check-in: 402217513a user: rkeene tags: trunk | |
2012-07-30
| ||
16:02 | Updated email address in CACKey for OSX Build Script check-in: 003e5de0f0 user: kvanals tags: trunk | |
Added build/builtin-certs-update version [6d290a2094].
|
Modified build/cackey_osx_build/Template_pmbuild/index.xml.in from [e98adc8605] to [7d02eca4b2].
︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - + - + | {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural \f0\fs26 \cf0 Release information:\ pkg: CACKey\ author: US Army Corps of Engineers\ |
︙ |
Modified build/cackey_osx_build/build_osx.sh from [7f1f41f856] to [c66d1aadeb].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | #!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne |
︙ |
Modified build/certs-to-c from [c49efbf6f1] to [1cd87f2aca].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | - + - + - - - - + + + | #! /bin/bash for file in "$@"; do rm -f tmpfile.x509 if ! openssl x509 -in "${file}" -inform pem -noout -checkend 0 >/dev/null 2>/dev/null; then echo "warning: Skipping \"${file}\" as it is invalid or expired." >&2 continue fi openssl x509 -in "${file}" -out tmpfile.x509 -inform pem -outform der pubkeylen="$(openssl x509 -in tmpfile.x509 -inform der -text -noout | grep 'RSA Public Key:' | sed 's@^.*(\([0-9][0-9]*\) bit).*$@\1@')" |
Added build/certs/build-tree.sh version [d858228260].