Comment: | Merged in trunk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | require-login-if-needed |
Files: | files | file ages | folders |
SHA1: |
6938f7a82c23de8466800def37c72892 |
User & Date: | rkeene on 2015-05-04 16:02:33 |
Other Links: | branch diff | manifest | tags |
2015-07-15
| ||
20:10 | Merged in trunk Leaf check-in: 38771da1e8 user: rkeene tags: require-login-if-needed | |
2015-05-04
| ||
16:02 | Merged in trunk check-in: 6938f7a82c user: rkeene tags: require-login-if-needed | |
2015-03-22
| ||
06:25 | Updated with latest set of DoD and Federal certs check-in: 133c2dbd45 user: rkeene tags: trunk | |
2012-07-24
| ||
15:55 | Added basic stub for adding support for checking if LOGIN_REQUIRED is needed check-in: 6db637b204 user: rkeene tags: require-login-if-needed | |
Added .fossil-settings/ignore-glob version [0b3e38b0b6].
> > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | Makefile aclocal.m4 cackey.o cackey_g.o config.guess config.h config.h.in config.log config.status config.sub configure install-sh libcackey_g.so libcackey.so libcackey.syms build/certs test |
Modified asn1-x509.c from [e21185aa9d] to [f9aa197383].
︙ | ︙ | |||
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | } static int asn1_x509_read_object(unsigned char *buf, size_t buflen, struct x509_object *outbuf) { int read_ret; read_ret = asn1_x509_read_asn1_object(buf, buflen, &outbuf->wholething, NULL); if (read_ret != 0) { return(-1); } read_ret = asn1_x509_read_asn1_object(outbuf->wholething.contents, outbuf->wholething.size, &outbuf->certificate, NULL); if (read_ret != 0) { return(-1); } read_ret = asn1_x509_read_asn1_object(outbuf->certificate.contents, outbuf->certificate.size, &outbuf->version, &outbuf->serial_number, &outbuf->signature_algo, &outbuf->issuer, &outbuf->validity, &outbuf->subject, &outbuf->pubkeyinfo, NULL); if (read_ret != 0) { return(-1); } read_ret = asn1_x509_read_asn1_object(outbuf->pubkeyinfo.contents, outbuf->pubkeyinfo.size, &outbuf->pubkey_algoid, &outbuf->pubkey, NULL); if (read_ret != 0) { return(-1); } return(0); } ssize_t x509_to_issuer(void *x509_der_buf, size_t x509_der_buf_len, void **outbuf) { | > > > > > > > > | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | } static int asn1_x509_read_object(unsigned char *buf, size_t buflen, struct x509_object *outbuf) { int read_ret; read_ret = asn1_x509_read_asn1_object(buf, buflen, &outbuf->wholething, NULL); if (read_ret != 0) { CACKEY_DEBUG_PRINTF("Failed at reading the contents from the wrapper") return(-1); } read_ret = asn1_x509_read_asn1_object(outbuf->wholething.contents, outbuf->wholething.size, &outbuf->certificate, NULL); if (read_ret != 0) { CACKEY_DEBUG_PRINTF("Failed at reading the certificate from the contents"); return(-1); } read_ret = asn1_x509_read_asn1_object(outbuf->certificate.contents, outbuf->certificate.size, &outbuf->version, &outbuf->serial_number, &outbuf->signature_algo, &outbuf->issuer, &outbuf->validity, &outbuf->subject, &outbuf->pubkeyinfo, NULL); if (read_ret != 0) { CACKEY_DEBUG_PRINTF("Failed at reading the certificate components from the certificate"); return(-1); } read_ret = asn1_x509_read_asn1_object(outbuf->pubkeyinfo.contents, outbuf->pubkeyinfo.size, &outbuf->pubkey_algoid, &outbuf->pubkey, NULL); if (read_ret != 0) { CACKEY_DEBUG_PRINTF("Failed at reading the public key from the certificate components"); return(-1); } return(0); } ssize_t x509_to_issuer(void *x509_der_buf, size_t x509_der_buf_len, void **outbuf) { |
︙ | ︙ | |||
190 191 192 193 194 195 196 197 198 199 200 201 202 203 | static ssize_t x509_to_serial(void *x509_der_buf, size_t x509_der_buf_len, void **outbuf) { struct x509_object x509; int read_ret; read_ret = asn1_x509_read_object(x509_der_buf, x509_der_buf_len, &x509); if (read_ret != 0) { return(-1); } if (outbuf) { *outbuf = x509.serial_number.asn1rep; } | > > > | 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | static ssize_t x509_to_serial(void *x509_der_buf, size_t x509_der_buf_len, void **outbuf) { struct x509_object x509; int read_ret; read_ret = asn1_x509_read_object(x509_der_buf, x509_der_buf_len, &x509); if (read_ret != 0) { CACKEY_DEBUG_PRINTF("Unable to read serial number from a %lu byte buffer", x509_der_buf_len); CACKEY_DEBUG_PRINTBUF("X.509 DER:", x509_der_buf, x509_der_buf_len); return(-1); } if (outbuf) { *outbuf = x509.serial_number.asn1rep; } |
︙ | ︙ |
Modified autogen.sh from [c540dfc874] to [daf2ac0fe1].
1 2 3 4 5 6 7 8 | #! /bin/sh rm -f aclocal.m4 ${MAKE:-make} -C aclocal autoconf; autoheader rm -rf autom4te.cache/ | > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! /bin/sh rm -f aclocal.m4 ${MAKE:-make} -C aclocal autoconf; autoheader rm -rf autom4te.cache/ for basefile in install-sh config.sub config.guess; do for path in /usr/share/automake-*; do file="${path}/${basefile}" if [ -f "${file}" ]; then cp "${file}" . chmod 755 "./${basefile}" break fi done done |
Added build/ask-pass/cackey-askpass version [5c6636f8ba].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 28 29 30 31 32 33 34 | #! /usr/bin/env bash ZENITY="$(which 'zenity' 2>/dev/null)" GDIALOG="$(which 'gdialog' 2>/dev/null)" ASKPASS="$(which 'ssh-askpass' 'x11-ssh-askpass' '/usr/libexec/x11-ssh-askpass' 2>/dev/null | head -n 1)" DIALOG="$(which 'dialog' 2>/dev/null)" XTERM="$(which 'xterm' 2>/dev/null)" if [ -x "${ZENITY}" ]; then # XXX: TODO: Zenity true fi if [ -x "${GDIALOG}" ]; then # XXX: TODO: Gdialog true fi if [ -x "${ASKPASS}" ]; then exec "${ASKPASS}" "$@" exit 1 fi if [ -x "${DIALOG}" -a -x "${XTERM}" ]; then # XXX: TODO: dialog true fi if [ -x "${XTERM}" ]; then # XXX: TODO: xterm true fi exit 1 |
Modified build/build.sh from [fc56094904] to [48fe009c68].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #! /bin/sh find . -type f -name '.*.sw?' | xargs rm -f find . -type f -name '.nfs*' | xargs rm -f if [ "${SNAPSHOT}" = "1" ]; then sed "s@\(AC_INIT([^)]*\))@\1.${VERS})@" configure.ac > configure.ac.new cat configure.ac.new > configure.ac rm -f configure.ac.new fi ./autogen.sh || exit 1 if [ ! -x configure ]; then exit 1 fi | > < < < < < < < < < < < < > | 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/sh find . -type f -name '.*.sw?' | xargs rm -f find . -type f -name '.nfs*' | xargs rm -f find . -type f -name '*~' | xargs rm -f if [ "${SNAPSHOT}" = "1" ]; then sed "s@\(AC_INIT([^)]*\))@\1.${VERS})@" configure.ac > configure.ac.new cat configure.ac.new > configure.ac rm -f configure.ac.new fi ./autogen.sh || exit 1 if [ ! -x configure ]; then exit 1 fi if [ "${SNAPSHOT}" != "1" ]; then mv build build_delete mkdir build || exit 1 cp -rp build_delete/cackey_win32_build build/ cp -rp build_delete/cackey_win64_build build/ fi exit 0 |
Added build/builtin-certs-update version [5324a34988].
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #! /bin/bash set -e ourdir="$(dirname "$(which "$0")")" cd "${outdir}" || exit 1 make -C certs/dod distclean all make -C certs/federal distclean all ./certs-to-c certs/*/*.crt > ../cackey_builtin_certs.h |
Modified build/cackey_osx_build/Template_pmbuild/index.xml.in from [9543623cb4] to [6d6f116270].
︙ | ︙ | |||
30 31 32 33 34 35 36 | {\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\ | | | | | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | {\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\ Mac build contact: Kenneth Van Alstyne <kenny@coreadaptive.com>\ Core Adaptive, LLC\ contact: Roy Keene <rkeene@coreadaptive.com>\ ------------------------------------------------\ \ The PKCS11.tokend connector module included in this package is licensed under\ the APSL. See: http://devel.kvanals.org/PKCS11_Tokend\ \ The following files in the source directory are the intellectual property of the\ Free Software Foundation and are licensed under the terms of the GNU General\ Public License (GPL):\ config.guess, config.sub, install-sh\ \ The files in the source directory and the "leakcheck" directory are the intellectual\ property of the United States Government. It is not clear which, if any,\ license is made on them. In addition, as of 07-JUN-2010 they have not\ been cleared for public release.\ \ The files in the "pkcs11/" directory are licensed under the terms of the\ following licenses:\ mypkcs11.h : GNU General Public License 2.1.\ pkcs11.h : GNU General Public License 2.1.\ pkcs11f.h : GNU General Public License 2.1.\ pkcs11n.h : Mozilla Public License or GNU General Public License\ |
︙ | ︙ | |||
75 76 77 78 79 80 81 | To use, be sure to import the certificate authorities into Keychain Access.\ \ A debug version, /Library/CACKey/libcackey_g.dylib is provided if debug output is necessary.}]]> </resource> </locale> </resources> <requirements> | < < < | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | To use, be sure to import the certificate authorities into Keychain Access.\ \ A debug version, /Library/CACKey/libcackey_g.dylib is provided if debug output is necessary.}]]> </resource> </locale> </resources> <requirements> <requirement id="tosv" operator="ge" value="'@@CUROSXVER@@'"> <message>This CACKey release requires Mac OS X @@CUROSXVER@@.</message> </requirement> </requirements> <flags/> <item type="file">01libcackey.xml</item> <item type="file">02libcackey.xml</item> |
︙ | ︙ |
Modified build/cackey_osx_build/build_osx.sh from [b98bcd81f7] to [353b3acaa2].
1 2 3 | #!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne | | | | < | > > > > > > | 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 28 29 30 31 32 33 | #!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne # kenny@coreadaptive.com CACKEY_VERSION=`cat configure.ac | grep AC_INIT | cut -d " " -f 2 | sed 's_)__'` # Check to see if we're building on Mac OS X 10.7 "Lion" or newer if [ "`uname -r | cut -d . -f 1`" -ge "11" ]; then LIONBUILD=1 fi # Usage function usage() { echo "Usage: build_osx.sh <target>" echo Where target is one of: echo " leopard - (Builds Universal 10.5 Library for PPCG4/i386)" echo " sltoyos - (Builds Universal 10.6/10.7/10.8/10.9/10.10 Library for i386/x86_64)" echo " all - (Builds for all supported targets)" echo " clean - (Cleans up)" echo "Run from CACKey Build Root." echo "" echo "NOTE: Leopard build requires legacy XCode 3 components in" echo " /Developer because of PowerPC support." echo " All builds require gnutar, automake, and autoconf." echo " If your newer release of XCode does not include these" echo " components, I recommend installing them from MacPorts." exit $? } # Clean up function clean() { rm -f build/cackey_osx_build/cackey.dylib rm -rf build/cackey_osx_build/PKCS11.tokend |
︙ | ︙ | |||
38 39 40 41 42 43 44 | LIBTOOLDIR=/Developer/usr/share/libtool else LIBTOOLDIR=/Developer/usr/share/libtool/config fi if [ ! -d macbuild ]; then mkdir macbuild mkdir macbuild/Leopard | | < | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | LIBTOOLDIR=/Developer/usr/share/libtool else LIBTOOLDIR=/Developer/usr/share/libtool/config fi if [ ! -d macbuild ]; then mkdir macbuild mkdir macbuild/Leopard mkdir macbuild/Sltoyos mkdir macbuild/pkg fi if [ ! -f config.guess ]; then cp ${LIBTOOLDIR}/config.guess . fi if [ ! -f config.sub ]; then cp ${LIBTOOLDIR}/config.sub . |
︙ | ︙ | |||
64 65 66 67 68 69 70 | LIBRARY=/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/PCSC.framework/PCSC LIB="" ARCHLIST="" DLIB="" DARCHLIST="" OSX=Leopard PKTARGETOS=3 | < | | | < < < < < < < < < < < < < < < < < < < < < < | < < < | | | | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | LIBRARY=/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/PCSC.framework/PCSC LIB="" ARCHLIST="" DLIB="" DARCHLIST="" OSX=Leopard PKTARGETOS=3 CUROSXVER=10.5 for HOST in powerpc-apple-darwin9 i386-apple-darwin9; do genbuild done libbuild pkgbuild } # Build function for Snow Leopard/Lion/Mountain Lion/Mavericks/Yosemite sltoyos() { makedir HEADERS=/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/PCSC.framework/Versions/A/Headers/ LIBRARY=/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/PCSC.framework/PCSC LIB="" ARCHLIST="" DLIB="" DARCHLIST="" OSX=Sltoyos PKTARGETOS=3 CUROSXVER=10.6 for HOST in i386-apple-darwin10 x86_64-apple-darwin10; do genbuild done libbuild pkgbuild } # Generic build function genbuild() { make distclean ARCH=`echo ${HOST} | cut -d "-" -f 1` if [ ${ARCH} == "powerpc" ]; then ARCH="ppc -mcpu=G4" fi if [ "${LIONBUILD}" = 1 ]; then if [ "${ARCH}" == "ppc -mcpu=G4" ]; then CC=/Developer/usr/bin/powerpc-apple-darwin10-gcc-4.2.1 CXX=/Developer/usr/bin/powerpc-apple-darwin10-g++-4.2.1 CFLAGS="-m32 -mcpu=G4 -I/Developer/usr/lib/gcc/powerpc-apple-darwin10/4.2.1/include -isysroot /Developer/SDKs/MacOSX10.5.sdk" CPPFLAGS="-D_LIBC_LIMITS_H_" ./configure --with-pcsc-headers=${HEADERS} --with-pcsc-libs=${LIBRARY} --host=${HOST} --enable-dod-certs-on-hw-slots else CFLAGS="-arch ${ARCH}" ./configure --with-pcsc-headers=${HEADERS} --with-pcsc-libs=${LIBRARY} --host=${HOST} --enable-dod-certs-on-hw-slots fi else CFLAGS="-arch ${ARCH}" ./configure --with-pcsc-headers=${HEADERS} --with-pcsc-libs=${LIBRARY} --host=${HOST} --enable-dod-certs-on-hw-slots fi make cp libcackey.dylib macbuild/${OSX}/libcackey.dylib.`echo ${ARCH} | cut -d ' ' -f 1` cp libcackey_g.dylib macbuild/${OSX}/libcackey_g.dylib.`echo ${ARCH} | cut -d ' ' -f 1` } # Library build function |
︙ | ︙ | |||
167 168 169 170 171 172 173 | rm -rf build/cackey_osx_build/PKCS11.tokend if [ "${LIONBUILD}" = 1 ]; then TAR=gnutar else TAR=tar fi if [ "${OSX}" = "Leopard" ]; then | | | < | | | 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | rm -rf build/cackey_osx_build/PKCS11.tokend if [ "${LIONBUILD}" = 1 ]; then TAR=gnutar else TAR=tar fi if [ "${OSX}" = "Leopard" ]; then curl http://devel.kvanals.org/PKCS11_Tokend/PKCS11_tokend-latest.tar.gz | gzip -d -c | ${TAR} --strip-components 3 --wildcards -x -f - "PKCS11_tokend-*/prebuilt/leopard/PKCS11.tokend" mv PKCS11.tokend build/cackey_osx_build/PKCS11.tokend else curl http://devel.kvanals.org/PKCS11_Tokend/PKCS11_tokend-latest.tar.gz | gzip -d -c | ${TAR} --strip-components 3 --wildcards -x -f - "PKCS11_tokend-*/prebuilt/snowleopard/PKCS11.tokend" mv PKCS11.tokend build/cackey_osx_build/PKCS11.tokend fi for PMDOC in build/cackey_osx_build/Template_pmbuild/*.in; do PMDOC="`echo "${PMDOC}" | sed 's|l.in|l|g' | sed 's|build/cackey_osx_build/Template_pmbuild/||g'`" UUID="`python -c 'import uuid; print uuid.uuid1()' | dd conv=ucase 2>/dev/null`" mkdir -p build/cackey_osx_build/${OSX}_pmbuild.pmdoc sed "s|@@BUILDROOTDIR@@|$(pwd)|g" build/cackey_osx_build/Template_pmbuild/${PMDOC}.in > build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} sed "s|@@OSXVERSION@@|${OSX}|g" build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} > build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC}.1 sed "s|@@UUID@@|${UUID}|g" build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC}.1 > build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} sed "s|@@TARGETOS@@|${PKTARGETOS}|g" build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} > build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC}.1 sed "s|@@CUROSXVER@@|${CUROSXVER}|g" build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} > build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC}.1 sed "s|@@LIBCACKEYG@@|${LIBCACKEYG}|g" build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC}.1 > build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} cp build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC}.1 mv build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC}.1 build/cackey_osx_build/${OSX}_pmbuild.pmdoc/${PMDOC} done EXT=pkg if [ ${OSX} == "Sltoyos" ]; then cat build/cackey_osx_build/${OSX}_pmbuild.pmdoc/index.xml | sed 's|for Mac OS X Sltoyos|for Mac OS X SLtoYos|g' > build/cackey_osx_build/${OSX}_pmbuild.pmdoc/index.xml.new mv build/cackey_osx_build/${OSX}_pmbuild.pmdoc/index.xml.new build/cackey_osx_build/${OSX}_pmbuild.pmdoc/index.xml fi /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -d build/cackey_osx_build/${OSX}_pmbuild.pmdoc -o macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT} tar --create --directory macbuild/pkg/ --file macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT}.tar CACKey_${CACKEY_VERSION}_${OSX}.${EXT} gzip -9 macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT}.tar rm -rf macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT} rm -f build/cackey_osx_build/cackey.dylib |
︙ | ︙ | |||
214 215 216 217 218 219 220 | "leopard") ./autogen.sh leopard exit $? ;; | < < < < < | < | < | | 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | "leopard") ./autogen.sh leopard exit $? ;; "sltoyos") ./autogen.sh sltoyos exit $? ;; "all") ./autogen.sh leopard sltoyos echo "" echo "All builds complete." exit $? ;; "clean") clean |
︙ | ︙ |
Modified build/cackey_win32_build/build.sh from [ad50b00270] to [fbfa3a5bbe].
1 2 3 4 | #! /bin/bash make distclean | < < | < < | 1 2 3 4 5 6 7 8 9 | #! /bin/bash make distclean ./configure --with-pcsc-headers="$(pwd)/build/cackey_win32_build/include" --with-pcsc-libs="-L$(pwd)/build/cackey_win32_build/lib -lwinscard" --host=i586-mingw32msvc CPPFLAGS="-I$(pwd)/build/cackey_win32_build/include" "$@" || exit 1 make || exit 1 exit 0 |
Deleted build/cackey_win32_build/include/SCardErr.h version [969de80f85].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted build/cackey_win32_build/include/winscard.h version [09d1252d26].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted build/cackey_win32_build/include/winsmcrd.h version [7735605d6f].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted build/cackey_win32_build/lib/winscard.dll version [c65243081f].
cannot compute difference between binary files
Deleted build/cackey_win32_build/lib/winscard.lib version [eadd06eb72].
cannot compute difference between binary files
Modified build/certs-to-c from [c49efbf6f1] to [1cd87f2aca].
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /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@')" | | | < | | | | 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@')" certlen="$(cat tmpfile.x509 | wc -c)" cert="$(( cat tmpfile.x509 | od -t x1 | cut -c 9- | tr "\n" ' '; echo ) | sed 's@ @@g;s@..@\\x&@g')" cat << _EOF_ { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ ${certlen}, /* certificate_len */ (unsigned char *) "${cert}", /* certificate */ ${pubkeylen} /* keysize */ }, _EOF_ done rm -f tmpfile.x509 |
Added build/certs/commercial/kps-ca-1.crt version [686485547a].
> > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | -----BEGIN CERTIFICATE----- MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQsFADCBrDELMAkGA1UEBhMCVVMx ETAPBgNVBAgTCFZpcmdpbmlhMQ8wDQYDVQQHEwZSZXN0b24xIDAeBgNVBAoTF0tu aWdodFBvaW50IFN5c3RlbXMgTExDMRcwFQYDVQQLEw5LbmlnaHRQb2ludCBJVDEY MBYGA1UECxMPS25pZ2h0UG9pbnQgUEtJMSQwIgYDVQQDExtLbmlnaHRQb2ludCBT eXN0ZW1zIFJvb3QgQ0EwHhcNMTUwMTAxMDAwMDAwWhcNMTcwMTAxMDAwMDAwWjCB qTELMAkGA1UEBhMCVVMxETAPBgNVBAgTCFZpcmdpbmlhMQ8wDQYDVQQHEwZSZXN0 b24xIDAeBgNVBAoTF0tuaWdodFBvaW50IFN5c3RlbXMgTExDMRcwFQYDVQQLEw5L bmlnaHRQb2ludCBJVDEYMBYGA1UECxMPS25pZ2h0UG9pbnQgUEtJMSEwHwYDVQQD ExhLbmlnaHRQb2ludCBTeXN0ZW1zIENBIDEwggEiMA0GCSqGSIb3DQEBAQUAA4IB DwAwggEKAoIBAQDFB0hZlCwZFIUn/fHk/Ubeia8/pnpC/yuWs+oicBs9SvhrZNMI 8aYmnUhyaMfE+bxJrZSCYdGffm9VJxWv/suJ+Cr+9gdxWBWpqncw78agCNa5Oo2l tqjFIE6mTCd9QE6CnNJJUc1ysZaz9WmWuA1i9EQ4ybV+l7baOmvE7MNUf6sPew+W 42QjiWjri9xzpXTl3fhcYxNp/Dx5GXzJIpV+Eg5FlxKn+P75HUJpV2qpHzAzR5gM Xiee1O1PogqS1ylWQsY60fS9eIiYx08R6JeN6SISr8MOsatWsepHa8lch+NSIVeW 4QhD9NOH3JUDgTGR8aB2StmuQFEO+9daMWMfAgMBAAGjYDBeMBIGA1UdEwEB/wQI MAYBAf8CAQEwNwYDVR0fAQEABC0wKzApoCegJYYjaHR0cDovL3BraS5rbmlnaHRw b2ludC5jb20vY3JsL3Jvb3QwDwYDVR0PAQH/BAUDAweGADANBgkqhkiG9w0BAQsF AAOCAQEAFu5CYJqLuq3Ey/RBsP0tVF9s7HGDprLyhaOWSn558e4it6kLrionX+Qg 5szXlqx8LoQBj/Zq0ObGguns7C6EfwqyNXl2G+DdFNqOn491fFijvWmwl2Wotkgw CieuVGaN8JCOmLtzPM1HOr2GSAWGz59uDB+axJVIvqSJLT5UAz5OzA5ECnND5qnQ lk1FZvST8b8HZaetAFf4jZBY/2WQVyam45yNNIM5jAtr6CtUEDiWq+ReAFDHEN3p J/QfPiavPnBjBAC1xJu6HtKXNGiEMWirc6MyT3QPlCj632PcC+/MpqDSFYV+qYRK 5te0SbUIziVyglsN5+oGeEDPyiyheQ== -----END CERTIFICATE----- |
Added build/certs/commercial/kps-root-ca.crt version [5d7e615d76].
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | -----BEGIN CERTIFICATE----- MIID/jCCAuagAwIBAgIGAUvsEnbkMA0GCSqGSIb3DQEBCwUAMIGsMQswCQYDVQQG EwJVUzERMA8GA1UECBMIVmlyZ2luaWExDzANBgNVBAcTBlJlc3RvbjEgMB4GA1UE ChMXS25pZ2h0UG9pbnQgU3lzdGVtcyBMTEMxFzAVBgNVBAsTDktuaWdodFBvaW50 IElUMRgwFgYDVQQLEw9LbmlnaHRQb2ludCBQS0kxJDAiBgNVBAMTG0tuaWdodFBv aW50IFN5c3RlbXMgUm9vdCBDQTAeFw0xNTAxMDEwMDAwMDBaFw0zNTAxMDEwMDAw MDBaMIGsMQswCQYDVQQGEwJVUzERMA8GA1UECBMIVmlyZ2luaWExDzANBgNVBAcT BlJlc3RvbjEgMB4GA1UEChMXS25pZ2h0UG9pbnQgU3lzdGVtcyBMTEMxFzAVBgNV BAsTDktuaWdodFBvaW50IElUMRgwFgYDVQQLEw9LbmlnaHRQb2ludCBQS0kxJDAi BgNVBAMTG0tuaWdodFBvaW50IFN5c3RlbXMgUm9vdCBDQTCCASIwDQYJKoZIhvcN AQEBBQADggEPADCCAQoCggEBAMqF1VSV4bYdl5Lq2qtB/KXf/DaNSlTmgjhWAMQT 1eS9UqiDEDvLHdoTpqCo02/dNDmWpb3GRCt8BIuPaLp/v4xaEStS8feGjlDlBVSv vXf4rj7is923okBjjTqz4l25QeDtJAAz4VsNkopo8Fb2wMs8glF5rNnwaQm6PgqN 8/VF4eHM0fUuq8+WxzXdk9Z50pF9/RM4m4Nj7SeFGxwSWBxvRLjYv6z8k2G1PTnE seCeWO3NAcPbxuPcpY8dQDRng22zS3HDW/0+nW1UFLu2UiD0yECWiNPYTah/FKiC dp8+JkOqcbyfdu7sA287AXG43rniXA95HNtwRZh1Do5l1f8CAwEAAaMkMCIwDwYD VR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDB4YAMA0GCSqGSIb3DQEBCwUAA4IB AQAcujWXZ3E3zS/7VSCTp6huc5bwDAncxWtcBjV8O0cJIbbqvYVlCfosI+VqtUAT 9lG2QVRwPTrz171WB0NXRJdIX0r8oemTV+lknE7KauwtoMiGKADxyH5XJuIvchwb ykuPXnBPJ8KAUV5tFDWgjLcrICrBjadywSS6/EBCFzFjFb11Sw4eAhohrEow+keD Dsow+NcpdRm3kwEa5mvdheIixPtemtC8UnB/iKjVlM2O+ihy85xdJLkqp9hZ4gro W5AEzRV6pN8OBTMXCQieQcYMyPvEf0AUpcAqxxOciWQGRbdyF/4DetuFz7fOxAHD 3WRKCbxylVFQV4hzK5dJAJsg -----END CERTIFICATE----- |
Added build/certs/dod/Makefile version [678511107e].
> > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | all: cert-0.crt rel3_dodroot_2048.cac: wget -O "$@.new" http://dodpki.c3pki.chamb.disa.mil/rel3_dodroot_2048.cac mv "$@.new" "$@" 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 \ continue; \ fi; \ echo "$${line}" >> "cert-$${idx}.crt"; \ if [ "$${line}" == "-----END CERTIFICATE-----" ]; then \ idx=$$[$$idx + 1]; \ fi; \ done clean: rm -f cert-*.crt rm -f rel3_dodroot_2048.cac.new distclean: clean rm -f rel3_dodroot_2048.cac |
Added build/certs/federal/Makefile version [4c5635d94a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 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: wget -O "$@.new" --no-check-certificate https://pki.treas.gov/root_sia.p7b mv "$@.new" "$@" CommonPolicy.crt: wget -O - http://fpkia.gsa.gov/CommonPolicy/CommonPolicy.crt | openssl x509 -inform der -text > "$@.new" mv "$@.new" "$@" cert-%.crt: root_sia.p7b caCertsIssuedTofcpca.p7c idx=0; \ ( \ openssl pkcs7 -in root_sia.p7b -inform DER -print_certs -text; \ openssl pkcs7 -in caCertsIssuedTofcpca.p7c -inform DER -print_certs -text; \ ) | while IFS='' read -r line; do \ if [ -z "$${line}" ]; then \ continue; \ fi; \ echo "$${line}" >> "cert-$${idx}.crt"; \ if [ "$${line}" == "-----END CERTIFICATE-----" ]; then \ idx=$$[$$idx + 1]; \ fi; \ done clean: rm -f cert-*.crt 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 |
Modified cackey.c from [711a90f529] to [60fa6fcd12].
︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | #endif #ifdef HAVE_LIMITS_H # include <limits.h> #endif #ifdef HAVE_STDIO_H # include <stdio.h> #endif #ifdef HAVE_ZLIB_H # ifdef HAVE_LIBZ # include <zlib.h> # endif #else # ifdef HAVE_LIBZ # undef HAVE_LIBZ # endif #endif #define CK_PTR * #define CK_DEFINE_FUNCTION(returnType, name) returnType name #define CK_DECLARE_FUNCTION(returnType, name) returnType name #define CK_DECLARE_FUNCTION_POINTER(returnType, name) returnType (* name) #define CK_CALLBACK_FUNCTION(returnType, name) returnType (* name) #ifndef NULL_PTR # define NULL_PTR 0 #endif #include "pkcs11.h" #include "pkcs11n.h" #include "asn1-x509.h" #include "sha1.h" #include "md5.h" | > > > > > > > < < < < < < < < | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | #endif #ifdef HAVE_LIMITS_H # include <limits.h> #endif #ifdef HAVE_STDIO_H # include <stdio.h> #endif #define HAVE_ERRNO_H 1 #ifdef HAVE_ERRNO_H # include <errno.h> #endif #ifdef HAVE_ZLIB_H # ifdef HAVE_LIBZ # include <zlib.h> # endif #else # ifdef HAVE_LIBZ # undef HAVE_LIBZ # endif #endif #ifdef CACKEY_DEBUG_SEARCH_SPEEDTEST # include <sys/time.h> #endif #define CK_PTR * #define CK_DEFINE_FUNCTION(returnType, name) returnType name #define CK_DECLARE_FUNCTION(returnType, name) returnType name #define CK_DECLARE_FUNCTION_POINTER(returnType, name) returnType (* name) #define CK_CALLBACK_FUNCTION(returnType, name) returnType (* name) #ifndef NULL_PTR # define NULL_PTR 0 #endif #include "pkcs11.h" #include "pkcs11n.h" #include "asn1-x509.h" #include "sha1.h" #include "md5.h" #ifndef CACKEY_CRYPTOKI_VERSION_CODE # define CACKEY_CRYPTOKI_VERSION_CODE 0x021e00 #endif /* GSC-IS v2.1 Definitions */ /** Classes **/ #define GSCIS_CLASS_ISO7816 0x00 |
︙ | ︙ | |||
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | #define GSCIS_TAG_SERNO 0x51 #define GSCIS_TAG_ISSUE_DATE 0x52 #define GSCIS_TAG_EXPIRE_DATE 0x53 #define GSCIS_TAG_CARD_TYPE 0x54 #define GSCIS_TAG_SECURITY_CODE 0x57 #define GSCIS_TAG_CARDID_AID 0x58 /*** PKI Information - EF 7000 ***/ #define GSCIS_TAG_CERTIFICATE 0x70 #define GSCIS_TAG_CERT_ISSUE_DATE 0x71 #define GSCIS_TAG_CERT_EXPIRE_DATE 0x72 /** Applet IDs **/ #define GSCIS_AID_CCC 0xA0, 0x00, 0x00, 0x01, 0x16, 0xDB, 0x00 /* Maximum size of data portion of APDUs */ /** Do not set this above 250 **/ #define CACKEY_APDU_MTU 250 /* ATR If not available */ #ifndef MAX_ATR_SIZE #define MAX_ATR_SIZE 1024 #endif #ifdef CACKEY_DEBUG # ifdef HAVE_TIME_H # include <time.h> static time_t cackey_debug_start_time = 0; | > > > > > > > > > > > > > > > > > > > > > > > > > > | > > | > > | > > > > > > | > > > > > > > > > > > > > > > > > > > > > > | > | 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | #define GSCIS_TAG_SERNO 0x51 #define GSCIS_TAG_ISSUE_DATE 0x52 #define GSCIS_TAG_EXPIRE_DATE 0x53 #define GSCIS_TAG_CARD_TYPE 0x54 #define GSCIS_TAG_SECURITY_CODE 0x57 #define GSCIS_TAG_CARDID_AID 0x58 /*** PIV Codes ***/ #define NISTSP800_73_3_INSTR_GET_DATA 0xCB #define NISTSP800_73_3_INSTR_GENAUTH 0x87 /*** PKI Information - EF 7000 ***/ #define GSCIS_TAG_CERTIFICATE 0x70 #define GSCIS_TAG_CERT_ISSUE_DATE 0x71 #define GSCIS_TAG_CERT_EXPIRE_DATE 0x72 /** Applet IDs **/ #define GSCIS_AID_CCC 0xA0, 0x00, 0x00, 0x01, 0x16, 0xDB, 0x00 #define NISTSP800_73_3_PIV_AID 0xA0, 0x00, 0x00, 0x03, 0x08, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00 /* PIV IDs */ /** Key Identifiers (NIST SP 800-78-3, Table 6-1 **/ #define NISTSP800_78_3_KEY_PIVAUTH 0x9A #define NISTSP800_78_3_KEY_SIGNATURE 0x9C #define NISTSP800_78_3_KEY_KEYMGT 0x9D #define NISTSP800_78_3_KEY_CARDAUTH 0x9E /** Algorithm Identifiers (NIST SP 800-78-3, Table 6-2 **/ #define NISTSP800_78_3_ALGO_RSA1024 0x06 #define NISTSP800_78_3_ALGO_RSA2048 0x07 /** Object Identifiers (NIST SP 800-73-3 Part 1, Table 2) **/ #define NISTSP800_73_3_OID_PIVAUTH 0x5F, 0xC1, 0x05 #define NISTSP800_73_3_OID_SIGNATURE 0x5F, 0xC1, 0x0A #define NISTSP800_73_3_OID_KEYMGT 0x5F, 0xC1, 0x0B #define NISTSP800_73_3_OID_CARDAUTH 0x5F, 0xC1, 0x01 /* Maximum size of data portion of APDUs */ /** Do not set this above 250 **/ #define CACKEY_APDU_MTU 250 /* ATR If not available */ #ifndef MAX_ATR_SIZE #define MAX_ATR_SIZE 1024 #endif #ifdef CACKEY_DEBUG # ifdef HAVE_TIME_H # include <time.h> static time_t cackey_debug_start_time = 0; static unsigned long CACKEY_DEBUG_GETTIME(void) { if (cackey_debug_start_time == 0) { cackey_debug_start_time = time(NULL); } return(time(NULL) - cackey_debug_start_time); } # else static unsigned long CACKEY_DEBUG_GETTIME(void) { return(0); } # endif # define CACKEY_DEBUG_PRINTF(x...) { \ static char buf_user[4096] = {0}; \ snprintf(buf_user, sizeof(buf_user), x); \ buf_user[sizeof(buf_user) - 1] = '\0'; \ fprintf(cackey_debug_fd(), "[%lu]: %s():%i: %s\n", CACKEY_DEBUG_GETTIME(), __func__, __LINE__, buf_user); \ fflush(cackey_debug_fd()); \ } # define CACKEY_DEBUG_PRINTBUF(f, x, y) { \ static char buf_user[4096] = {0}, *buf_user_p; \ unsigned long buf_user_size; \ unsigned char *TMPBUF; \ unsigned long idx; \ int snprintf_ret; \ TMPBUF = (unsigned char *) (x); \ buf_user[0] = 0; \ buf_user_p = buf_user; \ buf_user_size = sizeof(buf_user); \ for (idx = 1; idx < (y); idx++) { \ if (buf_user_size <= 0) { \ break; \ }; \ snprintf_ret = snprintf(buf_user_p, buf_user_size, ", %02x", TMPBUF[idx]); \ if (snprintf_ret <= 0) { \ break; \ }; \ buf_user_p += snprintf_ret; \ buf_user_size -= snprintf_ret; \ }; \ buf_user[sizeof(buf_user) - 1] = '\0'; \ fprintf(cackey_debug_fd(), "[%lu]: %s():%i: %s (%s/%lu = {%02x%s})\n", CACKEY_DEBUG_GETTIME(), __func__, __LINE__, f, #x, (unsigned long) (y), TMPBUF[0], buf_user); \ fflush(cackey_debug_fd()); \ } # define free(x) { CACKEY_DEBUG_PRINTF("FREE(%p) (%s)", (void *) x, #x); free(x); } static FILE *cackey_debug_fd(void) { static FILE *fd = NULL; char *logfile; if (fd != NULL) { |
︙ | ︙ | |||
205 206 207 208 209 210 211 212 213 214 215 216 217 218 | logfile = strchr(logfile, '='); if (logfile == NULL) { logfile = getenv("CACKEY_DEBUG_LOGFILE"); } else { logfile++; } } if (logfile != NULL) { CACKEY_DEBUG_PRINTF("Found log file: %s", logfile); fd = fopen(logfile, "a"); } | > > > > > > | 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | logfile = strchr(logfile, '='); if (logfile == NULL) { logfile = getenv("CACKEY_DEBUG_LOGFILE"); } else { logfile++; } } #ifdef CACKEY_DEBUG_LOGFILE if (logfile == NULL) { logfile = CACKEY_DEBUG_LOGFILE; } #endif if (logfile != NULL) { CACKEY_DEBUG_PRINTF("Found log file: %s", logfile); fd = fopen(logfile, "a"); } |
︙ | ︙ | |||
230 231 232 233 234 235 236 | } static void *CACKEY_DEBUG_FUNC_MALLOC(size_t size, const char *func, int line) { void *retval; retval = malloc(size); | < < < | < < < | < < < | | 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | } static void *CACKEY_DEBUG_FUNC_MALLOC(size_t size, const char *func, int line) { void *retval; retval = malloc(size); fprintf(cackey_debug_fd(), "[%lu]: %s():%i: MALLOC() = %p\n", CACKEY_DEBUG_GETTIME(), func, line, retval); fflush(cackey_debug_fd()); return(retval); } static void *CACKEY_DEBUG_FUNC_REALLOC(void *ptr, size_t size, const char *func, int line) { void *retval; retval = realloc(ptr, size); if (retval != ptr) { fprintf(cackey_debug_fd(), "[%lu]: %s():%i: REALLOC(%p) = %p\n", CACKEY_DEBUG_GETTIME(), func, line, ptr, retval); fflush(cackey_debug_fd()); } if (retval == NULL) { CACKEY_DEBUG_PRINTF(" *** ERROR *** realloc returned NULL (size = %lu)", (unsigned long) size); } return(retval); } static char *CACKEY_DEBUG_FUNC_STRDUP(const char *ptr, const char *func, int line) { char *retval; retval = strdup(ptr); fprintf(cackey_debug_fd(), "[%lu]: %s():%i: STRDUP_MALLOC() = %p\n", CACKEY_DEBUG_GETTIME(), func, line, retval); fflush(cackey_debug_fd()); return(retval); } static const char *CACKEY_DEBUG_FUNC_TAG_TO_STR(unsigned char tag) { switch (tag) { |
︙ | ︙ | |||
649 650 651 652 653 654 655 | # ifdef strdup # undef strdup # endif # define strdup(x) CACKEY_DEBUG_FUNC_STRDUP(x, __func__, __LINE__) #else # define CACKEY_DEBUG_PRINTF(x...) /**/ # define CACKEY_DEBUG_PRINTBUF(f, x, y) /**/ | < > > > > > > > > > > > > > > < | > > > > > > > > > > > > | 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 | # ifdef strdup # undef strdup # endif # define strdup(x) CACKEY_DEBUG_FUNC_STRDUP(x, __func__, __LINE__) #else # define CACKEY_DEBUG_PRINTF(x...) /**/ # define CACKEY_DEBUG_PRINTBUF(f, x, y) /**/ # define CACKEY_DEBUG_FUNC_TAG_TO_STR(x) "DEBUG_DISABLED" # define CACKEY_DEBUG_FUNC_SCARDERR_TO_STR(x) "DEBUG_DISABLED" # define CACKEY_DEBUG_FUNC_OBJID_TO_STR(x) "DEBUG_DISABLED" # define CACKEY_DEBUG_FUNC_APPTYPE_TO_STR(x) "DEBUG_DISABLED" # define CACKEY_DEBUG_FUNC_ATTRIBUTE_TO_STR(x) "DEBUG_DISABLED" #endif /* * Include these source files in this translation unit so that we can bind to * functions and not include any symbols in the output shared object. */ #include "asn1-x509.c" #include "sha1.c" #include "md5.c" typedef enum { CACKEY_ID_TYPE_CAC, CACKEY_ID_TYPE_PIV, CACKEY_ID_TYPE_CERT_ONLY } cackey_pcsc_id_type; struct cackey_pcsc_identity { cackey_pcsc_id_type id_type; size_t certificate_len; unsigned char *certificate; ssize_t keysize; union { struct { unsigned char applet[7]; uint16_t file; } cac; struct { unsigned char key_id; char label[32]; } piv; } card; }; struct cackey_identity { struct cackey_pcsc_identity *pcsc_identity; CK_ATTRIBUTE *attributes; CK_ULONG attributes_count; |
︙ | ︙ | |||
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 | CK_VOID_PTR decrypt_mech_parm; CK_ULONG decrypt_mech_parmlen; struct cackey_identity *decrypt_identity; }; struct cackey_slot { int active; char *pcsc_reader; int pcsc_card_connected; SCARDHANDLE pcsc_card; int transaction_depth; int transaction_need_hw_lock; int slot_reset; CK_FLAGS token_flags; unsigned char *label; DWORD protocol; }; typedef enum { CACKEY_TLV_APP_GENERIC = 0x01, CACKEY_TLV_APP_SKI = 0x02, CACKEY_TLV_APP_PKI = 0x04 } cackey_tlv_apptype; | > > > > | 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 | CK_VOID_PTR decrypt_mech_parm; CK_ULONG decrypt_mech_parmlen; struct cackey_identity *decrypt_identity; }; struct cackey_slot { int active; int internal; char *pcsc_reader; int pcsc_card_connected; SCARDHANDLE pcsc_card; int transaction_depth; int transaction_need_hw_lock; int slot_reset; CK_FLAGS token_flags; unsigned char *label; DWORD protocol; unsigned int cached_certs_count; struct cackey_pcsc_identity *cached_certs; }; typedef enum { CACKEY_TLV_APP_GENERIC = 0x01, CACKEY_TLV_APP_SKI = 0x02, CACKEY_TLV_APP_PKI = 0x04 } cackey_tlv_apptype; |
︙ | ︙ | |||
794 795 796 797 798 799 800 801 802 803 804 805 806 807 | CK_C_INITIALIZE_ARGS cackey_args; /** Extra certificates to include in token **/ struct cackey_pcsc_identity extra_certs[] = { #include "cackey_builtin_certs.h" }; /* PCSC Global Handles */ static LPSCARDCONTEXT cackey_pcsc_handle = NULL; static unsigned long cackey_getversion(void) { static unsigned long retval = 255; unsigned long major = 0; unsigned long minor = 0; | > > > > > | 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 | CK_C_INITIALIZE_ARGS cackey_args; /** Extra certificates to include in token **/ struct cackey_pcsc_identity extra_certs[] = { #include "cackey_builtin_certs.h" }; /* Protected Authentication Path command */ #define CACKEY_PIN_COMMAND_DEFAULT_XSTR(str) CACKEY_PIN_COMMAND_DEFAULT_STR(str) #define CACKEY_PIN_COMMAND_DEFAULT_STR(str) #str static char *cackey_pin_command = NULL; /* PCSC Global Handles */ static LPSCARDCONTEXT cackey_pcsc_handle = NULL; static unsigned long cackey_getversion(void) { static unsigned long retval = 255; unsigned long major = 0; unsigned long minor = 0; |
︙ | ︙ | |||
857 858 859 860 861 862 863 864 865 866 867 868 869 870 | */ static void cackey_slots_disconnect_all(void) { uint32_t idx; CACKEY_DEBUG_PRINTF("Called."); for (idx = 0; idx < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); idx++) { if (cackey_slots[idx].pcsc_card_connected) { CACKEY_DEBUG_PRINTF("SCardDisconnect(%lu) called", (unsigned long) idx); SCardDisconnect(cackey_slots[idx].pcsc_card, SCARD_LEAVE_CARD); } if (cackey_slots[idx].label) { | > > > > > | 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 | */ static void cackey_slots_disconnect_all(void) { uint32_t idx; CACKEY_DEBUG_PRINTF("Called."); for (idx = 0; idx < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); idx++) { if (cackey_slots[idx].internal) { /* Skip internal slots */ continue; } if (cackey_slots[idx].pcsc_card_connected) { CACKEY_DEBUG_PRINTF("SCardDisconnect(%lu) called", (unsigned long) idx); SCardDisconnect(cackey_slots[idx].pcsc_card, SCARD_LEAVE_CARD); } if (cackey_slots[idx].label) { |
︙ | ︙ | |||
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 | if (slot->pcsc_card_connected) { SCardDisconnect(slot->pcsc_card, SCARD_LEAVE_CARD); } slot->slot_reset = 1; slot->pcsc_card_connected = 0; slot->token_flags = 0; if (login_required == -1) { if (cackey_login_required(slot) != CACKEY_PCSC_S_OK) { login_required = 1; } else { login_required = 0; } } if (login_required) { slot->token_flags |= CKF_LOGIN_REQUIRED; } CACKEY_DEBUG_PRINTF("Returning."); return; } /* * SYNPOSIS | > > > > | < < < | > > > | | | > > > > | 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 | if (slot->pcsc_card_connected) { SCardDisconnect(slot->pcsc_card, SCARD_LEAVE_CARD); } slot->slot_reset = 1; slot->pcsc_card_connected = 0; slot->token_flags = 0; if (cackey_pin_command == NULL) { login_required = 0; } if (login_required == -1) { if (cackey_login_required(slot) != CACKEY_PCSC_S_OK) { login_required = 1; } else { login_required = 0; } } if (login_required) { slot->token_flags |= CKF_LOGIN_REQUIRED; } CACKEY_DEBUG_PRINTF("Returning."); return; } /* * SYNPOSIS * LONG cackey_reconnect_card(struct cackey_slot *slot, DWORD default_protocol); * * ARGUMENTS * cackey_slot *slot * Slot to send commands to * * DWORD default_protocol * Protocol to attempt first * * RETURN VALUE * The return value from SCardReconnect() * * NOTES * This function is a wrapper around SCardReconnect() * * The SCardReconnect() function call will be called first with the * dwPreferredProtocols of "default_protocol". If that call returns * SCARD_E_PROTO_MISMATCH try again with a protocol of T=0, and failing * that T=1. * */ static LONG cackey_reconnect_card(struct cackey_slot *slot, DWORD default_protocol) { DWORD selected_protocol; LONG scard_conn_ret; selected_protocol = 0; scard_conn_ret = SCardReconnect(slot->pcsc_card, SCARD_SHARE_SHARED, default_protocol, SCARD_RESET_CARD, &selected_protocol); if (scard_conn_ret == SCARD_E_PROTO_MISMATCH) { CACKEY_DEBUG_PRINTF("SCardReconnect() returned SCARD_E_PROTO_MISMATCH, trying with just T=0") scard_conn_ret = SCardReconnect(slot->pcsc_card, SCARD_SHARE_SHARED, SCARD_PROTOCOL_T0, SCARD_RESET_CARD, &selected_protocol); if (scard_conn_ret == SCARD_E_PROTO_MISMATCH) { CACKEY_DEBUG_PRINTF("SCardReconnect() returned SCARD_E_PROTO_MISMATCH, trying with just T=1") scard_conn_ret = SCardReconnect(slot->pcsc_card, SCARD_SHARE_SHARED, SCARD_PROTOCOL_T1, SCARD_RESET_CARD, &selected_protocol); } } if (scard_conn_ret == SCARD_S_SUCCESS) { slot->protocol = selected_protocol; } return(scard_conn_ret); } /* * SYNPOSIS * cackey_ret cackey_connect_card(struct cackey_slot *slot); |
︙ | ︙ | |||
1132 1133 1134 1135 1136 1137 1138 | CACKEY_DEBUG_PRINTF("Connection to PC/SC failed, returning in failure"); return(CACKEY_PCSC_E_GENERIC); } /* Connect to reader, if needed */ if (!slot->pcsc_card_connected) { | | | 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 | CACKEY_DEBUG_PRINTF("Connection to PC/SC failed, returning in failure"); return(CACKEY_PCSC_E_GENERIC); } /* Connect to reader, if needed */ if (!slot->pcsc_card_connected) { CACKEY_DEBUG_PRINTF("SCardConnect(%s) called for slot %p", slot->pcsc_reader, slot); scard_conn_ret = SCardConnect(*cackey_pcsc_handle, slot->pcsc_reader, SCARD_SHARE_SHARED, SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1, &slot->pcsc_card, &protocol); if (scard_conn_ret == SCARD_E_PROTO_MISMATCH) { CACKEY_DEBUG_PRINTF("SCardConnect() returned SCARD_E_PROTO_MISMATCH, trying with just T=0") scard_conn_ret = SCardConnect(*cackey_pcsc_handle, slot->pcsc_reader, SCARD_SHARE_SHARED, SCARD_PROTOCOL_T0, &slot->pcsc_card, &protocol); if (scard_conn_ret == SCARD_E_PROTO_MISMATCH) { |
︙ | ︙ | |||
1160 1161 1162 1163 1164 1165 1166 | if (scard_conn_ret == SCARD_E_PROTO_MISMATCH) { CACKEY_DEBUG_PRINTF("SCardConnect() returned SCARD_E_PROTO_MISMATCH, trying with just T=1") scard_conn_ret = SCardConnect(*cackey_pcsc_handle, slot->pcsc_reader, SCARD_SHARE_SHARED, SCARD_PROTOCOL_T1, &slot->pcsc_card, &protocol); } } | | > > | 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 | if (scard_conn_ret == SCARD_E_PROTO_MISMATCH) { CACKEY_DEBUG_PRINTF("SCardConnect() returned SCARD_E_PROTO_MISMATCH, trying with just T=1") scard_conn_ret = SCardConnect(*cackey_pcsc_handle, slot->pcsc_reader, SCARD_SHARE_SHARED, SCARD_PROTOCOL_T1, &slot->pcsc_card, &protocol); } } scard_conn_ret = cackey_reconnect_card(slot, protocol); } if (scard_conn_ret != SCARD_S_SUCCESS) { CACKEY_DEBUG_PRINTF("Connection to card failed, returning in failure (SCardConnect() = %s/%li)", CACKEY_DEBUG_FUNC_SCARDERR_TO_STR(scard_conn_ret), (long) scard_conn_ret); return(CACKEY_PCSC_E_GENERIC); } slot->pcsc_card_connected = 1; slot->transaction_depth = 0; slot->transaction_need_hw_lock = 0; slot->protocol = protocol; } CACKEY_DEBUG_PRINTF("Returning in success"); return(CACKEY_PCSC_S_OK); } /* * SYNPOSIS * cackey_ret cackey_begin_transaction(struct cackey_slot *slot); |
︙ | ︙ | |||
1361 1362 1363 1364 1365 1366 1367 | * cackey_pcsc_connect() if needed. * * It will connect to the card in the reader attached to the slot * specified. It will reconnect to the card if the connection * goes away. * */ | | < | 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 | * cackey_pcsc_connect() if needed. * * It will connect to the card in the reader attached to the slot * specified. It will reconnect to the card if the connection * goes away. * */ static cackey_ret cackey_send_apdu(struct cackey_slot *slot, unsigned char class, unsigned char instruction, unsigned char p1, unsigned char p2, unsigned int lc, unsigned char *data, unsigned int le, uint16_t *respcode, unsigned char *respdata, size_t *respdata_len) { uint8_t major_rc, minor_rc; size_t bytes_to_copy, tmp_respdata_len; LPCSCARD_IO_REQUEST pioSendPci; DWORD xmit_len, recv_len; LONG scard_xmit_ret, scard_reconn_ret; BYTE xmit_buf[1024], recv_buf[1024]; int pcsc_connect_ret, pcsc_getresp_ret; int idx; CACKEY_DEBUG_PRINTF("Called."); |
︙ | ︙ | |||
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 | return(CACKEY_PCSC_E_GENERIC); } /* Determine which protocol to send using */ switch (slot->protocol) { case SCARD_PROTOCOL_T0: pioSendPci = SCARD_PCI_T0; break; case SCARD_PROTOCOL_T1: pioSendPci = SCARD_PCI_T1; break; default: CACKEY_DEBUG_PRINTF("Invalid protocol found, aborting."); return(CACKEY_PCSC_E_GENERIC); } /* Transmit */ xmit_len = 0; xmit_buf[xmit_len++] = class; xmit_buf[xmit_len++] = instruction; xmit_buf[xmit_len++] = p1; xmit_buf[xmit_len++] = p2; if (data) { | > > > > > > > > > > > | > > > > > > > > > > | > | > > | < < | 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 | return(CACKEY_PCSC_E_GENERIC); } /* Determine which protocol to send using */ switch (slot->protocol) { case SCARD_PROTOCOL_T0: CACKEY_DEBUG_PRINTF("Protocol to send datagram is T=0"); pioSendPci = SCARD_PCI_T0; break; case SCARD_PROTOCOL_T1: CACKEY_DEBUG_PRINTF("Protocol to send datagram is T=1"); pioSendPci = SCARD_PCI_T1; break; default: CACKEY_DEBUG_PRINTF("Invalid protocol found, aborting."); return(CACKEY_PCSC_E_GENERIC); } /* Transmit */ xmit_len = 0; xmit_buf[xmit_len++] = class; xmit_buf[xmit_len++] = instruction; xmit_buf[xmit_len++] = p1; xmit_buf[xmit_len++] = p2; if (data) { if (lc > 255) { CACKEY_DEBUG_PRINTF("CAUTION! Using an Lc greater than 255 is untested. Lc = %u", lc); xmit_buf[xmit_len++] = 0x82; /* XXX UNTESTED */ xmit_buf[xmit_len++] = (lc & 0xff00) >> 8; xmit_buf[xmit_len++] = lc & 0xff; } else { xmit_buf[xmit_len++] = lc; } for (idx = 0; idx < lc; idx++) { xmit_buf[xmit_len++] = data[idx]; } } if (le != 0x00) { if (le > 256) { CACKEY_DEBUG_PRINTF("CAUTION! Using an Le greater than 256 is untested. Le = %u", le); xmit_buf[xmit_len++] = 0x82; /* XXX UNTESTED */ xmit_buf[xmit_len++] = (le & 0xff00) >> 8; xmit_buf[xmit_len++] = le & 0xff; } else if (le == 256) { xmit_buf[xmit_len++] = 0x00; } else { xmit_buf[xmit_len++] = le; } } /* Begin Smartcard Transaction */ cackey_begin_transaction(slot); if (class == GSCIS_CLASS_ISO7816 && instruction == GSCIS_INSTR_VERIFY && p1 == 0x00) { CACKEY_DEBUG_PRINTF("Sending APDU: <<censored>>"); } else { CACKEY_DEBUG_PRINTBUF("Sending APDU:", xmit_buf, xmit_len); } recv_len = sizeof(recv_buf); scard_xmit_ret = SCardTransmit(slot->pcsc_card, pioSendPci, xmit_buf, xmit_len, NULL, recv_buf, &recv_len); if (scard_xmit_ret == SCARD_E_NOT_TRANSACTED) { CACKEY_DEBUG_PRINTF("Failed to send APDU to card (SCardTransmit() = %s/%lx), will ask calling function to retry (not resetting card)...", CACKEY_DEBUG_FUNC_SCARDERR_TO_STR(scard_xmit_ret), (unsigned long) scard_xmit_ret); /* Begin Smartcard Transaction */ cackey_end_transaction(slot); cackey_reconnect_card(slot, slot->protocol); return(CACKEY_PCSC_E_RETRY); } if (scard_xmit_ret != SCARD_S_SUCCESS) { CACKEY_DEBUG_PRINTF("Failed to send APDU to card (SCardTransmit() = %s/%lx)", CACKEY_DEBUG_FUNC_SCARDERR_TO_STR(scard_xmit_ret), (unsigned long) scard_xmit_ret); CACKEY_DEBUG_PRINTF("Marking slot as having been reset"); cackey_mark_slot_reset(slot); if (scard_xmit_ret == SCARD_W_RESET_CARD) { CACKEY_DEBUG_PRINTF("Reset required, please hold..."); scard_reconn_ret = cackey_reconnect_card(slot, SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1); if (scard_reconn_ret == SCARD_S_SUCCESS) { switch (slot->protocol) { case SCARD_PROTOCOL_T0: pioSendPci = SCARD_PCI_T0; break; case SCARD_PROTOCOL_T1: pioSendPci = SCARD_PCI_T1; |
︙ | ︙ | |||
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 | } CACKEY_DEBUG_PRINTF("APDU Returned an error, returning in failure"); return(CACKEY_PCSC_E_GENERIC); } /* * SYNPOSIS * ssize_t cackey_read_buffer(struct cackey_slot *slot, unsigned char *buffer, size_t count, unsigned char t_or_v, size_t initial_offset); * * ARGUMENTS * struct cackey_slot *slot | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 | } CACKEY_DEBUG_PRINTF("APDU Returned an error, returning in failure"); return(CACKEY_PCSC_E_GENERIC); } static unsigned char *cackey_read_bertlv_tag(unsigned char *buffer, size_t *buffer_len_p, unsigned char tag, unsigned char *outbuffer, size_t *outbuffer_len_p) { unsigned char *buffer_p; size_t outbuffer_len, buffer_len; size_t size; int idx; CACKEY_DEBUG_PRINTF("Called."); if (buffer_len_p == NULL) { CACKEY_DEBUG_PRINTF("buffer_len_p is NULL. Returning in failure."); return(NULL); } if (outbuffer_len_p == NULL) { CACKEY_DEBUG_PRINTF("outbuffer_len_p is NULL. Returning in failure."); return(NULL); } buffer_len = *outbuffer_len_p; outbuffer_len = *outbuffer_len_p; if (buffer_len < 2) { CACKEY_DEBUG_PRINTF("buffer_len is less than 2, so we can't read any tag. Returning in failure."); return(NULL); } buffer_p = buffer; if (buffer_p[0] != tag) { CACKEY_DEBUG_PRINTF("Tag found was not tag expected. Tag = %02x, Expected = %02x. Returning in failure.", (unsigned int) buffer_p[0], tag); return(NULL); } buffer_p++; buffer_len--; if ((buffer_p[0] & 0x80) == 0x80) { size = 0; idx = (buffer_p[0] & 0x7f); if (idx > buffer_len) { CACKEY_DEBUG_PRINTF("Malformed BER value -- not enough bytes available to read length (idx = %i, buffer_len = %lu)", idx, (unsigned long) buffer_len); return(NULL); } for (; idx > 0; idx--) { buffer_p++; buffer_len--; size <<= 8; size |= buffer_p[0]; } } else { size = buffer_p[0]; } buffer_p++; buffer_len--; if (size > outbuffer_len) { CACKEY_DEBUG_PRINTF("Unable to copy value buffer to outbuffer, not enough room. Value buffer length = %lu, out buffer length = %lu", (unsigned long) size, (unsigned long) outbuffer_len); return(NULL); } *outbuffer_len_p = size; if (outbuffer) { memcpy(outbuffer, buffer_p, size); buffer_p += size; buffer_len -= size; *buffer_len_p = buffer_len; CACKEY_DEBUG_PRINTBUF("BER-TLV results:", outbuffer, size); } else { memmove(buffer, buffer_p, size); buffer_p = buffer; CACKEY_DEBUG_PRINTBUF("BER-TLV results:", buffer, size); } CACKEY_DEBUG_PRINTF("Returning in success. Size of contents for tag %02x is %lu", (unsigned int) tag, (unsigned long) size); return(buffer_p); } /* * SYNPOSIS * ssize_t cackey_get_data(struct cackey_slot *slot, unsigned char *buffer, size_t buffer_len, unsigned char oid[3]); * * ARGUMENTS * struct cackey_slot *slot * Slot to send commands to * * unsigned char *buffer * [OUT] Buffer * * size_t buffer_len * Number of bytes to attempt to read * * unsigned char oid[3] * 3-byte OID to read * * * RETURN VALUE * This function returns the number of bytes actually read, or -1 on error. * * NOTES * None * */ static ssize_t cackey_get_data(struct cackey_slot *slot, unsigned char *buffer, size_t buffer_len, unsigned char oid[3]) { unsigned char cmd[] = {0x5C, 0x03, 0x00, 0x00, 0x00}; unsigned char *buffer_p; size_t init_buffer_len, size; uint16_t respcode; int send_ret; CACKEY_DEBUG_PRINTF("Called."); init_buffer_len = buffer_len; cmd[2] = oid[0]; cmd[3] = oid[1]; cmd[4] = oid[2]; /* 256 to indicate the largest message size -- not clear if this will work with all messages */ send_ret = cackey_send_apdu(slot, GSCIS_CLASS_ISO7816, NISTSP800_73_3_INSTR_GET_DATA, 0x3F, 0xFF, sizeof(cmd), cmd, 256, &respcode, buffer, &buffer_len); if (send_ret == CACKEY_PCSC_E_RETRY) { CACKEY_DEBUG_PRINTF("ADPU Sending failed, retrying read buffer"); return(cackey_get_data(slot, buffer, init_buffer_len, oid)); } if (send_ret != CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("cackey_send_apdu() failed, returning in failure"); return(-1); } #ifdef CACKEY_PARANOID # ifdef _POSIX_SSIZE_MAX if (buffer_len > _POSIX_SSIZE_MAX) { CACKEY_DEBUG_PRINTF("Read bytes (buffer_len) exceeds maximum value, returning in failure. (max = %li, buffer_len = %lu)", (long) _POSIX_SSIZE_MAX, (unsigned long) buffer_len); return(-1); } # endif #endif if (buffer_len < 2) { CACKEY_DEBUG_PRINTF("APDU GET DATA returned %lu bytes, which is too short for a BER-TLV response", (unsigned long) buffer_len); return(-1); } size = buffer_len; buffer_p = cackey_read_bertlv_tag(buffer, &buffer_len, 0x53, NULL, &size); if (buffer_p == NULL) { CACKEY_DEBUG_PRINTF("Tag decoding failed, returning in error."); return(-1); } CACKEY_DEBUG_PRINTBUF("GET DATA result", buffer, size); CACKEY_DEBUG_PRINTF("Returning in success, read %lu bytes", (unsigned long) size); return(size); } /* * SYNPOSIS * ssize_t cackey_read_buffer(struct cackey_slot *slot, unsigned char *buffer, size_t count, unsigned char t_or_v, size_t initial_offset); * * ARGUMENTS * struct cackey_slot *slot |
︙ | ︙ | |||
2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 | if (free_start) { free(start); } return; } /* * SYNPOSIS * ... * * ARGUMENTS * ... * * RETURN VALUE * ... * * NOTES * ... * */ static struct cackey_pcsc_identity *cackey_read_certs(struct cackey_slot *slot, struct cackey_pcsc_identity *certs, unsigned long *count) { struct cackey_pcsc_identity *curr_id; struct cackey_tlv_entity *ccc_tlv, *ccc_curr, *app_tlv, *app_curr; | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | | | | | < < > | > | | | | | | > > > | < | < < | > | < | < < < | < < < < < < < | < | | < < < < < < < < < < < < < < < < > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | | | | | | | | | | > | > > > | | | | | | | | | | | > > | > > | > > > > | 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 | if (free_start) { free(start); } return; } static struct cackey_pcsc_identity *cackey_copy_certs(struct cackey_pcsc_identity *dest, struct cackey_pcsc_identity *start, size_t count) { size_t idx; if (start == NULL) { return(NULL); } if (dest == NULL) { dest = malloc(sizeof(*dest) * count); } for (idx = 0; idx < count; idx++) { dest[idx].id_type = start[idx].id_type; switch (dest[idx].id_type) { case CACKEY_ID_TYPE_CAC: memcpy(dest[idx].card.cac.applet, start[idx].card.cac.applet, sizeof(dest[idx].card.cac.applet)); dest[idx].card.cac.file = start[idx].card.cac.file; break; case CACKEY_ID_TYPE_PIV: dest[idx].card.piv.key_id = start[idx].card.piv.key_id; memcpy(dest[idx].card.piv.label, start[idx].card.piv.label, sizeof(dest[idx].card.piv.label)); break; case CACKEY_ID_TYPE_CERT_ONLY: break; } dest[idx].certificate_len = start[idx].certificate_len; dest[idx].keysize = start[idx].keysize; dest[idx].certificate = malloc(dest[idx].certificate_len); memcpy(dest[idx].certificate, start[idx].certificate, dest[idx].certificate_len); } return(dest); } /* * SYNPOSIS * ... * * ARGUMENTS * ... * * RETURN VALUE * ... * * NOTES * ... * */ static struct cackey_pcsc_identity *cackey_read_certs(struct cackey_slot *slot, struct cackey_pcsc_identity *certs, unsigned long *count) { struct cackey_pcsc_identity *curr_id; struct cackey_tlv_entity *ccc_tlv, *ccc_curr, *app_tlv, *app_curr; unsigned char ccc_aid[] = {GSCIS_AID_CCC}, piv_aid[] = {NISTSP800_73_3_PIV_AID}; unsigned char *piv_oid, piv_oid_pivauth[] = {NISTSP800_73_3_OID_PIVAUTH}, piv_oid_signature[] = {NISTSP800_73_3_OID_SIGNATURE}, piv_oid_keymgt[] = {NISTSP800_73_3_OID_KEYMGT}; unsigned char curr_aid[7]; unsigned char buffer[8192], *buffer_p, *tmpbuf; unsigned long outidx = 0; char *piv_label; cackey_ret transaction_ret; ssize_t read_ret; size_t buffer_len, tmpbuflen; int certs_resizable; int send_ret, select_ret; int piv_key, piv = 0; int idx; #ifdef HAVE_LIBZ int uncompress_ret; z_stream gzip_stream; #endif CACKEY_DEBUG_PRINTF("Called."); if (count == NULL) { CACKEY_DEBUG_PRINTF("count is NULL, returning in failure"); return(NULL); } if (certs != NULL) { if (*count == 0) { CACKEY_DEBUG_PRINTF("Requested we return 0 objects, short-circuit"); return(certs); } } if (!slot->slot_reset) { if (slot->cached_certs) { if (certs == NULL) { certs = malloc(sizeof(*certs) * slot->cached_certs_count); *count = slot->cached_certs_count; } else { if (*count > slot->cached_certs_count) { *count = slot->cached_certs_count; } } cackey_copy_certs(certs, slot->cached_certs, *count); return(certs); } } if (slot->cached_certs) { cackey_free_certs(slot->cached_certs, slot->cached_certs_count, 1); slot->cached_certs = NULL; } /* Begin a SmartCard transaction */ transaction_ret = cackey_begin_transaction(slot); if (transaction_ret != CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("Unable begin transaction, returning in failure"); return(NULL); } if (certs == NULL) { certs = malloc(sizeof(*certs) * 5); *count = 5; certs_resizable = 1; } else { certs_resizable = 0; } /* Select the CCC Applet */ send_ret = cackey_select_applet(slot, ccc_aid, sizeof(ccc_aid)); if (send_ret != CACKEY_PCSC_S_OK) { /* Try PIV application */ send_ret = cackey_select_applet(slot, piv_aid, sizeof(piv_aid)); if (send_ret == CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("We have a PIV card -- not using the CCC, pulling pre-selected keys"); piv = 1; } else { CACKEY_DEBUG_PRINTF("Unable to select CCC Applet, returning in failure"); /* Terminate SmartCard Transaction */ cackey_end_transaction(slot); return(NULL); } } if (piv) { for (idx = 0; idx < 3; idx++) { switch (idx) { case 0: piv_oid = piv_oid_pivauth; piv_key = NISTSP800_78_3_KEY_PIVAUTH; piv_label = "Authentication"; break; case 1: piv_oid = piv_oid_signature; piv_key = NISTSP800_78_3_KEY_SIGNATURE; piv_label = "Signature"; break; case 2: piv_oid = piv_oid_keymgt; piv_key = NISTSP800_78_3_KEY_KEYMGT; piv_label = "Key Management"; break; } read_ret = cackey_get_data(slot, buffer, sizeof(buffer), piv_oid); if (read_ret <= 0) { continue; } curr_id = &certs[outidx]; outidx++; curr_id->keysize = -1; curr_id->id_type = CACKEY_ID_TYPE_PIV; curr_id->card.piv.key_id = piv_key; memcpy(curr_id->card.piv.label, piv_label, strlen(piv_label) + 1); curr_id->certificate_len = read_ret; curr_id->certificate = malloc(curr_id->certificate_len); buffer_len = sizeof(buffer); buffer_p = cackey_read_bertlv_tag(buffer, &buffer_len, 0x70, curr_id->certificate, &curr_id->certificate_len); if (buffer_p == NULL) { CACKEY_DEBUG_PRINTF("Reading certificate from BER-TLV response failed, skipping key %i", idx); free(curr_id->certificate); curr_id->certificate = NULL; outidx--; continue; } #ifdef HAVE_LIBZ if (curr_id->certificate_len > 4) { if (memcmp(curr_id->certificate, "\x1f\x8b\x08\x00", 4) == 0) { tmpbuflen = curr_id->certificate_len * 2; tmpbuf = malloc(tmpbuflen); CACKEY_DEBUG_PRINTBUF("Attempting to decompress:", curr_id->certificate, curr_id->certificate_len); gzip_stream.zalloc = NULL; gzip_stream.zfree = NULL; gzip_stream.opaque = NULL; gzip_stream.next_in = curr_id->certificate; gzip_stream.avail_in = curr_id->certificate_len; gzip_stream.next_out = tmpbuf; gzip_stream.avail_out = tmpbuflen; uncompress_ret = inflateInit(&gzip_stream); if (uncompress_ret == Z_OK) { uncompress_ret = inflateReset2(&gzip_stream, 31); } if (uncompress_ret == Z_OK) { uncompress_ret = inflate(&gzip_stream, 0); } if (uncompress_ret == Z_STREAM_END) { uncompress_ret = inflateEnd(&gzip_stream); } else { uncompress_ret = Z_DATA_ERROR; } if (uncompress_ret == Z_OK) { tmpbuflen = gzip_stream.total_out; CACKEY_DEBUG_PRINTBUF("Decompressed to:", tmpbuf, tmpbuflen); free(curr_id->certificate); curr_id->certificate = tmpbuf; curr_id->certificate_len = tmpbuflen; } else { CACKEY_DEBUG_PRINTF("Decompressing failed! uncompress() returned %i", uncompress_ret); free(tmpbuf); } } } #endif } } else { /* Read all the applets from the CCC's TLV */ ccc_tlv = cackey_read_tlv(slot); /* Look for CARDURLs that coorespond to PKI applets */ for (ccc_curr = ccc_tlv; ccc_curr; ccc_curr = ccc_curr->_next) { CACKEY_DEBUG_PRINTF("Found tag: %s ... ", CACKEY_DEBUG_FUNC_TAG_TO_STR(ccc_curr->tag)); if (ccc_curr->tag != GSCIS_TAG_CARDURL) { CACKEY_DEBUG_PRINTF(" ... skipping it (we only care about CARDURLs)"); continue; } if ((ccc_curr->value_cardurl->apptype & CACKEY_TLV_APP_PKI) != CACKEY_TLV_APP_PKI) { CACKEY_DEBUG_PRINTF(" ... skipping it (we only care about PKI applets, this applet supports: %s/%02x)", CACKEY_DEBUG_FUNC_APPTYPE_TO_STR(ccc_curr->value_cardurl->apptype), (unsigned int) ccc_curr->value_cardurl->apptype); continue; } CACKEY_DEBUG_PRINTBUF("RID:", ccc_curr->value_cardurl->rid, sizeof(ccc_curr->value_cardurl->rid)); CACKEY_DEBUG_PRINTF("AppID = %s/%04lx", CACKEY_DEBUG_FUNC_OBJID_TO_STR(ccc_curr->value_cardurl->appid), (unsigned long) ccc_curr->value_cardurl->appid); CACKEY_DEBUG_PRINTF("ObjectID = %s/%04lx", CACKEY_DEBUG_FUNC_OBJID_TO_STR(ccc_curr->value_cardurl->objectid), (unsigned long) ccc_curr->value_cardurl->objectid); memcpy(curr_aid, ccc_curr->value_cardurl->rid, sizeof(ccc_curr->value_cardurl->rid)); curr_aid[sizeof(curr_aid) - 2] = (ccc_curr->value_cardurl->appid >> 8) & 0xff; curr_aid[sizeof(curr_aid) - 1] = ccc_curr->value_cardurl->appid & 0xff; /* Select found applet ... */ select_ret = cackey_select_applet(slot, curr_aid, sizeof(curr_aid)); if (select_ret != CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("Failed to select applet, skipping processing of this object"); continue; } /* ... and object (file) */ select_ret = cackey_select_file(slot, ccc_curr->value_cardurl->objectid); if (select_ret != CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("Failed to select file, skipping processing of this object"); continue; } /* Process this file's TLV looking for certificates */ app_tlv = cackey_read_tlv(slot); for (app_curr = app_tlv; app_curr; app_curr = app_curr->_next) { CACKEY_DEBUG_PRINTF("Found tag: %s", CACKEY_DEBUG_FUNC_TAG_TO_STR(app_curr->tag)); if (app_curr->tag != GSCIS_TAG_CERTIFICATE) { CACKEY_DEBUG_PRINTF(" ... skipping it (we only care about CERTIFICATEs)"); continue; } curr_id = &certs[outidx]; outidx++; curr_id->id_type = CACKEY_ID_TYPE_CAC; memcpy(curr_id->card.cac.applet, curr_aid, sizeof(curr_id->card.cac.applet)); curr_id->card.cac.file = ccc_curr->value_cardurl->objectid; curr_id->keysize = -1; CACKEY_DEBUG_PRINTF("Filling curr_id->card.cac.applet (%p) with %lu bytes:", curr_id->card.cac.applet, (unsigned long) sizeof(curr_id->card.cac.applet)); CACKEY_DEBUG_PRINTBUF("VAL:", curr_id->card.cac.applet, sizeof(curr_id->card.cac.applet)); curr_id->certificate_len = app_curr->length; curr_id->certificate = malloc(curr_id->certificate_len); memcpy(curr_id->certificate, app_curr->value, curr_id->certificate_len); if (outidx >= *count) { if (certs_resizable) { *count *= 2; if (*count != 0) { certs = realloc(certs, sizeof(*certs) * (*count)); } else { certs = NULL; } } else { break; } } } cackey_free_tlv(app_tlv); if (outidx >= *count) { break; } } cackey_free_tlv(ccc_tlv); } *count = outidx; if (certs_resizable) { if (*count != 0) { certs = realloc(certs, sizeof(*certs) * (*count)); } else { certs = NULL; } } slot->cached_certs = cackey_copy_certs(NULL, certs, *count); slot->cached_certs_count = *count; /* Terminate SmartCard Transaction */ cackey_end_transaction(slot); return(certs); } |
︙ | ︙ | |||
2277 2278 2279 2280 2281 2282 2283 | * ... * * NOTES * ... * */ static ssize_t cackey_signdecrypt(struct cackey_slot *slot, struct cackey_identity *identity, unsigned char *buf, size_t buflen, unsigned char *outbuf, size_t outbuflen, int padInput, int unpadOutput) { | > > | | | | 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 | * ... * * NOTES * ... * */ static ssize_t cackey_signdecrypt(struct cackey_slot *slot, struct cackey_identity *identity, unsigned char *buf, size_t buflen, unsigned char *outbuf, size_t outbuflen, int padInput, int unpadOutput) { cackey_pcsc_id_type id_type; unsigned char dyn_auth_template[10], *dyn_auth_tmpbuf; unsigned char *tmpbuf, *tmpbuf_s, *outbuf_s, *outbuf_p; unsigned char bytes_to_send, p1, class; unsigned char blocktype; cackey_ret send_ret; uint16_t respcode; ssize_t retval = 0, unpadoffset; size_t tmpbuflen, padlen, tmpoutbuflen, outbuf_len; int free_tmpbuf = 0; int le; CACKEY_DEBUG_PRINTF("Called."); if (slot == NULL) { CACKEY_DEBUG_PRINTF("Error. slot is NULL"); |
︙ | ︙ | |||
2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 | } if (identity->pcsc_identity == NULL) { CACKEY_DEBUG_PRINTF("Error. identity->pcsc_identity is NULL"); return(-1); } /* Determine identity Key size */ if (identity->pcsc_identity->keysize < 0) { identity->pcsc_identity->keysize = x509_to_keysize(identity->pcsc_identity->certificate, identity->pcsc_identity->certificate_len); } /* Pad message to key size */ | > > > > > > > > > > > > > > > > > | 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 | } if (identity->pcsc_identity == NULL) { CACKEY_DEBUG_PRINTF("Error. identity->pcsc_identity is NULL"); return(-1); } id_type = identity->pcsc_identity->id_type; if (id_type == CACKEY_ID_TYPE_CERT_ONLY) { CACKEY_DEBUG_PRINTF("Error. identity->pcsc_identity is CACKEY_ID_TYPE_CERT_ONLY, which cannot be used for sign/decrypt"); return(-1); } switch (id_type) { case CACKEY_ID_TYPE_PIV: case CACKEY_ID_TYPE_CAC: break; default: CACKEY_DEBUG_PRINTF("Error. identity->pcsc_identity is not a supported value. Type is: 0x%lx (PIV = 0x%lx, CAC = 0x%lx)", (unsigned long) id_type, (unsigned long) CACKEY_ID_TYPE_PIV, (unsigned long) CACKEY_ID_TYPE_CAC); return(-1); } /* Determine identity Key size */ if (identity->pcsc_identity->keysize < 0) { identity->pcsc_identity->keysize = x509_to_keysize(identity->pcsc_identity->certificate, identity->pcsc_identity->certificate_len); } /* Pad message to key size */ |
︙ | ︙ | |||
2374 2375 2376 2377 2378 2379 2380 | padlen = 0; } /* Begin transaction */ cackey_begin_transaction(slot); /* Select correct applet */ | > > | | | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | > > > > > > > > | | | < | | | < < | > | > > > > > > > | > > > > | > > > > > > > > > > | > > > | > | 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 | padlen = 0; } /* Begin transaction */ cackey_begin_transaction(slot); /* Select correct applet */ switch (id_type) { case CACKEY_ID_TYPE_CAC: CACKEY_DEBUG_PRINTF("Selecting applet found at %p ...", identity->pcsc_identity->card.cac.applet); cackey_select_applet(slot, identity->pcsc_identity->card.cac.applet, sizeof(identity->pcsc_identity->card.cac.applet)); /* Select correct file */ cackey_select_file(slot, identity->pcsc_identity->card.cac.file); break; case CACKEY_ID_TYPE_PIV: dyn_auth_template[0] = 0x7C; dyn_auth_template[1] = 0x82; dyn_auth_template[2] = ((tmpbuflen + 6) & 0xff00) >> 8; dyn_auth_template[3] = (tmpbuflen + 6) & 0x00ff; dyn_auth_template[4] = 0x82; dyn_auth_template[5] = 0x00; dyn_auth_template[6] = 0x81; dyn_auth_template[7] = 0x82; dyn_auth_template[8] = (tmpbuflen & 0xff00) >> 8; dyn_auth_template[9] = tmpbuflen & 0x00ff; dyn_auth_tmpbuf = malloc(tmpbuflen + sizeof(dyn_auth_template)); memcpy(dyn_auth_tmpbuf, dyn_auth_template, sizeof(dyn_auth_template)); memcpy(dyn_auth_tmpbuf + sizeof(dyn_auth_template), tmpbuf, tmpbuflen); if (free_tmpbuf) { free(tmpbuf); } tmpbuflen += sizeof(dyn_auth_template); tmpbuf = dyn_auth_tmpbuf; free_tmpbuf = 1; break; case CACKEY_ID_TYPE_CERT_ONLY: break; } tmpbuf_s = tmpbuf; outbuf_s = outbuf; while (tmpbuflen) { tmpoutbuflen = outbuflen; if (tmpbuflen > CACKEY_APDU_MTU) { bytes_to_send = CACKEY_APDU_MTU; } else { bytes_to_send = tmpbuflen; } send_ret = CACKEY_PCSC_E_GENERIC; switch (id_type) { case CACKEY_ID_TYPE_CAC: if (tmpbuflen > CACKEY_APDU_MTU) { p1 = 0x80; le = 0x00; } else { p1 = 0x00; le = 0x00; } send_ret = cackey_send_apdu(slot, GSCIS_CLASS_GLOBAL_PLATFORM, GSCIS_INSTR_SIGNDECRYPT, p1, 0x00, bytes_to_send, tmpbuf, le, &respcode, outbuf, &tmpoutbuflen); break; case CACKEY_ID_TYPE_PIV: if (tmpbuflen > CACKEY_APDU_MTU) { class = 0x10; le = 0x00; } else { class = GSCIS_CLASS_ISO7816; le = 256; } send_ret = cackey_send_apdu(slot, class, NISTSP800_73_3_INSTR_GENAUTH, NISTSP800_78_3_ALGO_RSA2048, identity->pcsc_identity->card.piv.key_id, bytes_to_send, tmpbuf, le, &respcode, outbuf, &tmpoutbuflen); break; case CACKEY_ID_TYPE_CERT_ONLY: break; } if (send_ret != CACKEY_PCSC_S_OK) { if (free_tmpbuf) { if (tmpbuf_s) { free(tmpbuf_s); } } /* End transaction */ cackey_end_transaction(slot); if (send_ret == CACKEY_PCSC_E_RETRY) { CACKEY_DEBUG_PRINTF("ADPU Sending Failed -- retrying."); return(cackey_signdecrypt(slot, identity, buf, buflen, outbuf, outbuflen, padInput, unpadOutput)); } CACKEY_DEBUG_PRINTF("ADPU Sending Failed -- returning in error."); if (respcode == 0x6982 || respcode == 0x6e00) { if (respcode == 0x6E00) { CACKEY_DEBUG_PRINTF("Got \"WRONG CLASS\", this means we are talking to the wrong object (likely because the card went away) -- resetting"); } else { CACKEY_DEBUG_PRINTF("Security status not satisified (respcode = 0x%04x). Returning NEEDLOGIN", (int) respcode); } cackey_mark_slot_reset(slot); return(CACKEY_PCSC_E_NEEDLOGIN); } if (send_ret == CACKEY_PCSC_E_TOKENABSENT) { |
︙ | ︙ | |||
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 | if (outbuflen > _POSIX_SSIZE_MAX) { CACKEY_DEBUG_PRINTF("Outbuflen exceeds maximum value, returning in failure. (max = %li, outbuflen = %lu)", (long) _POSIX_SSIZE_MAX, (unsigned long) outbuflen); return(-1); } # endif #endif /* Unpad reply */ if (unpadOutput) { if (retval < 3) { CACKEY_DEBUG_PRINTF("Reply is too small, we are not able to unpad -- passing back and hoping for the best!"); CACKEY_DEBUG_PRINTF("Returning in success, retval = %li (bytes)", (long) retval); | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 | if (outbuflen > _POSIX_SSIZE_MAX) { CACKEY_DEBUG_PRINTF("Outbuflen exceeds maximum value, returning in failure. (max = %li, outbuflen = %lu)", (long) _POSIX_SSIZE_MAX, (unsigned long) outbuflen); return(-1); } # endif #endif /* We must remove the "7C" tag to get to the signature */ switch (id_type) { case CACKEY_ID_TYPE_PIV: outbuf_len = retval; outbuf_p = cackey_read_bertlv_tag(outbuf, &outbuf_len, 0x7C, NULL, &outbuf_len); if (outbuf_p == NULL) { CACKEY_DEBUG_PRINTF("Response from PIV for GENERATE AUTHENTICATION was not a 0x7C tag, returning in failure"); return(-1); } retval = outbuf_len; outbuf_len = retval; outbuf_p = cackey_read_bertlv_tag(outbuf, &outbuf_len, 0x82, NULL, &outbuf_len); if (outbuf_p == NULL) { CACKEY_DEBUG_PRINTF("Response from PIV for GENERATE AUTHENTICATION was not a 0x82 within a 0x7C tag, returning in failure"); return(-1); } retval = outbuf_len; break; case CACKEY_ID_TYPE_CAC: case CACKEY_ID_TYPE_CERT_ONLY: break; } /* Unpad reply */ if (unpadOutput) { if (retval < 3) { CACKEY_DEBUG_PRINTF("Reply is too small, we are not able to unpad -- passing back and hoping for the best!"); CACKEY_DEBUG_PRINTF("Returning in success, retval = %li (bytes)", (long) retval); |
︙ | ︙ | |||
2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 | * ... * * NOTES * ... * */ static cackey_ret cackey_login(struct cackey_slot *slot, unsigned char *pin, unsigned long pin_len, int *tries_remaining_p) { unsigned char cac_pin[8] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; uint16_t response_code; int tries_remaining; int send_ret; /* Indicate that we do not know about how many tries are remaining */ if (tries_remaining_p) { *tries_remaining_p = -1; } /* Apparently, CAC PINs are *EXACTLY* 8 bytes long -- pad with 0xFF if too short */ if (pin_len >= 8) { memcpy(cac_pin, pin, 8); } else { memcpy(cac_pin, pin, pin_len); } /* Issue PIN Verify */ | > > > > > > > > > > > > > > > > > > > > > > > > > > | > | 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 | * ... * * NOTES * ... * */ static cackey_ret cackey_login(struct cackey_slot *slot, unsigned char *pin, unsigned long pin_len, int *tries_remaining_p) { struct cackey_pcsc_identity *pcsc_identities; unsigned char cac_pin[8] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; unsigned long num_certs; uint16_t response_code; int tries_remaining; int send_ret; int key_reference = 0x00; /* Indicate that we do not know about how many tries are remaining */ if (tries_remaining_p) { *tries_remaining_p = -1; } /* Apparently, CAC PINs are *EXACTLY* 8 bytes long -- pad with 0xFF if too short */ if (pin_len >= 8) { memcpy(cac_pin, pin, 8); } else { memcpy(cac_pin, pin, pin_len); } /* Reject PINs which are too short */ if (pin_len < 5) { CACKEY_DEBUG_PRINTF("Rejecting PIN which is too short (length = %lu, must be atleast 5)", pin_len); return(CACKEY_PCSC_E_BADPIN); } /* PIV authentication uses a "key_reference" of 0x80 */ pcsc_identities = cackey_read_certs(slot, NULL, &num_certs); if (num_certs > 0 && pcsc_identities != NULL) { switch (pcsc_identities[0].id_type) { case CACKEY_ID_TYPE_PIV: CACKEY_DEBUG_PRINTF("We have PIV card, so we will attempt to authenticate using the PIV Application key reference"); key_reference = 0x80; break; default: break; } cackey_free_certs(pcsc_identities, num_certs, 1); } /* Issue PIN Verify */ send_ret = cackey_send_apdu(slot, GSCIS_CLASS_ISO7816, GSCIS_INSTR_VERIFY, 0x00, key_reference, sizeof(cac_pin), cac_pin, 0x00, &response_code, NULL, NULL); if (send_ret != CACKEY_PCSC_S_OK) { if ((response_code & 0x63C0) == 0x63C0) { tries_remaining = (response_code & 0xF); CACKEY_DEBUG_PRINTF("PIN Verification failed, %i tries remaining", tries_remaining); if (tries_remaining_p) { |
︙ | ︙ | |||
2613 2614 2615 2616 2617 2618 2619 | * * NOTES * ... * */ static cackey_ret cackey_token_present(struct cackey_slot *slot) { cackey_ret pcsc_connect_ret; | | > > > > > > > > > > | < < < | 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 | * * NOTES * ... * */ static cackey_ret cackey_token_present(struct cackey_slot *slot) { cackey_ret pcsc_connect_ret; DWORD reader_len = 0, state = 0, protocol = 0, atr_len; BYTE atr[MAX_ATR_SIZE]; LONG status_ret, scard_reconn_ret; CACKEY_DEBUG_PRINTF("Called."); if (slot->internal) { CACKEY_DEBUG_PRINTF("Returning token present (internal token)"); return(CACKEY_PCSC_S_TOKENPRESENT); } pcsc_connect_ret = cackey_connect_card(slot); if (pcsc_connect_ret != CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("Unable to connect to card, returning token absent"); return(CACKEY_PCSC_E_TOKENABSENT); } CACKEY_DEBUG_PRINTF("Calling SCardStatus() to determine card status"); atr_len = sizeof(atr); status_ret = SCardStatus(slot->pcsc_card, NULL, &reader_len, &state, &protocol, atr, &atr_len); if (status_ret == SCARD_E_INVALID_HANDLE) { CACKEY_DEBUG_PRINTF("SCardStatus() returned SCARD_E_INVALID_HANDLE, marking is not already connected and trying again"); cackey_mark_slot_reset(slot); pcsc_connect_ret = cackey_connect_card(slot); if (pcsc_connect_ret != CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("Unable to connect to card, returning token absent"); return(CACKEY_PCSC_E_TOKENABSENT); } CACKEY_DEBUG_PRINTF("Calling SCardStatus() again"); atr_len = sizeof(atr); status_ret = SCardStatus(slot->pcsc_card, NULL, &reader_len, &state, &protocol, atr, &atr_len); } if (status_ret != SCARD_S_SUCCESS) { cackey_mark_slot_reset(slot); if (status_ret == SCARD_W_RESET_CARD) { CACKEY_DEBUG_PRINTF("Reset required, please hold..."); scard_reconn_ret = cackey_reconnect_card(slot, SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1); if (scard_reconn_ret == SCARD_S_SUCCESS) { /* Re-establish transaction, if it was present */ if (slot->transaction_depth > 0) { slot->transaction_depth--; slot->transaction_need_hw_lock = 1; cackey_begin_transaction(slot); } |
︙ | ︙ | |||
2984 2985 2986 2987 2988 2989 2990 | CACKEY_DEBUG_PRINTF(" ... returning %lu (%p/%lu)", (unsigned long) *((CK_BBOOL *) pValue), pValue, (unsigned long) ulValueLen); break; case CKA_LABEL: CACKEY_DEBUG_PRINTF("Requesting attribute CKA_LABEL (0x%08lx) ...", (unsigned long) curr_attr_type); | > > > | | | | | | > | 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 | CACKEY_DEBUG_PRINTF(" ... returning %lu (%p/%lu)", (unsigned long) *((CK_BBOOL *) pValue), pValue, (unsigned long) ulValueLen); break; case CKA_LABEL: CACKEY_DEBUG_PRINTF("Requesting attribute CKA_LABEL (0x%08lx) ...", (unsigned long) curr_attr_type); if (identity->id_type == CACKEY_ID_TYPE_PIV) { pValue = identity->card.piv.label; ulValueLen = strlen(pValue); } else { ulValueLen = snprintf((char *) ucTmpBuf, sizeof(ucTmpBuf), "Identity #%lu", (unsigned long) identity_num); pValue = ucTmpBuf; if (ulValueLen >= sizeof(ucTmpBuf)) { ulValueLen = 0; pValue = NULL; } } CACKEY_DEBUG_PRINTF(" ... returning (%p/%lu)", pValue, (unsigned long) ulValueLen); break; case CKA_VALUE: CACKEY_DEBUG_PRINTF("Requesting attribute CKA_VALUE (0x%08lx) ...", (unsigned long) curr_attr_type); |
︙ | ︙ | |||
3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 | cackey_free_certs(identities[id_idx].pcsc_identity, 1, 1); } } free(identities); } static struct cackey_identity *cackey_read_identities(struct cackey_slot *slot, unsigned long *ids_found) { struct cackey_pcsc_identity *pcsc_identities; struct cackey_identity *identities; unsigned long num_ids, id_idx, curr_id_type; | > > > > > > > > > > > > > > > > > > > > > > > > | | > > | > > | > > > > | > | > > > > > > > > > > > > > > > > > | > > | | > > > > > > > | | | | < | > | > > > > > > > > < < < < < | < < < | < < | < < < | > | 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 | cackey_free_certs(identities[id_idx].pcsc_identity, 1, 1); } } free(identities); } static unsigned long cackey_read_dod_identities(struct cackey_identity *identities, unsigned long num_dod_certs) { unsigned long cert_idx, id_idx = 0; if (identities == NULL) { return(num_dod_certs * 3); } for (cert_idx = 0; cert_idx < num_dod_certs; cert_idx++) { identities[id_idx].pcsc_identity = NULL; identities[id_idx].attributes = cackey_get_attributes(CKO_CERTIFICATE, &extra_certs[cert_idx], 0xf000 | cert_idx, &identities[id_idx].attributes_count); id_idx++; identities[id_idx].pcsc_identity = NULL; identities[id_idx].attributes = cackey_get_attributes(CKO_PUBLIC_KEY, &extra_certs[cert_idx], 0xf000 | cert_idx, &identities[id_idx].attributes_count); id_idx++; identities[id_idx].pcsc_identity = NULL; identities[id_idx].attributes = cackey_get_attributes(CKO_NETSCAPE_TRUST, &extra_certs[cert_idx], 0xf000 | cert_idx, &identities[id_idx].attributes_count); id_idx++; } return(id_idx); } static struct cackey_identity *cackey_read_identities(struct cackey_slot *slot, unsigned long *ids_found) { struct cackey_pcsc_identity *pcsc_identities; struct cackey_identity *identities; unsigned long num_ids, id_idx, curr_id_type; unsigned long num_certs, num_dod_certs, cert_idx; int include_extra_certs = 0, include_dod_certs; CACKEY_DEBUG_PRINTF("Called."); if (ids_found == NULL) { CACKEY_DEBUG_PRINTF("Error. ids_found is NULL"); return(NULL); } #ifdef CACKEY_CARD_SLOT_INCLUDE_EXTRA_CERTS include_extra_certs = 1; #endif if (getenv("CACKEY_DOD_CERTS_ON_HW_SLOTS") != NULL) { include_extra_certs = 1; } if (getenv("CACKEY_NO_DOD_CERTS_ON_HW_SLOTS") != NULL) { include_extra_certs = 0; } #ifdef CACKEY_NO_EXTRA_CERTS if (getenv("CACKEY_EXTRA_CERTS") != NULL) { include_dod_certs = 1; } else { include_dod_certs = 0; } #else if (getenv("CACKEY_NO_EXTRA_CERTS") != NULL) { include_dod_certs = 0; } else { include_dod_certs = 1; } #endif if (include_dod_certs) { num_dod_certs = sizeof(extra_certs) / sizeof(extra_certs[0]); } else { num_dod_certs = 0; } if (slot->internal) { num_ids = cackey_read_dod_identities(NULL, num_dod_certs); if (num_ids != 0) { identities = malloc(num_ids * sizeof(*identities)); cackey_read_dod_identities(identities, num_dod_certs); } else { identities = NULL; } *ids_found = num_ids; return(identities); } pcsc_identities = cackey_read_certs(slot, NULL, &num_certs); if (pcsc_identities != NULL) { /* Convert number of Certs to number of objects */ num_ids = (CKO_PRIVATE_KEY - CKO_CERTIFICATE + 1) * num_certs; if (include_extra_certs) { num_ids += cackey_read_dod_identities(NULL, num_dod_certs); } identities = malloc(num_ids * sizeof(*identities)); /* Add certificates, public keys, and private keys from the smartcard */ id_idx = 0; for (cert_idx = 0; cert_idx < num_certs; cert_idx++) { for (curr_id_type = CKO_CERTIFICATE; curr_id_type <= CKO_PRIVATE_KEY; curr_id_type++) { identities[id_idx].attributes = cackey_get_attributes(curr_id_type, &pcsc_identities[cert_idx], cert_idx, &identities[id_idx].attributes_count); identities[id_idx].pcsc_identity = malloc(sizeof(*identities[id_idx].pcsc_identity)); memcpy(identities[id_idx].pcsc_identity, &pcsc_identities[cert_idx], sizeof(*identities[id_idx].pcsc_identity)); identities[id_idx].pcsc_identity->certificate = malloc(pcsc_identities[cert_idx].certificate_len); memcpy(identities[id_idx].pcsc_identity->certificate, pcsc_identities[cert_idx].certificate, pcsc_identities[cert_idx].certificate_len); id_idx++; } } if (include_extra_certs) { CACKEY_DEBUG_PRINTF("Including US Government Certificates on hardware slot"); cackey_read_dod_identities(identities + id_idx, num_dod_certs); } cackey_free_certs(pcsc_identities, num_certs, 1); *ids_found = num_ids; return(identities); } *ids_found = 0; return(NULL); } CK_DEFINE_FUNCTION(CK_RV, C_Initialize)(CK_VOID_PTR pInitArgs) { CK_C_INITIALIZE_ARGS CK_PTR args; uint32_t idx, highest_slot; int mutex_init_ret; int include_dod_certs; CACKEY_DEBUG_PRINTF("Called."); if (cackey_initialized) { CACKEY_DEBUG_PRINTF("Error. Already initialized."); return(CKR_CRYPTOKI_ALREADY_INITIALIZED); |
︙ | ︙ | |||
3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 | cackey_slots[idx].active = 0; cackey_slots[idx].pcsc_reader = NULL; cackey_slots[idx].transaction_depth = 0; cackey_slots[idx].transaction_need_hw_lock = 0; cackey_slots[idx].slot_reset = 0; cackey_slots[idx].token_flags = 0; cackey_slots[idx].label = NULL; } cackey_initialized = 1; if (!cackey_biglock_init) { mutex_init_ret = cackey_mutex_create(&cackey_biglock); if (mutex_init_ret != 0) { CACKEY_DEBUG_PRINTF("Error. Mutex initialization failed."); return(CKR_CANT_LOCK); } cackey_biglock_init = 1; } CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i)", CKR_OK); return(CKR_OK); } CK_DEFINE_FUNCTION(CK_RV, C_Finalize)(CK_VOID_PTR pReserved) { | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 | cackey_slots[idx].active = 0; cackey_slots[idx].pcsc_reader = NULL; cackey_slots[idx].transaction_depth = 0; cackey_slots[idx].transaction_need_hw_lock = 0; cackey_slots[idx].slot_reset = 0; cackey_slots[idx].token_flags = 0; cackey_slots[idx].label = NULL; cackey_slots[idx].internal = 0; } #ifdef CACKEY_NO_EXTRA_CERTS if (getenv("CACKEY_EXTRA_CERTS") != NULL) { include_dod_certs = 1; } else { include_dod_certs = 0; } #else if (getenv("CACKEY_NO_EXTRA_CERTS") != NULL) { include_dod_certs = 0; } else { include_dod_certs = 1; } #endif if (include_dod_certs == 0) { CACKEY_DEBUG_PRINTF("Asked not to include DoD certificates"); } else { highest_slot = (sizeof(cackey_slots) / sizeof(cackey_slots[0])) - 1; CACKEY_DEBUG_PRINTF("Including DoD certs in slot %lu", (unsigned long) highest_slot); cackey_slots[highest_slot].active = 1; cackey_slots[highest_slot].internal = 1; cackey_slots[highest_slot].label = (unsigned char *) "US Government Certificates"; cackey_slots[highest_slot].pcsc_reader = "CACKey"; cackey_slots[highest_slot].token_flags = 0; } cackey_initialized = 1; if (!cackey_biglock_init) { mutex_init_ret = cackey_mutex_create(&cackey_biglock); if (mutex_init_ret != 0) { CACKEY_DEBUG_PRINTF("Error. Mutex initialization failed."); return(CKR_CANT_LOCK); } cackey_biglock_init = 1; } /* Define a command to prompt user for a PIN */ #ifdef CACKEY_PIN_COMMAND_DEFAULT cackey_pin_command = CACKEY_PIN_COMMAND_DEFAULT_XSTR(CACKEY_PIN_COMMAND_DEFAULT); #endif #ifdef CACKEY_PIN_COMMAND_XONLY_DEFAULT if (getenv("DISPLAY") != NULL) { cackey_pin_command = CACKEY_PIN_COMMAND_DEFAULT_XSTR(CACKEY_PIN_COMMAND_XONLY_DEFAULT); } #endif if (getenv("CACKEY_PIN_COMMAND") != NULL) { cackey_pin_command = getenv("CACKEY_PIN_COMMAND"); } if (getenv("CACKEY_PIN_COMMAND_XONLY") != NULL && getenv("DISPLAY") != NULL) { cackey_pin_command = getenv("CACKEY_PIN_COMMAND_XONLY"); } CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i)", CKR_OK); return(CKR_OK); } CK_DEFINE_FUNCTION(CK_RV, C_Finalize)(CK_VOID_PTR pReserved) { |
︙ | ︙ | |||
3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 | C_CloseSession(idx); } } cackey_slots_disconnect_all(); for (idx = 0; idx < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); idx++) { if (cackey_slots[idx].pcsc_reader) { free(cackey_slots[idx].pcsc_reader); } } cackey_pcsc_disconnect(); cackey_initialized = 0; CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i)", CKR_OK); | > > > > > > > > > > | 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 | C_CloseSession(idx); } } cackey_slots_disconnect_all(); for (idx = 0; idx < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); idx++) { if (cackey_slots[idx].internal) { continue; } if (cackey_slots[idx].pcsc_reader) { free(cackey_slots[idx].pcsc_reader); } if (cackey_slots[idx].cached_certs) { cackey_free_certs(cackey_slots[idx].cached_certs, cackey_slots[idx].cached_certs_count, 1); cackey_slots[idx].cached_certs = NULL; } } cackey_pcsc_disconnect(); cackey_initialized = 0; CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i)", CKR_OK); |
︙ | ︙ | |||
3637 3638 3639 3640 3641 3642 3643 3644 3645 | return(CKR_OK); } /* * Process list of readers, and create mapping between reader name and slot ID */ CK_DEFINE_FUNCTION(CK_RV, C_GetSlotList)(CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) { int mutex_retval; int pcsc_connect_ret; | > | > | 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 | return(CKR_OK); } /* * Process list of readers, and create mapping between reader name and slot ID */ CK_DEFINE_FUNCTION(CK_RV, C_GetSlotList)(CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) { static int first_call = 1; int mutex_retval; int pcsc_connect_ret; CK_ULONG count, slot_count = 0, currslot, slot_idx; char *pcsc_readers, *pcsc_readers_s, *pcsc_readers_e; DWORD pcsc_readers_len; LONG scard_listreaders_ret; size_t curr_reader_len; int slot_reset; CACKEY_DEBUG_PRINTF("Called."); if (pulCount == NULL) { CACKEY_DEBUG_PRINTF("Error. pulCount is NULL."); return(CKR_ARGUMENTS_BAD); |
︙ | ︙ | |||
3667 3668 3669 3670 3671 3672 3673 3674 | if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Locking failed."); return(CKR_GENERAL_ERROR); } /* Clear list of slots */ if (pSlotList) { | > > > > > > > > > > > > > > > > > > > > > > > > > | | | | > > > > | | | | | | | | | > > > > | 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 | if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Locking failed."); return(CKR_GENERAL_ERROR); } /* Clear list of slots */ slot_reset = 0; if (pSlotList) { if (first_call) { first_call = 0; slot_reset = 1; } /* If any of the slots have been reset then purge all information and check again */ for (currslot = 0; currslot < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); currslot++) { if (cackey_slots[currslot].internal) { continue; } if (!cackey_slots[currslot].active) { continue; } if (cackey_slots[currslot].slot_reset) { slot_reset = 1; break; } } if (slot_reset) { CACKEY_DEBUG_PRINTF("Purging all slot information."); /* Only update the list of slots if we are actually being supply the slot information */ cackey_slots_disconnect_all(); for (currslot = 0; currslot < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); currslot++) { if (cackey_slots[currslot].internal) { continue; } if (cackey_slots[currslot].pcsc_reader) { free(cackey_slots[currslot].pcsc_reader); cackey_slots[currslot].pcsc_reader = NULL; } if (cackey_slots[currslot].label) { free(cackey_slots[currslot].label); cackey_slots[currslot].label = NULL; } cackey_slots[currslot].active = 0; } } else { } } /* Determine list of readers */ pcsc_connect_ret = cackey_pcsc_connect(); /* XXX: CAN HANG HERE ! */ if (pcsc_connect_ret != CACKEY_PCSC_S_OK) { CACKEY_DEBUG_PRINTF("Connection to PC/SC failed, assuming no slots"); slot_count = 0; } else { pcsc_readers_len = 0; |
︙ | ︙ | |||
3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 | scard_listreaders_ret = SCardListReaders(*cackey_pcsc_handle, NULL, pcsc_readers, &pcsc_readers_len); if (scard_listreaders_ret == SCARD_S_SUCCESS) { pcsc_readers_e = pcsc_readers + pcsc_readers_len; /* Start with Slot ID 1, to avoid a bug in GDM on RHEL */ /* Bug 594911: https://bugzilla.redhat.com/show_bug.cgi?id=594911 */ currslot = 1; while (pcsc_readers < pcsc_readers_e) { curr_reader_len = strlen(pcsc_readers); if ((pcsc_readers + curr_reader_len) > pcsc_readers_e) { break; } if (curr_reader_len == 0) { break; } if (currslot >= (sizeof(cackey_slots) / sizeof(cackey_slots[0]))) { CACKEY_DEBUG_PRINTF("Found more readers than slots are available!"); break; } | > > > > > > > > | > | > | | | | | | | > > > > > > > > | < | > | < | > | 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 | scard_listreaders_ret = SCardListReaders(*cackey_pcsc_handle, NULL, pcsc_readers, &pcsc_readers_len); if (scard_listreaders_ret == SCARD_S_SUCCESS) { pcsc_readers_e = pcsc_readers + pcsc_readers_len; /* Start with Slot ID 1, to avoid a bug in GDM on RHEL */ /* Bug 594911: https://bugzilla.redhat.com/show_bug.cgi?id=594911 */ currslot = 1; slot_count = 0; while (pcsc_readers < pcsc_readers_e) { /* Find next available slot */ for (; currslot < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); currslot++) { if (!cackey_slots[currslot].active) { break; } } curr_reader_len = strlen(pcsc_readers); if ((pcsc_readers + curr_reader_len) > pcsc_readers_e) { break; } if (curr_reader_len == 0) { break; } if (currslot >= (sizeof(cackey_slots) / sizeof(cackey_slots[0]))) { CACKEY_DEBUG_PRINTF("Found more readers than slots are available!"); break; } CACKEY_DEBUG_PRINTF("Found reader: %s (currslot = %lu)", pcsc_readers, (unsigned long) currslot); /* Only update the list of slots if we are actually being asked supply the slot information */ if (pSlotList) { if (slot_reset) { cackey_slots[currslot].active = 1; cackey_slots[currslot].internal = 0; cackey_slots[currslot].pcsc_reader = strdup(pcsc_readers); cackey_slots[currslot].pcsc_card_connected = 0; cackey_slots[currslot].transaction_depth = 0; cackey_slots[currslot].transaction_need_hw_lock = 0; cackey_slots[currslot].token_flags = 0; cackey_slots[currslot].label = NULL; cackey_mark_slot_reset(&cackey_slots[currslot]); } } else { if (!cackey_slots[currslot].active) { /* Artificially increase the number of active slots by what will become active */ CACKEY_DEBUG_PRINTF("Found in-active slot %lu, but it will be active after a reset -- marking as active for accounting purposes", (unsigned long) currslot); slot_count++; } } currslot++; pcsc_readers += curr_reader_len + 1; } for (currslot = 0; currslot < (sizeof(cackey_slots) / sizeof(cackey_slots[0])); currslot++) { if (cackey_slots[currslot].active) { CACKEY_DEBUG_PRINTF("Found active slot %lu, reader = %s", (unsigned long) currslot, cackey_slots[currslot].pcsc_reader); slot_count++; } } } else { CACKEY_DEBUG_PRINTF("Second call to SCardListReaders failed, return %s/%li", CACKEY_DEBUG_FUNC_SCARDERR_TO_STR(scard_listreaders_ret), (long) scard_listreaders_ret); } free(pcsc_readers_s); } else { |
︙ | ︙ | |||
3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 | return(CKR_OK); } count = *pulCount; if (count < slot_count) { CACKEY_DEBUG_PRINTF("Error. User allocated %lu entries, but we have %lu entries.", count, slot_count); return(CKR_BUFFER_TOO_SMALL); } | > > > > > | > > | > > > > > | > > > > > > | > > > > > > > > | 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 | return(CKR_OK); } count = *pulCount; if (count < slot_count) { CACKEY_DEBUG_PRINTF("Error. User allocated %lu entries, but we have %lu entries.", count, slot_count); CACKEY_DEBUG_PRINTF("Returning CKR_BUFFER_TOO_SMALL"); return(CKR_BUFFER_TOO_SMALL); } mutex_retval = cackey_mutex_lock(cackey_biglock); if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Locking failed."); return(CKR_GENERAL_ERROR); } slot_idx = 0; for (currslot = 0; (currslot < (sizeof(cackey_slots) / sizeof(cackey_slots[0]))); currslot++) { if (!cackey_slots[currslot].active) { continue; } if (slot_idx >= count) { CACKEY_DEBUG_PRINTF("Error. User allocated %lu entries, but we just tried to write to the %lu index -- ignoring", count, slot_idx); continue; } pSlotList[slot_idx] = currslot; slot_idx++; } mutex_retval = cackey_mutex_unlock(cackey_biglock); if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Unlocking failed."); return(CKR_GENERAL_ERROR); } *pulCount = slot_count; CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i). Found %lu readers.", CKR_OK, (unsigned long) slot_count); return(CKR_OK); |
︙ | ︙ | |||
3852 3853 3854 3855 3856 3857 3858 | CACKEY_DEBUG_PRINTF("Error. Invalid slot requested (%lu), slot not currently active", slotID); cackey_mutex_unlock(cackey_biglock); return(CKR_SLOT_ID_INVALID); } | | > > > > | 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 | CACKEY_DEBUG_PRINTF("Error. Invalid slot requested (%lu), slot not currently active", slotID); cackey_mutex_unlock(cackey_biglock); return(CKR_SLOT_ID_INVALID); } pInfo->flags = CKF_HW_SLOT; if (!cackey_slots[slotID].internal) { pInfo->flags |= CKF_REMOVABLE_DEVICE; } if (cackey_token_present(&cackey_slots[slotID]) == CACKEY_PCSC_S_TOKENPRESENT) { pInfo->flags |= CKF_TOKEN_PRESENT; } bytes_to_copy = strlen(cackey_slots[slotID].pcsc_reader); if (sizeof(pInfo->manufacturerID) < bytes_to_copy) { |
︙ | ︙ | |||
3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 | pInfo->hardwareVersion.major = (cackey_getversion() >> 16) & 0xff; pInfo->hardwareVersion.minor = (cackey_getversion() >> 8) & 0xff; pInfo->firmwareVersion.major = 0x00; pInfo->firmwareVersion.minor = 0x00; pInfo->flags = CKF_WRITE_PROTECTED | CKF_USER_PIN_INITIALIZED | CKF_TOKEN_INITIALIZED | cackey_slots[slotID].token_flags; pInfo->ulMaxSessionCount = (sizeof(cackey_sessions) / sizeof(cackey_sessions[0])) - 1; pInfo->ulSessionCount = CK_UNAVAILABLE_INFORMATION; pInfo->ulMaxRwSessionCount = 0; pInfo->ulRwSessionCount = CK_UNAVAILABLE_INFORMATION; pInfo->ulMaxPinLen = 128; pInfo->ulMinPinLen = 0; | > > > > | 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 | pInfo->hardwareVersion.major = (cackey_getversion() >> 16) & 0xff; pInfo->hardwareVersion.minor = (cackey_getversion() >> 8) & 0xff; pInfo->firmwareVersion.major = 0x00; pInfo->firmwareVersion.minor = 0x00; pInfo->flags = CKF_WRITE_PROTECTED | CKF_USER_PIN_INITIALIZED | CKF_TOKEN_INITIALIZED | cackey_slots[slotID].token_flags; if (cackey_pin_command != NULL) { pInfo->flags |= CKF_PROTECTED_AUTHENTICATION_PATH; } pInfo->ulMaxSessionCount = (sizeof(cackey_sessions) / sizeof(cackey_sessions[0])) - 1; pInfo->ulSessionCount = CK_UNAVAILABLE_INFORMATION; pInfo->ulMaxRwSessionCount = 0; pInfo->ulRwSessionCount = CK_UNAVAILABLE_INFORMATION; pInfo->ulMaxPinLen = 128; pInfo->ulMinPinLen = 0; |
︙ | ︙ | |||
4455 4456 4457 4458 4459 4460 4461 | } CACKEY_DEBUG_PRINTF("Returning CKR_FUNCTION_NOT_SUPPORTED (%i)", CKR_FUNCTION_NOT_SUPPORTED); return(CKR_FUNCTION_NOT_SUPPORTED); } | | > > > | 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 | } CACKEY_DEBUG_PRINTF("Returning CKR_FUNCTION_NOT_SUPPORTED (%i)", CKR_FUNCTION_NOT_SUPPORTED); return(CKR_FUNCTION_NOT_SUPPORTED); } CK_DEFINE_FUNCTION(CK_RV, _C_LoginMutexArg)(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_UTF8CHAR_PTR pPin, CK_ULONG ulPinLen, int lock_mutex) { CK_SLOT_ID slotID; FILE *pinfd; char *pincmd, pinbuf[64], *fgets_ret; int mutex_retval; int tries_remaining; int login_ret; int pclose_ret; CACKEY_DEBUG_PRINTF("Called."); if (!cackey_initialized) { CACKEY_DEBUG_PRINTF("Error. Not initialized."); return(CKR_CRYPTOKI_NOT_INITIALIZED); |
︙ | ︙ | |||
4481 4482 4483 4484 4485 4486 4487 | if (userType != CKU_USER) { CACKEY_DEBUG_PRINTF("Error. We only support USER mode, asked for %lu mode.", (unsigned long) userType) return(CKR_USER_TYPE_INVALID); } | > | | | | > > | > > > > > > | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > | | | | > > > > > | 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 | if (userType != CKU_USER) { CACKEY_DEBUG_PRINTF("Error. We only support USER mode, asked for %lu mode.", (unsigned long) userType) return(CKR_USER_TYPE_INVALID); } if (lock_mutex) { mutex_retval = cackey_mutex_lock(cackey_biglock); if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Locking failed."); return(CKR_GENERAL_ERROR); } } if (!cackey_sessions[hSession].active) { if (lock_mutex) { cackey_mutex_unlock(cackey_biglock); } CACKEY_DEBUG_PRINTF("Error. Session not active."); return(CKR_SESSION_HANDLE_INVALID); } slotID = cackey_sessions[hSession].slotID; if (slotID < 0 || slotID >= (sizeof(cackey_slots) / sizeof(cackey_slots[0]))) { CACKEY_DEBUG_PRINTF("Error. Invalid slot requested (%lu), outside of valid range", slotID); if (lock_mutex) { cackey_mutex_unlock(cackey_biglock); } return(CKR_GENERAL_ERROR); } if (cackey_slots[slotID].active == 0) { CACKEY_DEBUG_PRINTF("Error. Invalid slot requested (%lu), slot not currently active", slotID); if (lock_mutex) { cackey_mutex_unlock(cackey_biglock); } return(CKR_GENERAL_ERROR); } pincmd = cackey_pin_command; if (pincmd != NULL) { CACKEY_DEBUG_PRINTF("CACKEY_PIN_COMMAND = %s", pincmd); if (pPin != NULL) { CACKEY_DEBUG_PRINTF("Protected authentication path in effect and PIN provided !?"); } pinfd = popen(pincmd, "r"); if (pinfd == NULL) { CACKEY_DEBUG_PRINTF("Error. %s: Unable to run", pincmd); if (lock_mutex) { cackey_mutex_unlock(cackey_biglock); } CACKEY_DEBUG_PRINTF("Returning CKR_PIN_INCORRECT (%i)", (int) CKR_PIN_INCORRECT); return(CKR_PIN_INCORRECT); } fgets_ret = fgets(pinbuf, sizeof(pinbuf), pinfd); if (fgets_ret == NULL) { pinbuf[0] = '\0'; } pclose_ret = pclose(pinfd); if (pclose_ret == -1 && errno == ECHILD) { CACKEY_DEBUG_PRINTF("Notice. pclose() indicated it could not get the status of the child, assuming it succeeeded !"); pclose_ret = 0; } if (pclose_ret != 0) { CACKEY_DEBUG_PRINTF("Error. %s: exited with non-zero status of %i", pincmd, pclose_ret); if (lock_mutex) { cackey_mutex_unlock(cackey_biglock); } CACKEY_DEBUG_PRINTF("Returning CKR_PIN_INCORRECT (%i)", (int) CKR_PIN_INCORRECT); return(CKR_PIN_INCORRECT); } if (strlen(pinbuf) < 1) { CACKEY_DEBUG_PRINTF("Error. %s: returned no data", pincmd); if (lock_mutex) { cackey_mutex_unlock(cackey_biglock); } CACKEY_DEBUG_PRINTF("Returning CKR_PIN_INCORRECT (%i)", (int) CKR_PIN_INCORRECT); return(CKR_PIN_INCORRECT); } if (pinbuf[strlen(pinbuf) - 1] == '\n') { pinbuf[strlen(pinbuf) - 1] = '\0'; } pPin = (CK_UTF8CHAR_PTR) pinbuf; ulPinLen = strlen(pinbuf); } login_ret = cackey_login(&cackey_slots[slotID], pPin, ulPinLen, &tries_remaining); if (login_ret != CACKEY_PCSC_S_OK) { if (lock_mutex) { cackey_mutex_unlock(cackey_biglock); } if (login_ret == CACKEY_PCSC_E_LOCKED) { CACKEY_DEBUG_PRINTF("Error. Token is locked."); cackey_slots[slotID].token_flags |= CKF_USER_PIN_LOCKED; CACKEY_DEBUG_PRINTF("Returning CKR_PIN_LOCKED (%i)", (int) CKR_PIN_LOCKED); return(CKR_PIN_LOCKED); } else if (login_ret == CACKEY_PCSC_E_BADPIN) { CACKEY_DEBUG_PRINTF("Error. Invalid PIN."); cackey_slots[slotID].token_flags |= CKF_USER_PIN_COUNT_LOW; if (tries_remaining == 1) { cackey_slots[slotID].token_flags |= CKF_USER_PIN_FINAL_TRY; } CACKEY_DEBUG_PRINTF("Returning CKR_PIN_INCORRECT (%i)", (int) CKR_PIN_INCORRECT); return(CKR_PIN_INCORRECT); } CACKEY_DEBUG_PRINTF("Error. Unknown error returned from cackey_login() (%i)", login_ret); return(CKR_GENERAL_ERROR); } cackey_slots[slotID].token_flags &= ~(CKF_USER_PIN_LOCKED | CKF_USER_PIN_COUNT_LOW | CKF_LOGIN_REQUIRED | CKF_USER_PIN_FINAL_TRY); cackey_sessions[hSession].state = CKS_RO_USER_FUNCTIONS; if (lock_mutex) { mutex_retval = cackey_mutex_unlock(cackey_biglock); if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Unlocking failed."); return(CKR_GENERAL_ERROR); } } CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i)", CKR_OK); return(CKR_OK); } CK_DEFINE_FUNCTION(CK_RV, C_Login)(CK_SESSION_HANDLE hSession, CK_USER_TYPE userType, CK_UTF8CHAR_PTR pPin, CK_ULONG ulPinLen) { return(_C_LoginMutexArg(hSession, userType, pPin, ulPinLen, 1)); } CK_DEFINE_FUNCTION(CK_RV, C_Logout)(CK_SESSION_HANDLE hSession) { CK_SLOT_ID slotID; int mutex_retval; CACKEY_DEBUG_PRINTF("Called."); |
︙ | ︙ | |||
4605 4606 4607 4608 4609 4610 4611 | cackey_mutex_unlock(cackey_biglock); return(CKR_GENERAL_ERROR); } cackey_sessions[hSession].state = CKS_RO_PUBLIC_SESSION; | < | 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 | cackey_mutex_unlock(cackey_biglock); return(CKR_GENERAL_ERROR); } cackey_sessions[hSession].state = CKS_RO_PUBLIC_SESSION; mutex_retval = cackey_mutex_unlock(cackey_biglock); if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Unlocking failed."); return(CKR_GENERAL_ERROR); } |
︙ | ︙ | |||
5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 | CK_DEFINE_FUNCTION(CK_RV, C_FindObjects)(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE_PTR phObject, CK_ULONG ulMaxObjectCount, CK_ULONG_PTR pulObjectCount) { struct cackey_identity *curr_id; CK_ATTRIBUTE *curr_attr; CK_ULONG curr_id_idx, curr_out_id_idx, curr_attr_idx, sess_attr_idx; CK_ULONG matched_count, prev_matched_count; int mutex_retval; CACKEY_DEBUG_PRINTF("Called."); if (!cackey_initialized) { CACKEY_DEBUG_PRINTF("Error. Not initialized."); return(CKR_CRYPTOKI_NOT_INITIALIZED); | > > > > | 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 | CK_DEFINE_FUNCTION(CK_RV, C_FindObjects)(CK_SESSION_HANDLE hSession, CK_OBJECT_HANDLE_PTR phObject, CK_ULONG ulMaxObjectCount, CK_ULONG_PTR pulObjectCount) { struct cackey_identity *curr_id; CK_ATTRIBUTE *curr_attr; CK_ULONG curr_id_idx, curr_out_id_idx, curr_attr_idx, sess_attr_idx; CK_ULONG matched_count, prev_matched_count; int mutex_retval; #ifdef CACKEY_DEBUG_SEARCH_SPEEDTEST struct timeval start, end; uint64_t start_int, end_int; #endif CACKEY_DEBUG_PRINTF("Called."); if (!cackey_initialized) { CACKEY_DEBUG_PRINTF("Error. Not initialized."); return(CKR_CRYPTOKI_NOT_INITIALIZED); |
︙ | ︙ | |||
5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 | if (!cackey_sessions[hSession].search_active) { cackey_mutex_unlock(cackey_biglock); CACKEY_DEBUG_PRINTF("Error. Search not active."); return(CKR_OPERATION_NOT_INITIALIZED); } curr_out_id_idx = 0; for (curr_id_idx = cackey_sessions[hSession].search_curr_id; curr_id_idx < cackey_sessions[hSession].identities_count && ulMaxObjectCount; curr_id_idx++) { curr_id = &cackey_sessions[hSession].identities[curr_id_idx]; CACKEY_DEBUG_PRINTF("Processing identity:%lu", (unsigned long) curr_id_idx); | > > > > | 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 | if (!cackey_sessions[hSession].search_active) { cackey_mutex_unlock(cackey_biglock); CACKEY_DEBUG_PRINTF("Error. Search not active."); return(CKR_OPERATION_NOT_INITIALIZED); } #ifdef CACKEY_DEBUG_SEARCH_SPEEDTEST gettimeofday(&start, NULL); #endif curr_out_id_idx = 0; for (curr_id_idx = cackey_sessions[hSession].search_curr_id; curr_id_idx < cackey_sessions[hSession].identities_count && ulMaxObjectCount; curr_id_idx++) { curr_id = &cackey_sessions[hSession].identities[curr_id_idx]; CACKEY_DEBUG_PRINTF("Processing identity:%lu", (unsigned long) curr_id_idx); |
︙ | ︙ | |||
5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 | curr_out_id_idx++; } else { CACKEY_DEBUG_PRINTF(" ... Not all %i (only found %i) attributes checked for found, not adding identity:%i", (int) cackey_sessions[hSession].search_query_count, (int) matched_count, (int) curr_id_idx); } } cackey_sessions[hSession].search_curr_id = curr_id_idx; *pulObjectCount = curr_out_id_idx; mutex_retval = cackey_mutex_unlock(cackey_biglock); if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Unlocking failed."); return(CKR_GENERAL_ERROR); } | > > > > > > > | 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 | curr_out_id_idx++; } else { CACKEY_DEBUG_PRINTF(" ... Not all %i (only found %i) attributes checked for found, not adding identity:%i", (int) cackey_sessions[hSession].search_query_count, (int) matched_count, (int) curr_id_idx); } } cackey_sessions[hSession].search_curr_id = curr_id_idx; *pulObjectCount = curr_out_id_idx; #ifdef CACKEY_DEBUG_SEARCH_SPEEDTEST gettimeofday(&end, NULL); start_int = (start.tv_sec * 1000000) + start.tv_usec; end_int = (end.tv_sec * 1000000) + end.tv_usec; fprintf(stderr, "Search took %lu microseconds\n", (unsigned long) (end_int - start_int)); #endif mutex_retval = cackey_mutex_unlock(cackey_biglock); if (mutex_retval != 0) { CACKEY_DEBUG_PRINTF("Error. Unlocking failed."); return(CKR_GENERAL_ERROR); } |
︙ | ︙ | |||
5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 | return(CKR_GENERAL_ERROR); } switch (cackey_sessions[hSession].decrypt_mechanism) { case CKM_RSA_PKCS: /* Ask card to decrypt */ buflen = cackey_signdecrypt(&cackey_slots[slotID], cackey_sessions[hSession].decrypt_identity, pEncryptedPart, ulEncryptedPartLen, buf, sizeof(buf), 0, 1); if (buflen < 0) { /* Decryption failed. */ if (buflen == CACKEY_PCSC_E_NEEDLOGIN) { retval = CKR_USER_NOT_LOGGED_IN; } else if (buflen == CACKEY_PCSC_E_TOKENABSENT) { retval = CKR_DEVICE_REMOVED; } else { retval = CKR_GENERAL_ERROR; } } else if (((unsigned long) buflen) > *pulPartLen && pPart) { /* Decrypted data too large */ retval = CKR_BUFFER_TOO_SMALL; } else { if (pPart) { | > > > > > > > > | 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 | return(CKR_GENERAL_ERROR); } switch (cackey_sessions[hSession].decrypt_mechanism) { case CKM_RSA_PKCS: /* Ask card to decrypt */ buflen = cackey_signdecrypt(&cackey_slots[slotID], cackey_sessions[hSession].decrypt_identity, pEncryptedPart, ulEncryptedPartLen, buf, sizeof(buf), 0, 1); if (buflen == CACKEY_PCSC_E_NEEDLOGIN && cackey_pin_command != NULL) { if (_C_LoginMutexArg(hSession, CKU_USER, NULL, 0, 0) == CKR_OK) { buflen = cackey_signdecrypt(&cackey_slots[slotID], cackey_sessions[hSession].decrypt_identity, pEncryptedPart, ulEncryptedPartLen, buf, sizeof(buf), 0, 1); } } if (buflen < 0) { /* Decryption failed. */ if (buflen == CACKEY_PCSC_E_NEEDLOGIN) { retval = CKR_USER_NOT_LOGGED_IN; } else if (buflen == CACKEY_PCSC_E_TOKENABSENT) { retval = CKR_DEVICE_REMOVED; } else { CACKEY_DEBUG_PRINTF("Failed to send APDU, error = %li", (long int) buflen); retval = CKR_GENERAL_ERROR; } } else if (((unsigned long) buflen) > *pulPartLen && pPart) { /* Decrypted data too large */ retval = CKR_BUFFER_TOO_SMALL; } else { if (pPart) { |
︙ | ︙ | |||
6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 | } switch (cackey_sessions[hSession].sign_mechanism) { case CKM_RSA_PKCS: /* Ask card to sign */ CACKEY_DEBUG_PRINTF("Asking to sign from identity %p in session %lu", (void *) cackey_sessions[hSession].sign_identity, (unsigned long) hSession); sigbuflen = cackey_signdecrypt(&cackey_slots[slotID], cackey_sessions[hSession].sign_identity, cackey_sessions[hSession].sign_buf, cackey_sessions[hSession].sign_bufused, sigbuf, sizeof(sigbuf), 1, 0); if (sigbuflen < 0) { /* Signing failed. */ if (sigbuflen == CACKEY_PCSC_E_NEEDLOGIN) { retval = CKR_USER_NOT_LOGGED_IN; } else if (sigbuflen == CACKEY_PCSC_E_TOKENABSENT) { retval = CKR_DEVICE_REMOVED; | > > > > > > | 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 | } switch (cackey_sessions[hSession].sign_mechanism) { case CKM_RSA_PKCS: /* Ask card to sign */ CACKEY_DEBUG_PRINTF("Asking to sign from identity %p in session %lu", (void *) cackey_sessions[hSession].sign_identity, (unsigned long) hSession); sigbuflen = cackey_signdecrypt(&cackey_slots[slotID], cackey_sessions[hSession].sign_identity, cackey_sessions[hSession].sign_buf, cackey_sessions[hSession].sign_bufused, sigbuf, sizeof(sigbuf), 1, 0); if (sigbuflen == CACKEY_PCSC_E_NEEDLOGIN && cackey_pin_command != NULL) { if (_C_LoginMutexArg(hSession, CKU_USER, NULL, 0, 0) == CKR_OK) { sigbuflen = cackey_signdecrypt(&cackey_slots[slotID], cackey_sessions[hSession].sign_identity, cackey_sessions[hSession].sign_buf, cackey_sessions[hSession].sign_bufused, sigbuf, sizeof(sigbuf), 1, 0); } } if (sigbuflen < 0) { /* Signing failed. */ if (sigbuflen == CACKEY_PCSC_E_NEEDLOGIN) { retval = CKR_USER_NOT_LOGGED_IN; } else if (sigbuflen == CACKEY_PCSC_E_TOKENABSENT) { retval = CKR_DEVICE_REMOVED; |
︙ | ︙ |
Modified cackey_builtin_certs.h from [093ba34f4f] to [9c64b878c6].
1 | { | | | < | < > < < > | | < > < < < > > | < > < > | < | < > < < > | | < > | | < | < > < > | < | < > < > | < | < > < > | < | > > > > | > > < > | < | < > < | | | < > | | < | < > > | < < | < > | | < | < > > | < < | < > < < < > > | < > < < < > > | < > < < > | | < > | | < | < > > | < < | < > < < < < > | > > < < < < > | > > < > | < | < > < | | | < > | | < | < > > | < < | < < < > | < > | > | < > < | | | < > | | < | < > > | < < | < > < < > | | < > | | < | < > < > | < | < > < > | < | < > < > | < | < > | 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1078, /* certificate_len */ (unsigned char *) "\x30\x82\x04\x32\x30\x82\x03\x1a\xa0\x03\x02\x01\x02\x02\x01\x01\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\xac\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x11\x30\x0f\x06\x03\x55\x04\x08\x13\x08\x56\x69\x72\x67\x69\x6e\x69\x61\x31\x0f\x30\x0d\x06\x03\x55\x04\x07\x13\x06\x52\x65\x73\x74\x6f\x6e\x31\x20\x30\x1e\x06\x03\x55\x04\x0a\x13\x17\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x4c\x4c\x43\x31\x17\x30\x15\x06\x03\x55\x04\x0b\x13\x0e\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x49\x54\x31\x18\x30\x16\x06\x03\x55\x04\x0b\x13\x0f\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x50\x4b\x49\x31\x24\x30\x22\x06\x03\x55\x04\x03\x13\x1b\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x35\x30\x31\x30\x31\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x31\x37\x30\x31\x30\x31\x30\x30\x30\x30\x30\x30\x5a\x30\x81\xa9\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x11\x30\x0f\x06\x03\x55\x04\x08\x13\x08\x56\x69\x72\x67\x69\x6e\x69\x61\x31\x0f\x30\x0d\x06\x03\x55\x04\x07\x13\x06\x52\x65\x73\x74\x6f\x6e\x31\x20\x30\x1e\x06\x03\x55\x04\x0a\x13\x17\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x4c\x4c\x43\x31\x17\x30\x15\x06\x03\x55\x04\x0b\x13\x0e\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x49\x54\x31\x18\x30\x16\x06\x03\x55\x04\x0b\x13\x0f\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x50\x4b\x49\x31\x21\x30\x1f\x06\x03\x55\x04\x03\x13\x18\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x43\x41\x20\x31\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xc5\x07\x48\x59\x94\x2c\x19\x14\x85\x27\xfd\xf1\xe4\xfd\x46\xde\x89\xaf\x3f\xa6\x7a\x42\xff\x2b\x96\xb3\xea\x22\x70\x1b\x3d\x4a\xf8\x6b\x64\xd3\x08\xf1\xa6\x26\x9d\x48\x72\x68\xc7\xc4\xf9\xbc\x49\xad\x94\x82\x61\xd1\x9f\x7e\x6f\x55\x27\x15\xaf\xfe\xcb\x89\xf8\x2a\xfe\xf6\x07\x71\x58\x15\xa9\xaa\x77\x30\xef\xc6\xa0\x08\xd6\xb9\x3a\x8d\xa5\xb6\xa8\xc5\x20\x4e\xa6\x4c\x27\x7d\x40\x4e\x82\x9c\xd2\x49\x51\xcd\x72\xb1\x96\xb3\xf5\x69\x96\xb8\x0d\x62\xf4\x44\x38\xc9\xb5\x7e\x97\xb6\xda\x3a\x6b\xc4\xec\xc3\x54\x7f\xab\x0f\x7b\x0f\x96\xe3\x64\x23\x89\x68\xeb\x8b\xdc\x73\xa5\x74\xe5\xdd\xf8\x5c\x63\x13\x69\xfc\x3c\x79\x19\x7c\xc9\x22\x95\x7e\x12\x0e\x45\x97\x12\xa7\xf8\xfe\xf9\x1d\x42\x69\x57\x6a\xa9\x1f\x30\x33\x47\x98\x0c\x5e\x27\x9e\xd4\xed\x4f\xa2\x0a\x92\xd7\x29\x56\x42\xc6\x3a\xd1\xf4\xbd\x78\x88\x98\xc7\x4f\x11\xe8\x97\x8d\xe9\x22\x12\xaf\xc3\x0e\xb1\xab\x56\xb1\xea\x47\x6b\xc9\x5c\x87\xe3\x52\x21\x57\x96\xe1\x08\x43\xf4\xd3\x87\xdc\x95\x03\x81\x31\x91\xf1\xa0\x76\x4a\xd9\xae\x40\x51\x0e\xfb\xd7\x5a\x31\x63\x1f\x02\x03\x01\x00\x01\xa3\x60\x30\x5e\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x01\x30\x37\x06\x03\x55\x1d\x1f\x01\x01\x00\x04\x2d\x30\x2b\x30\x29\xa0\x27\xa0\x25\x86\x23\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x6b\x6e\x69\x67\x68\x74\x70\x6f\x69\x6e\x74\x2e\x63\x6f\x6d\x2f\x63\x72\x6c\x2f\x72\x6f\x6f\x74\x30\x0f\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x05\x03\x03\x07\x86\x00\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x16\xee\x42\x60\x9a\x8b\xba\xad\xc4\xcb\xf4\x41\xb0\xfd\x2d\x54\x5f\x6c\xec\x71\x83\xa6\xb2\xf2\x85\xa3\x96\x4a\x7e\x79\xf1\xee\x22\xb7\xa9\x0b\xae\x2a\x27\x5f\xe4\x20\xe6\xcc\xd7\x96\xac\x7c\x2e\x84\x01\x8f\xf6\x6a\xd0\xe6\xc6\x82\xe9\xec\xec\x2e\x84\x7f\x0a\xb2\x35\x79\x76\x1b\xe0\xdd\x14\xda\x8e\x9f\x8f\x75\x7c\x58\xa3\xbd\x69\xb0\x97\x65\xa8\xb6\x48\x30\x0a\x27\xae\x54\x66\x8d\xf0\x90\x8e\x98\xbb\x73\x3c\xcd\x47\x3a\xbd\x86\x48\x05\x86\xcf\x9f\x6e\x0c\x1f\x9a\xc4\x95\x48\xbe\xa4\x89\x2d\x3e\x54\x03\x3e\x4e\xcc\x0e\x44\x0a\x73\x43\xe6\xa9\xd0\x96\x4d\x45\x66\xf4\x93\xf1\xbf\x07\x65\xa7\xad\x00\x57\xf8\x8d\x90\x58\xff\x65\x90\x57\x26\xa6\xe3\x9c\x8d\x34\x83\x39\x8c\x0b\x6b\xe8\x2b\x54\x10\x38\x96\xab\xe4\x5e\x00\x50\xc7\x10\xdd\xe9\x27\xf4\x1f\x3e\x26\xaf\x3e\x70\x63\x04\x00\xb5\xc4\x9b\xba\x1e\xd2\x97\x34\x68\x84\x31\x68\xab\x73\xa3\x32\x4f\x74\x0f\x94\x28\xfa\xdf\x63\xdc\x0b\xef\xcc\xa6\xa0\xd2\x15\x85\x7e\xa9\x84\x4a\xe6\xd7\xb4\x49\xb5\x08\xce\x25\x72\x82\x5b\x0d\xe7\xea\x06\x78\x40\xcf\xca\x2c\xa1\x79", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1026, /* certificate_len */ (unsigned char *) "\x30\x82\x03\xfe\x30\x82\x02\xe6\xa0\x03\x02\x01\x02\x02\x06\x01\x4b\xec\x12\x76\xe4\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\xac\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x11\x30\x0f\x06\x03\x55\x04\x08\x13\x08\x56\x69\x72\x67\x69\x6e\x69\x61\x31\x0f\x30\x0d\x06\x03\x55\x04\x07\x13\x06\x52\x65\x73\x74\x6f\x6e\x31\x20\x30\x1e\x06\x03\x55\x04\x0a\x13\x17\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x4c\x4c\x43\x31\x17\x30\x15\x06\x03\x55\x04\x0b\x13\x0e\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x49\x54\x31\x18\x30\x16\x06\x03\x55\x04\x0b\x13\x0f\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x50\x4b\x49\x31\x24\x30\x22\x06\x03\x55\x04\x03\x13\x1b\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x35\x30\x31\x30\x31\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x33\x35\x30\x31\x30\x31\x30\x30\x30\x30\x30\x30\x5a\x30\x81\xac\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x11\x30\x0f\x06\x03\x55\x04\x08\x13\x08\x56\x69\x72\x67\x69\x6e\x69\x61\x31\x0f\x30\x0d\x06\x03\x55\x04\x07\x13\x06\x52\x65\x73\x74\x6f\x6e\x31\x20\x30\x1e\x06\x03\x55\x04\x0a\x13\x17\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x4c\x4c\x43\x31\x17\x30\x15\x06\x03\x55\x04\x0b\x13\x0e\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x49\x54\x31\x18\x30\x16\x06\x03\x55\x04\x0b\x13\x0f\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x50\x4b\x49\x31\x24\x30\x22\x06\x03\x55\x04\x03\x13\x1b\x4b\x6e\x69\x67\x68\x74\x50\x6f\x69\x6e\x74\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xca\x85\xd5\x54\x95\xe1\xb6\x1d\x97\x92\xea\xda\xab\x41\xfc\xa5\xdf\xfc\x36\x8d\x4a\x54\xe6\x82\x38\x56\x00\xc4\x13\xd5\xe4\xbd\x52\xa8\x83\x10\x3b\xcb\x1d\xda\x13\xa6\xa0\xa8\xd3\x6f\xdd\x34\x39\x96\xa5\xbd\xc6\x44\x2b\x7c\x04\x8b\x8f\x68\xba\x7f\xbf\x8c\x5a\x11\x2b\x52\xf1\xf7\x86\x8e\x50\xe5\x05\x54\xaf\xbd\x77\xf8\xae\x3e\xe2\xb3\xdd\xb7\xa2\x40\x63\x8d\x3a\xb3\xe2\x5d\xb9\x41\xe0\xed\x24\x00\x33\xe1\x5b\x0d\x92\x8a\x68\xf0\x56\xf6\xc0\xcb\x3c\x82\x51\x79\xac\xd9\xf0\x69\x09\xba\x3e\x0a\x8d\xf3\xf5\x45\xe1\xe1\xcc\xd1\xf5\x2e\xab\xcf\x96\xc7\x35\xdd\x93\xd6\x79\xd2\x91\x7d\xfd\x13\x38\x9b\x83\x63\xed\x27\x85\x1b\x1c\x12\x58\x1c\x6f\x44\xb8\xd8\xbf\xac\xfc\x93\x61\xb5\x3d\x39\xc4\xb1\xe0\x9e\x58\xed\xcd\x01\xc3\xdb\xc6\xe3\xdc\xa5\x8f\x1d\x40\x34\x67\x83\x6d\xb3\x4b\x71\xc3\x5b\xfd\x3e\x9d\x6d\x54\x14\xbb\xb6\x52\x20\xf4\xc8\x40\x96\x88\xd3\xd8\x4d\xa8\x7f\x14\xa8\x82\x76\x9f\x3e\x26\x43\xaa\x71\xbc\x9f\x76\xee\xec\x03\x6f\x3b\x01\x71\xb8\xde\xb9\xe2\x5c\x0f\x79\x1c\xdb\x70\x45\x98\x75\x0e\x8e\x65\xd5\xff\x02\x03\x01\x00\x01\xa3\x24\x30\x22\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x0f\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x05\x03\x03\x07\x86\x00\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x1c\xba\x35\x97\x67\x71\x37\xcd\x2f\xfb\x55\x20\x93\xa7\xa8\x6e\x73\x96\xf0\x0c\x09\xdc\xc5\x6b\x5c\x06\x35\x7c\x3b\x47\x09\x21\xb6\xea\xbd\x85\x65\x09\xfa\x2c\x23\xe5\x6a\xb5\x40\x13\xf6\x51\xb6\x41\x54\x70\x3d\x3a\xf3\xd7\xbd\x56\x07\x43\x57\x44\x97\x48\x5f\x4a\xfc\xa1\xe9\x93\x57\xe9\x64\x9c\x4e\xca\x6a\xec\x2d\xa0\xc8\x86\x28\x00\xf1\xc8\x7e\x57\x26\xe2\x2f\x72\x1c\x1b\xca\x4b\x8f\x5e\x70\x4f\x27\xc2\x80\x51\x5e\x6d\x14\x35\xa0\x8c\xb7\x2b\x20\x2a\xc1\x8d\xa7\x72\xc1\x24\xba\xfc\x40\x42\x17\x31\x63\x15\xbd\x75\x4b\x0e\x1e\x02\x1a\x21\xac\x4a\x30\xfa\x47\x83\x0e\xca\x30\xf8\xd7\x29\x75\x19\xb7\x93\x01\x1a\xe6\x6b\xdd\x85\xe2\x22\xc4\xfb\x5e\x9a\xd0\xbc\x52\x70\x7f\x88\xa8\xd5\x94\xcd\x8e\xfa\x28\x72\xf3\x9c\x5d\x24\xb9\x2a\xa7\xd8\x59\xe2\x0a\xe8\x5b\x90\x04\xcd\x15\x7a\xa4\xdf\x0e\x05\x33\x17\x09\x08\x9e\x41\xc6\x0c\xc8\xfb\xc4\x7f\x40\x14\xa5\xc0\x2a\xc7\x13\x9c\x89\x64\x06\x45\xb7\x72\x17\xfe\x03\x7a\xdb\x85\xcf\xb7\xce\xc4\x01\xc3\xdd\x64\x4a\x09\xbc\x72\x95\x51\x50\x57\x88\x73\x2b\x97\x49\x00\x9b\x20", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 884, /* certificate_len */ (unsigned char *) "\x30\x82\x03\x70\x30\x82\x02\x58\xa0\x03\x02\x01\x02\x02\x01\x05\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x30\x34\x31\x32\x31\x33\x31\x35\x30\x30\x31\x30\x5a\x17\x0d\x32\x39\x31\x32\x30\x35\x31\x35\x30\x30\x31\x30\x5a\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xc0\x2c\xc1\xf6\x8d\x3b\xac\xff\x3f\x3c\xd6\x71\xbe\xb8\x74\x22\x07\xec\x70\x41\x15\xfc\xab\x40\xe3\x07\xaa\xc1\xc3\xd8\x9f\xfe\xda\x4c\x3a\xbf\x3f\xc8\xd8\x28\x7b\x4b\x36\x01\xc0\xac\x45\x25\xc3\xd2\x0e\x0a\x8f\x85\x18\x64\x10\x3d\x1a\x13\x70\x2a\x6f\x8e\xd7\xdc\x8d\x93\xb3\x41\x0f\x38\x21\xcd\xad\xab\xc2\x3d\x2a\x05\xd3\x57\x11\x37\x0d\xcd\x8c\x51\xf9\x93\xe3\xcc\x46\x49\x21\x8e\x14\xb4\xcd\xcb\x14\x3e\x38\xcd\x72\x31\xee\xab\x12\xf2\x65\xea\x34\x2e\x56\x5d\xff\xee\x63\x75\xcb\x6d\xba\x91\x34\xfc\x9e\xf3\xf4\x2d\x1c\xbe\x50\xc4\x42\xdf\x59\x88\xff\x6a\xb3\xfa\xa8\x6c\x3d\xcb\x56\x71\x71\x05\x96\xbb\x9f\x80\xe5\x80\x45\x59\x67\x41\xb0\xeb\xc3\xad\x60\xa4\x80\x75\x06\x17\x9c\x0e\xf4\x43\xe0\x99\x0e\x1b\xfb\x7f\xf5\xb3\xcc\xb2\x81\x82\xb1\xfd\x32\xc1\xb8\xbe\x41\xa4\x64\xb5\x60\x3a\x5a\x51\x30\x8c\xce\xde\x41\x2c\x19\x47\x5c\x49\x10\x64\xb9\x74\xa9\x87\x41\xaf\x7d\x6e\xba\xc1\xb8\xa1\xbf\x65\x31\x3a\x04\x67\xf9\xb5\xbb\x8e\x92\x8a\x00\x63\xb8\xb1\xe6\x8c\x38\x5f\x83\xff\x50\xd5\x3b\xa2\x5d\x6b\xb2\x10\xcc\x63\x02\x03\x01\x00\x01\xa3\x3f\x30\x3d\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x0b\x06\x03\x55\x1d\x0f\x04\x04\x03\x02\x01\x86\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x98\x91\x8d\x3f\x89\xc8\xbb\xf5\xc0\x69\x73\x29\x3b\x35\xac\xba\xb3\x08\x76\x3d\x70\x09\x92\xe9\x84\x44\x21\x01\x7d\x14\x76\x1b\xee\x51\x6c\x1d\x8d\x15\x37\x2d\x7b\x31\x69\xf4\x9a\x44\xb8\xaf\x46\xcc\x34\xfa\x23\xcb\x03\x27\x19\xd2\x83\x21\x75\x2b\xe7\xe0\x1b\x99\x26\xdc\x84\x40\x95\xe8\xa8\xd2\xcc\xf6\x58\x5c\x66\xef\x3f\x4a\x97\x10\x82\x1d\xba\x0a\xa2\xdd\x5b\x06\x2b\x9d\xa7\x64\x4e\xeb\x2e\x01\x35\xa4\xb4\x3f\x13\xad\x55\xe4\xd5\x73\xa8\x69\x9b\x11\xf1\x98\xf2\x31\x1e\x6f\x40\xd4\xf8\x78\x9f\x8e\x91\xa0\x6f\x70\x04\x90\x66\xaa\x06\x2b\xce\xe1\x7a\x92\xb5\x7d\xe1\xe0\xd1\x96\xe7\xa1\x3a\x2d\xcc\xb1\x9d\x1f\x05\x44\xed\x87\x99\xd3\x4d\x1a\x70\x39\xc1\x04\x0c\xe5\x7e\xd9\xf1\xaf\xd7\x20\x0e\xf1\x22\x7a\x25\xa4\x73\x99\xcc\x3f\xa4\x07\x27\x96\xa8\xa2\x95\xed\x82\xb9\x16\xd3\x9e\x0b\x87\xc2\xc1\xf2\x88\xf5\x62\xdf\x68\xdf\xc7\xbc\x69\x51\xed\xb1\x5c\xdc\x54\x54\x29\x0f\x09\x39\x9a\xac\x03\xc1\xdb\x0c\x4d\xae\x6f\x0a\x7a\x16\x49\xf1\xbf\x91\xd2\x38\x94\xd3\xf6\x95\x2c\xb7\x6c\xc9\x42\xb6\x8d\xca\x90\x8d\x85\xd9", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1360, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x4c\x30\x82\x04\x34\xa0\x03\x02\x01\x02\x02\x01\x2c\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x30\x38\x30\x32\x30\x35\x31\x35\x33\x36\x34\x33\x5a\x17\x0d\x31\x38\x30\x32\x30\x34\x31\x34\x33\x36\x34\x33\x5a\x30\x63\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x1e\x30\x1c\x06\x03\x55\x04\x03\x13\x15\x44\x6f\x44\x20\x49\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x43\x41\x2d\x31\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\x99\x5c\x9e\x21\x37\x15\xb6\x75\x37\x29\x09\xce\xcf\xaa\xa7\x22\x4e\x09\xe5\x98\xfd\x0b\x44\x03\x17\xfe\xb2\xbc\x26\x0b\xe4\xdf\x6b\x7a\xb4\xb4\x13\xbf\x63\xd6\x99\x71\xb8\x76\x25\xcf\xa0\x5b\x78\x50\x1d\xc9\x52\x0e\x4f\x89\x87\xdc\x0b\xae\x17\xe8\xaa\xa4\x30\xa6\xc9\x78\x7a\xf9\xbc\xb6\x85\x95\x5c\x9c\x8d\x68\x08\x99\xb4\x3a\x3e\x70\x2b\xef\xf3\x58\x35\x97\x70\x32\xd6\x4f\xaf\x64\x9f\x3f\x74\xa3\x1c\x22\x4f\xa7\x74\x8c\x2b\xa1\xab\xbc\x23\x0f\xd0\x41\x4b\xa2\x91\x0a\x60\xb3\x3b\x8b\x4f\xf2\xef\xb4\x83\x34\xd7\xa9\x5f\x90\xba\x88\x07\x15\x02\x35\xe1\xd6\x00\x79\x8d\x19\xf1\x41\x7c\x92\x56\xcc\x75\xb5\xe8\xeb\x8f\xc1\xb7\xa7\xdc\x31\x3e\x8c\x3b\x93\xec\xe0\xd1\xee\xdd\x61\xab\x95\x32\xbf\x7b\x18\xa3\x95\x2c\xf7\xea\x7f\x29\x9a\xe9\xde\x6f\xcd\xde\xe0\x8b\x1e\xd7\x94\x77\x5e\x82\xd7\x04\x79\x22\x72\xbe\x22\x61\xf2\x93\xf2\x65\x73\xfa\x1b\x43\xd9\x3c\xef\xe9\xcc\x74\xc2\x39\x5b\x79\x43\xae\x54\xe1\xc1\x3e\x90\xb5\xb9\x07\xce\xb4\xb3\xec\x9c\x6b\xe6\xdd\x8f\x1d\x7c\xc9\xdb\x9a\xab\xb0\x6f\x24\x6b\x02\x17\x7d\x69\x02\x03\x01\x00\x01\xa3\x82\x02\x11\x30\x82\x02\x0d\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xd3\xd4\x72\xce\xa5\x97\x6c\x3a\xfa\x9a\xd4\xd2\x83\xff\x73\x03\xdb\x53\x4d\xa3\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x01\x30\x57\x06\x03\x55\x1d\x20\x04\x50\x30\x4e\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x0a\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x14\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x63\x72\x6c\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x81\xfe\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf1\x30\x81\xee\x30\x3f\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x33\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x49\x73\x73\x75\x65\x64\x54\x6f\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x88\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x7c\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x80\x91\xd8\x4f\xfb\x6d\x12\x07\x57\x9d\x7b\x6f\x7b\x56\x00\x50\x8b\xaf\xe1\x79\x9e\xe8\x75\xfd\xc1\x37\xb0\x71\xdf\xaa\x91\x49\x56\x8d\x94\xfe\xc9\xe3\xc1\xd9\x85\x00\x17\x64\x4f\x96\x4d\x34\x44\x4b\x29\x6f\xd7\x11\xfc\x1b\xbe\xef\xb8\x0b\x60\xe5\x8e\xa7\xc3\x21\xe3\x68\xca\xae\x25\xbe\x80\xd0\x2d\xb9\x0a\x11\xac\x32\x08\x57\x5b\xc4\xe5\xea\x64\x6b\x5b\x39\x4b\xf3\x47\xfa\xe7\x92\x19\x32\xed\x69\xa3\xa4\x7e\x96\x3a\x85\x52\x1d\x86\x2a\xb8\x5c\x7d\x69\xbd\x46\x1b\xae\xa0\x70\x26\x87\xb9\xce\x64\x64\xeb\xea\xe0\x7b\x80\xf1\x24\xb0\xfe\xe7\xbc\x8c\x61\xa0\x6e\xad\xb7\xfe\x04\x97\xa7\x21\x03\xf4\x47\x00\x41\x9b\xcb\x8d\xf1\x56\x1b\x48\x9d\x4c\xa1\x5f\xdf\x0a\x6a\x39\x22\xb3\x06\x84\x21\x97\xd9\xc1\x88\x99\x58\x7f\xfb\x81\x1c\x3e\x43\xea\xee\x68\x8f\x0b\x86\xcb\x1c\x76\x51\x07\x70\xf7\xf8\xec\x91\xc1\xd0\x87\x78\x3f\x6f\x30\xaa\x00\x0b\xa7\xf8\x06\x6c\x39\x1b\xe5\x16\xbf\x2b\xb7\x2c\xa5\xb1\xf9\xa6\xb5\x97\x19\xe9\x40\xc5\x68\x94\x2e\xb3\xfb\xf3\xf0\xee\x6f\x16\x81\x94\xb8\x20\x24\x2d\x62\x8d\xbf\x67\xad\x2e\x94", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1421, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x89\x30\x82\x04\x71\xa0\x03\x02\x01\x02\x02\x01\x4e\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x30\x30\x31\x31\x34\x31\x37\x33\x33\x31\x32\x5a\x17\x0d\x31\x36\x30\x31\x31\x34\x31\x37\x33\x33\x31\x32\x5a\x30\x57\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x12\x30\x10\x06\x03\x55\x04\x03\x13\x09\x44\x4f\x44\x20\x43\x41\x2d\x32\x35\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xe1\xe2\x60\xb7\xce\x51\xb7\x66\x8e\x48\x60\xfb\x0b\xa8\xba\x5a\x51\xd4\xd8\x2a\x65\xf4\xd2\x96\xed\xa3\x58\x99\xa2\x89\xa8\x55\x86\x85\x61\xad\x08\xff\xb3\x12\x16\x75\xd2\x38\xfa\x1c\xee\x9a\xa0\x62\x5a\x91\xe1\xcc\xe1\xc9\x0d\x35\x7e\x17\x5f\x7f\x14\xac\x01\x75\xe4\x5f\x4a\x5f\x2d\x22\xcb\x49\xd4\x82\xb1\x19\x17\xae\x6d\x32\x38\x29\x72\x97\x0b\x9b\x6e\x15\xd0\x23\x08\x7b\x2d\x4b\x44\xbb\xa1\x15\xc9\x96\x6e\xa6\xd9\x14\x02\x88\x9c\x5e\xdf\xf9\x82\x31\x14\x46\xa8\x8b\x01\x3e\xe4\xae\xae\xfa\x53\x50\x37\x54\xba\x64\x53\x68\xa1\xa2\x8f\x7c\x80\x97\xf9\x3b\xf2\x8f\xe5\xf2\xff\x46\xf8\x8a\xec\x58\x25\x80\x77\x46\x60\x61\xba\x6e\x60\x3e\x1f\x7a\x3c\xa4\xd7\x17\x0e\x57\x9f\xa3\x2e\xb7\x40\x8a\x80\xb6\xe3\xd7\xd7\xcf\x6d\x01\x13\xf2\x80\x93\x47\xf3\xb9\x69\x9b\x0b\x56\x7d\xf7\x8b\x40\xa8\x70\xc2\x4e\x8d\x04\x19\x7e\x8b\x39\x54\x23\x0f\xbb\x8a\xf0\x7c\x77\xd5\xe9\x84\x56\xcc\x05\xb7\x43\x72\xfe\xef\x62\x42\x07\x85\x48\x4f\x44\xe9\x82\xf4\x10\x96\xb4\xb1\x23\xc5\xe8\x1f\x7b\xea\x9b\x93\x0b\xff\xcb\xee\x84\xcc\x32\x07\x02\x03\x01\x00\x01\xa3\x82\x02\x5a\x30\x82\x02\x56\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x2e\x0b\x65\xf9\xd6\x65\xde\x4b\xa3\x25\x75\xa4\xa1\x2e\x85\x21\x40\x73\xb9\x0a\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x81\x9f\x06\x03\x55\x1d\x20\x04\x81\x97\x30\x81\x94\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x0a\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x14\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x63\x72\x6c\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x81\xfe\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf1\x30\x81\xee\x30\x3f\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x33\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x49\x73\x73\x75\x65\x64\x54\x6f\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x88\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x7c\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x96\x0b\xc8\x16\xbb\x92\x62\xe8\x12\x8d\x60\x25\xe6\x12\xac\x77\xb1\x93\x96\xa5\xaa\x58\xf8\x1f\x80\x33\xd5\xcc\x7e\x2d\x2c\xb1\x84\x4e\x2b\xd6\x45\x0f\x0d\x38\xb5\x3a\xa6\x88\x9d\x59\xae\xf0\xce\xa5\x7a\xc5\xf8\xee\x9d\x79\xe3\xa7\x73\x5e\x6c\xbb\xb8\xab\x64\x48\xbc\x3b\xba\x5a\x1a\x5d\x55\x53\x98\xf4\x68\x54\x8e\x35\xb8\x23\x07\xb6\xa4\x7c\x75\xc5\x14\xa3\x22\x9e\x9f\x11\xb6\x16\x30\x91\x2c\xd8\x9e\xa0\x02\xac\xa2\xe1\xc7\x83\x41\xe1\xc1\xcd\x62\x84\x58\x37\x91\x03\x5c\x38\x58\x30\x1c\x11\x61\xd2\x01\x49\x84\x6a\xe0\x71\x04\x74\xbb\x94\x70\x7a\xf9\xf0\xcf\x3b\x16\xe9\x79\xb5\x0b\xa2\x05\xc2\x72\x03\xe5\xdf\x60\x3a\x64\x72\xb3\x03\x06\x40\x12\xd1\xd3\x0b\xa3\x0b\x9e\x42\x6d\xb0\xeb\x95\x47\x9a\x36\x46\x82\x24\x65\x53\xd5\xbc\x16\x08\x5f\x20\xee\x57\x5c\x02\x24\xd9\xc7\xd4\x16\xbc\x4b\x88\x18\x3a\xcc\x0c\x2a\x23\x71\x7d\x08\xc1\x7f\xf6\xb2\xf1\x13\xa7\xed\x82\x4e\xec\x0b\xe1\x13\xae\xc2\x35\x81\x40\xd5\x0e\x9e\xd7\x79\x18\xdd\x3e\x67\x0f\x43\xb0\x76\xd2\xa8\xce\x7a\x6d\x77\xfa\x27\xc9\x58\xad\xb1\x69\xda\x17", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1421, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x89\x30\x82\x04\x71\xa0\x03\x02\x01\x02\x02\x01\x50\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x30\x30\x31\x31\x34\x31\x37\x33\x38\x30\x35\x5a\x17\x0d\x31\x36\x30\x31\x31\x34\x31\x37\x33\x38\x30\x35\x5a\x30\x57\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x12\x30\x10\x06\x03\x55\x04\x03\x13\x09\x44\x4f\x44\x20\x43\x41\x2d\x32\x36\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xc2\xe4\x71\xba\xff\x44\x1f\xa5\x11\xe5\x8e\x58\x1a\x35\x7e\x04\x42\x7c\xfb\x54\xe1\xce\x5e\x25\xa3\xf0\x03\xc0\xab\x6c\x2b\x3e\x00\x8b\x1f\xca\x8d\x46\x13\x11\x17\x4d\x15\xe9\x90\xe6\xe9\x9d\xd7\xd3\xd2\x8d\xe6\x97\x56\xbc\x5c\x68\xae\xff\x1f\xe9\x4c\x2e\x46\x41\x06\xb6\x8d\x0d\x31\xec\x73\x41\x22\x07\x77\xee\x44\xbe\x3b\x60\xb3\x42\x94\x64\x47\xef\x24\x5f\xc5\xba\xb6\xdc\x43\x31\x04\xcf\xc1\xda\x5f\x23\xbd\x70\x95\x5c\x3f\xa6\x58\x2b\x5e\x18\xac\xd1\x90\xd3\xd6\xad\x56\x10\x5b\x27\x40\xeb\x90\xc2\x4c\x7c\xab\x17\x66\xc2\x29\x96\x23\x75\x7f\x0c\x0b\x00\xe7\xe7\x0b\xf9\x28\xf2\x95\xd3\xa9\x6f\x9d\x28\x4f\x62\xea\x69\xce\x8c\x06\x48\x7f\xca\x1c\x29\x44\x35\x73\x36\x4a\xe8\x9e\x7b\xd4\x37\xcf\x9a\x93\x3c\x53\x54\xe6\x1c\x93\xb5\xef\x79\x69\x74\x44\x08\x6a\x4d\xef\x12\xd8\x2f\x63\xaf\x99\xcb\x45\x3b\x8a\x09\x74\x14\x2f\xcd\xfb\x5e\x26\x60\x68\x61\x20\x82\x57\x71\x14\x6f\x25\x3c\x3d\xaf\x0f\xda\x37\x9a\x6d\xfc\xa6\x45\x8c\xbe\xb5\xdb\xe2\x94\x0b\xd0\x47\xc2\xb6\x54\xa3\x32\x9a\x69\xfa\x22\x37\xd4\xda\x3b\x38\x99\x02\x03\x01\x00\x01\xa3\x82\x02\x5a\x30\x82\x02\x56\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x6a\x5f\xb9\xf4\x7a\x36\x2c\xe2\x75\xf0\xbb\x64\x32\xc1\xf1\xb4\x4c\xa5\x2c\xfd\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x81\x9f\x06\x03\x55\x1d\x20\x04\x81\x97\x30\x81\x94\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x0a\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x14\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x63\x72\x6c\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x81\xfe\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf1\x30\x81\xee\x30\x3f\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x33\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x49\x73\x73\x75\x65\x64\x54\x6f\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x88\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x7c\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x7a\x3e\x6c\xac\x06\xcf\xf2\x6e\xcb\xfd\xed\xb0\x68\xd2\xc2\x96\xf4\xe3\x3c\x37\x10\x2d\x66\x95\xa7\x1d\x56\x69\x1d\x4a\x26\x29\xa5\x2f\x55\xe6\x3f\xd3\xb0\x32\x45\x8d\x14\xa1\xdb\x75\xa4\x6d\x98\xfc\x6e\xf5\xca\x7e\xd8\xca\xce\x52\xa4\x85\x01\x98\x9d\x19\x22\x60\x5a\xca\xc2\x2e\xf5\x22\x13\x0b\x18\xad\x6b\xc6\x1c\xf2\xd9\xa6\x92\xb4\xfb\x90\x07\x18\xaf\x42\x9b\x2b\x50\x2a\xc5\x2d\x03\xe8\x06\x2c\x9f\xf6\x79\x1e\x89\x4d\x2d\x39\x76\x20\x5f\xc8\x98\xa8\xde\x0e\x61\x0a\x2c\xbe\x0a\x04\x5e\x36\x75\xcf\x6d\x6b\x05\xed\x2a\x5e\xa3\x0c\x72\x90\xcc\x98\xce\x2c\xf9\xa9\x97\x1b\xc5\xfc\xdf\xc0\x2c\xa5\x90\x39\xac\xa0\xaf\x63\xdc\x63\x86\xaa\xcc\x1d\x3f\xe7\xdb\x62\xda\x12\x0b\x63\x3c\x43\x49\xf8\x05\x39\x55\x2d\xc6\x80\x96\x51\x01\x64\x51\x5c\xcb\x26\x7a\xea\xb6\xa8\x29\x80\xe2\x77\xc2\xe8\x8c\x16\x72\x85\x7d\x6f\x8e\x34\xa5\x5f\x50\xbd\xc3\x4e\x8d\xf5\x7a\x7d\xc8\xd6\x61\xae\xdc\xfa\x48\x12\x54\x12\x1d\x48\x5e\x96\xf0\xe5\xfb\xa8\xa1\x75\x61\x4c\x56\x82\x2d\x88\xd7\x18\xb9\x09\x55\xbf\xb1\x7e\x59\x94\xc2\x2c\x60\x93", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1360, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x4c\x30\x82\x04\x34\xa0\x03\x02\x01\x02\x02\x02\x01\xb2\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x35\x35\x30\x32\x35\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x35\x35\x30\x32\x35\x5a\x30\x57\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x12\x30\x10\x06\x03\x55\x04\x03\x13\x09\x44\x4f\x44\x20\x43\x41\x2d\x32\x37\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\x96\x84\x08\xfd\x7a\xba\xb6\x94\x83\xd0\x9d\x3b\x19\x0b\xcf\x04\xdf\x88\x2a\x9e\xb8\x1a\x58\xeb\x87\x22\x2a\x63\x3a\x7f\x39\xc3\x6b\x6b\xe7\xbc\x1a\xa8\x11\x02\xf5\x61\xcd\x01\xa4\x98\x75\x73\xc6\x17\x8c\x89\x3c\x42\xc7\xe2\x8e\xc9\x89\xb1\xa8\xff\x9f\x9e\x0a\xbb\x68\xde\xba\xde\xb6\x11\x01\x94\x43\x74\x9c\xbd\xcf\xe1\xbe\xe0\xce\x1c\x6d\x6a\x7c\x7c\x7f\x62\xe8\x5e\xda\x36\xea\x94\xc5\x06\x8b\x46\x88\xe2\xc0\xc2\x24\x09\x05\x50\x7f\xf3\xd9\xe5\x12\x05\x5e\xd2\xd7\xce\x35\xc2\x7b\x47\x35\x18\x15\x57\xcd\xc5\x9c\xf7\xe9\x31\x7a\x2a\x8c\x39\xf1\x35\x8e\x2e\xa1\x50\x91\x40\x37\xa2\x8e\x92\xce\x8c\x56\xb7\xfc\xec\x2f\x76\x3c\x82\xde\xc0\xc8\xbb\x47\xd6\x7e\xf7\xa9\x28\x5c\x29\x1e\x96\x00\xad\x27\x86\x74\x84\xb4\x04\xba\xa7\x55\x16\x69\x0e\x93\xd4\xbc\x8c\x62\x4d\x4f\x56\x82\xb6\xc7\xb4\x78\x2f\x7d\xd9\xd3\x43\xed\x73\x26\xf1\x53\xee\xff\xb3\xd5\xb0\xe4\x6e\xb6\xbe\x2d\x1b\x68\x0d\x77\x58\x84\x57\x42\xcf\x40\x70\x8c\xbc\xca\xc0\x39\x75\x4e\xf7\x19\x88\x7c\x6b\xec\x29\xc6\x64\x1d\xe8\x53\x50\xbd\x94\xaa\xe4\x83\xdd\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x1b\x04\x04\x40\x45\x5e\x7d\x2b\x5e\x0b\xcc\x99\x65\x4d\xf3\xa4\xde\x90\x77\x17\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x40\xc0\x0c\x4b\x9f\x8d\x23\xa6\x31\xd1\x34\xae\x9e\x91\x5c\x5f\x84\xdd\x9c\x04\x95\x61\xcd\x80\x14\x1f\x6e\xde\x88\x97\x7c\xe9\xaf\xa5\xf5\xf7\x70\x27\xe1\x10\x44\x93\x0a\x31\xa4\x09\xa6\x9f\x70\x4b\x22\x90\x4e\xbf\x16\xff\x62\x4f\xd7\xf4\x82\x35\x42\x17\x07\xee\xb5\xa6\xcb\x6b\x84\xb7\x1a\x6e\x17\x1c\x45\x17\x4c\xd1\xcd\xcf\xe5\xdc\x0c\xd7\xc5\xf6\xc6\xba\x2e\x9c\xb3\x3b\x6f\x5c\x16\x5e\x43\x6c\x25\x4a\x9c\xf5\xb0\xef\xf9\xaa\x13\xce\xba\xa6\x3d\xb2\x50\xdc\x74\x2c\xb8\x14\x15\x79\xbd\xe6\x1d\x91\x1d\x68\x1a\x3e\x15\xb5\x07\x77\x51\xd1\x5f\x03\xac\x01\xa6\xd2\x66\xe8\x0a\xd7\xaf\x33\xa1\x33\x95\x08\x6d\xfc\x88\x92\x92\xf5\x72\xfa\x2e\x8f\x93\x31\xa4\xbf\x29\x23\xa3\x21\x53\xba\x3e\xb0\x75\x20\xe4\x15\x40\x3a\x58\xc8\xc8\x1e\xdd\xcb\x75\x10\xb5\x41\x01\xe6\x16\x5a\x68\xf7\x37\x39\xd6\x11\xb6\x30\x25\xfb\xb4\x7e\xc8\x12\xc6\xd8\x9f\x63\xa9\xd9\x6d\x86\xd2\x36\x47\xa1\x73\x29\x22\xfe\x02\xf4\x63\x2b\x29\x20\x97\xae\xb5\x34\xbc\x58\xe6\x60\xb6\x11\xd7\x82\xa6\xe7\xe2\x37\x7e\x3b\x7b\x06\x78\x26\x6f\x6c\x45\x73", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1360, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x4c\x30\x82\x04\x34\xa0\x03\x02\x01\x02\x02\x01\x2d\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x30\x38\x30\x35\x30\x37\x31\x34\x34\x34\x35\x31\x5a\x17\x0d\x31\x38\x30\x35\x30\x37\x31\x33\x34\x34\x35\x31\x5a\x30\x63\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x1e\x30\x1c\x06\x03\x55\x04\x03\x13\x15\x44\x6f\x44\x20\x49\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x43\x41\x2d\x32\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\x99\x50\x69\xc5\xef\x60\xb5\x6d\xb9\xab\x5b\xce\x15\xfe\xef\xcd\xeb\x71\x8e\x34\xd2\x43\x3b\xc4\x47\xcb\x49\x69\x6b\xa1\x3d\xb5\x75\xa3\xf8\x26\x42\x2d\x5f\x3f\xa4\x7f\x11\x90\xf8\xe6\x4e\xe9\x24\xdc\xeb\x79\xb7\x07\x55\x5a\xb1\x49\x64\x5f\xb6\x97\xaf\x76\x50\x7a\x22\x8f\xef\x94\x35\x83\x7c\x4f\x80\x21\xdf\xf7\x84\xbf\xf9\x0a\x0e\x2d\xbe\xf5\x9c\xc0\x04\xd1\xd1\x9a\x27\x1d\x8d\x7a\xa1\x98\x8a\x7a\x8e\x5f\xc9\x38\x2d\x31\xa1\x18\x6b\xf4\xc0\xd5\x2c\xad\x63\xd6\x6f\x91\xda\xe0\x26\x00\xe8\x20\x8f\xcc\xed\x5b\x6e\x20\xce\x55\xa6\x08\xe9\xac\x3a\x92\xbe\xf4\x10\x43\x14\x49\x66\x10\x9c\xa8\x90\x18\x94\x08\xb7\xfa\xd8\x15\x14\xa0\xee\x22\xe7\xc8\x71\x03\x05\xa9\xb0\x84\x9f\x78\xa3\x6e\x3b\x8d\x96\xb8\x09\x81\x71\x4e\x02\xc7\x2a\x26\x36\xa6\x18\x61\x30\xff\xcf\x5c\x1d\x79\x80\x6f\x75\x37\xe4\x6e\xa2\x4b\x5d\x0f\xfc\x54\x9a\x53\x29\xe9\x0d\x8f\xb7\x3a\x03\x32\xa0\xa7\xd5\xcf\xd8\x8f\xe6\x4a\xa7\xba\x08\x75\xcd\xc1\xc1\x97\x3f\x3c\x2d\xac\x91\x92\xf0\x1e\xc1\x5d\x81\xfa\x6f\x48\x9e\x84\x96\x0f\xa3\x0e\x15\x64\x7e\xa7\x02\x03\x01\x00\x01\xa3\x82\x02\x11\x30\x82\x02\x0d\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x4b\x1c\xd6\x8e\x0d\x08\xe5\xcc\xad\xa0\x02\xc3\x78\x90\xc3\x23\x63\xae\x11\xae\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x01\x30\x57\x06\x03\x55\x1d\x20\x04\x50\x30\x4e\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x0a\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x14\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x63\x72\x6c\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x81\xfe\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf1\x30\x81\xee\x30\x3f\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x33\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x49\x73\x73\x75\x65\x64\x54\x6f\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x88\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x7c\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x4c\x92\xeb\x5f\x20\x3b\x32\x50\x32\x41\x3b\x6e\x22\xba\x73\x02\xeb\xc5\x1a\x06\xf0\x0c\x5a\xa3\x4a\x2a\xd8\xbb\xd7\x6f\x41\x70\x3d\x9e\x15\xe4\x1d\x5c\xa7\x0e\x42\xcc\x28\x0d\x2c\xd0\x71\xf5\x9a\xc8\x82\xc2\x89\x3e\xa9\x41\x54\xea\xda\xfa\xe4\x2d\x8e\xa2\x35\x95\x0e\x33\xce\x18\x59\x2d\x7c\xd9\xd1\x9c\x76\xfd\x69\x62\xc0\xc3\x6b\x03\x94\xbb\x5d\xfa\xf7\xa9\x91\xf4\xd9\xe3\x20\x35\xab\xf6\x78\x28\x0f\xdb\xaf\x60\xa1\xba\x70\x75\x71\x40\x42\x24\x4f\x43\xe9\xfc\xa8\xfc\xe6\x1b\x1f\xb2\x95\xfa\xde\xde\x7c\x2c\x6c\x74\xb3\xa5\xe3\xaa\x73\xcc\xdd\x34\xd0\x2e\x83\xb5\xbc\xd4\xa0\x47\x8d\x11\xff\xe6\x14\x81\x6a\xb6\xde\x89\xd0\x16\x87\x50\xe8\x95\xe7\xd1\x57\x70\xd1\x45\x09\xc8\x63\xa8\x8b\xd2\x54\xd1\x6f\x62\xb0\x70\x84\xe6\x4c\xb1\x9e\xf3\xc3\xf3\x05\xd1\x7d\x8f\x09\x96\xbf\x12\x6a\x47\x93\x94\x90\x3b\xad\xfa\xbd\x04\xe1\x83\x9c\xd5\x82\xf4\x91\x4f\x5f\x28\x94\x16\xbd\x5f\x6f\xc4\x97\xa6\xda\x69\x0f\xc8\x7d\x25\x09\x6c\x95\x5c\xd0\x56\x3f\x73\x94\xe8\xbe\x72\xdc\xbf\xd9\x84\xbb\x2d\xe3\xfa\xe2\xff\x7b\x12\x2c\xb5", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1360, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x4c\x30\x82\x04\x34\xa0\x03\x02\x01\x02\x02\x02\x01\xb3\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x35\x35\x37\x30\x31\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x35\x35\x37\x30\x31\x5a\x30\x57\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x12\x30\x10\x06\x03\x55\x04\x03\x13\x09\x44\x4f\x44\x20\x43\x41\x2d\x32\x38\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xab\x4b\x55\x9a\xd1\x83\xc6\x45\x3d\xd0\x03\x2f\xab\xf1\x98\xab\x34\xc3\x61\xcb\xe4\xcf\xff\x33\x4d\x0c\x16\xde\x8c\x7b\xa4\x23\xc6\x04\xc8\xd3\xd7\xd2\x98\x2e\xc2\x7c\x3d\x79\xdf\xec\xf3\x45\x14\x4f\xf0\xa9\x15\x33\xe1\xd1\xa6\x3c\x16\x84\x99\x3c\x2e\x94\x78\x67\x77\x31\x12\xcf\xa6\xc1\x78\x19\xd3\xc4\xcc\xfc\xb6\xf9\x1c\x55\x4f\x1f\x94\xa7\xcf\xb2\x1b\x27\x59\x6f\xa7\xe7\x78\x19\xc9\x3e\x78\x4d\x52\x48\xd2\x21\x18\xe7\x1d\x22\x68\xbb\xfe\x78\x3d\xb5\x0a\x2f\xb0\xec\x7a\x82\xe9\xd8\x65\xfd\xf0\xdb\x3d\xa4\xf3\x5e\x38\xfd\x4d\xeb\x37\xfa\x02\x00\x2c\x54\xff\x79\xb5\xcb\x9e\x30\xee\xd7\x41\x3c\xf1\x3d\x3e\xf6\x12\x1a\x35\x04\x53\x4d\x34\x17\x71\xff\x64\xb9\x38\x14\xd6\x77\x47\x57\x2d\xb7\xac\xcf\xe1\x37\x50\x24\xee\xd1\xca\x3f\x44\xd7\xe9\xfa\xd2\xe0\x43\x35\x69\x8d\xe6\x50\x95\xdf\xf1\x48\x6f\x24\x5c\xac\x55\x47\xd2\xe3\x75\xb3\x35\x51\x0a\x22\xb6\xf2\x83\x8f\xa2\x71\xbe\x40\xb9\xba\xf4\x4b\x7a\x73\x7a\xf9\xf3\x40\xad\x5f\xdb\x98\x1d\xe6\x13\x7f\xdf\xda\x24\x51\x6b\xd8\xd0\x8b\xd2\x9f\x85\x61\xa1\xf6\xd2\x3f\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x26\xb4\xae\xaa\x2d\x8e\xe9\x8d\x8a\x6f\xb6\xb5\x5b\x9d\xea\x4e\xae\xb1\x9c\x69\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x68\xb3\xd1\x49\x11\xab\x5b\xdd\xbd\xb4\x1d\xea\x5a\xde\xa7\xb8\xcf\x87\xda\xa8\x90\xc5\x23\x49\xd0\x49\x27\xbd\xea\x00\x2b\xfc\x7e\x1d\x8b\xe7\x98\xee\x5e\xb2\xe3\xcf\x83\xe1\x88\x83\xb1\x4b\x27\x61\x44\xd5\xa4\x5b\xff\x07\xc5\xc8\x42\xd4\x76\x3c\x70\xe0\x38\x21\x0c\x8d\x13\xcb\xef\x17\x3b\x23\xd2\x1f\xdd\x4d\x84\x36\x8c\xa6\x87\x59\x04\xfb\xd9\x2e\x1e\x69\x9e\x56\x74\x48\xb4\xc6\x52\xb1\x0a\x7d\x2e\x10\x5c\x65\x82\xfc\x0c\x86\x61\x70\xa9\xc5\x3a\x46\x60\x5f\x6d\xbe\x81\x88\x66\xdf\xb3\xc4\x8e\x99\x9b\xb0\xfc\x3d\xde\xc1\xda\x8c\x1b\x44\x20\xd4\xa3\x7a\xc0\x00\x10\x47\x70\x89\x44\x15\x6c\x8b\x57\xea\x7e\xb5\x8f\x78\xd0\x14\x73\xcc\x3f\x95\x91\xec\x5b\xad\x53\x70\x4c\x79\xf5\x81\x21\x98\xd1\x7e\xaf\x38\xb1\x38\x87\xce\x70\xde\x23\x23\x10\x25\xf8\x1a\x8a\xd1\x46\x6a\xa5\x4e\xc6\x77\xf5\xe8\x02\x83\xeb\xdc\x3f\x32\x59\x52\x26\x6c\x00\x69\x64\x25\x90\x15\x09\x96\xe3\xde\x64\xb1\x7c\xa0\x9c\xc0\xd3\xfe\xeb\xe9\x8c\x7b\xa5\x8c\x94\xb1\x01\x04\x67\x33\x04\x79\x49\x58\x6a\xa6\x41\xe9\x58\x27\x56\x95\x98\x03\xf7\xee", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1360, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x4c\x30\x82\x04\x34\xa0\x03\x02\x01\x02\x02\x02\x01\xb4\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x35\x35\x38\x32\x36\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x35\x35\x38\x32\x36\x5a\x30\x57\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x12\x30\x10\x06\x03\x55\x04\x03\x13\x09\x44\x4f\x44\x20\x43\x41\x2d\x32\x39\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xbb\x4a\x10\x76\x19\x34\x40\x1e\x72\x2b\x61\x90\x32\x88\xf0\x3b\x75\x1c\x3e\x3d\x6a\x77\x3a\x97\x79\x0b\xec\xe8\x51\x0f\x7e\x6a\x00\x43\x98\xc4\xe6\xa1\xe0\x45\x5b\x2d\x03\xfa\x66\x68\xa5\xa3\xd0\xe0\x92\x81\x3d\xf4\x77\x6d\x03\xdb\xdb\x25\xe6\x76\x60\x94\x3f\xf6\x5f\xdf\x5a\x18\x41\xe2\xf3\x37\x48\xf1\x97\xfe\x2a\xad\x44\xe7\xfc\x31\xe3\x16\xf8\xbc\x9a\x75\xa5\xfd\x2f\x56\x9a\x82\x49\x3a\xcd\x4d\x4f\x70\xcd\x3f\x7f\x00\x11\x16\x83\x0a\xae\x57\x7d\x69\x04\x83\xa0\xf3\x77\xca\x05\xc1\xff\xfb\x85\xdf\x98\x38\xf4\xfb\x80\x13\x3d\x38\x77\x6f\xce\x0c\x9b\x18\x53\xbc\xd8\xf4\x24\xff\x3c\xba\x9b\xb0\x2b\xc7\xe2\x90\xd1\xfd\x03\xf3\x38\xef\xcc\x52\xc3\x7e\xe3\x7a\x6c\xa1\x48\x11\x68\xee\x00\x38\x4d\xca\x38\x7c\x30\x3d\x87\x8d\xee\x20\x24\x06\x04\x5f\x5c\x20\xd1\x05\xc6\x80\xbf\x09\x49\xe0\x6b\x9a\xc4\x0b\x2d\xab\x61\x76\x5e\x1c\x70\xd9\x82\xc8\x8b\x0e\x33\x83\x19\x70\x2e\x2a\xf1\x7e\xe9\x19\x4a\xfb\x08\x1e\x93\xcd\xf3\x57\x77\xb8\x17\xe5\x73\x9f\x35\xa3\x34\x5e\x55\x88\x75\x27\x60\xd0\x15\xa6\x05\xc3\x16\xf6\x4b\xa5\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x9b\xc5\x94\x3f\xef\x61\x61\x57\xa8\xe1\xfe\x59\xae\xe2\x69\x18\xdb\x18\x57\xde\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x2e\x7a\x47\xcf\xb4\xb7\xb9\xa3\x56\x8a\x5e\x32\xeb\xa5\xd8\xd6\x54\xc3\xe3\x3a\x6f\xc2\xc5\x88\x14\xad\xb8\x08\xf5\x05\xa8\x4d\x57\x38\xbc\x45\xe4\x86\x0f\x83\x1c\x7b\x48\x86\x3e\x82\x06\xf3\x88\xdb\x54\x28\xc9\x34\x85\xe9\x9f\x03\xbc\xad\x4c\x0f\x9e\x06\x55\xf6\xdf\x13\x02\xdd\x65\xad\x09\x38\x01\xe8\x62\x30\xab\x99\xde\x83\x51\x67\xed\x68\xab\xba\x00\x64\x3d\xf7\xda\x59\x3e\x0d\x13\x5f\xde\xdc\x29\x7b\xdf\xcc\x23\x5b\x9c\x02\x4d\x6a\x99\xb0\x39\x71\x83\xa4\x2b\x71\x2c\xd3\xc6\x84\xe1\x15\x08\x63\x17\xd8\x05\x4d\x54\x3e\x4f\x2d\xe7\x2d\x9a\x23\x36\x08\x52\x69\x5b\x6f\x0e\x71\xef\xa8\x90\x2f\x31\x3e\x73\xae\xf4\x7a\xd2\x99\xdf\x24\x84\x07\xf3\x71\x6f\xc7\xf8\x3a\x7a\x5c\x9a\x5c\x11\x5a\xf7\xc8\x3f\x3a\x6f\x43\xb5\x88\x37\x7a\x41\xaa\x1a\xdf\x18\x14\xf0\xaf\x90\xfe\xa2\x45\x61\xb2\xea\x89\x37\x34\xab\x0d\x3c\xe8\xc0\xd0\x08\x89\x83\x55\xa5\x47\x0b\x4b\x4c\x37\xf5\x29\xa9\xa0\x6f\x1e\x75\xa9\x46\xb5\x72\xfc\x6c\x9e\x2c\xfa\x3f\xde\x8e\x95\x4d\x3d\xbb\x88\x1f\x07\x48\x42\xd1\x10\xbe\x02\x8b\x8d\x30\x30\x08\x7c", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1360, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x4c\x30\x82\x04\x34\xa0\x03\x02\x01\x02\x02\x02\x01\xb5\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x35\x35\x39\x32\x34\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x35\x35\x39\x32\x34\x5a\x30\x57\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x12\x30\x10\x06\x03\x55\x04\x03\x13\x09\x44\x4f\x44\x20\x43\x41\x2d\x33\x30\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xcd\x3c\x93\x67\x26\x0f\x1e\xe6\x81\x5e\xee\x9f\xce\xf9\x50\x1e\xdd\x62\xa2\x15\x84\x25\xe5\x77\x56\xc2\x53\xc7\xa0\xe0\xc9\x42\x53\x2a\xe6\x4e\x67\x52\x3e\x70\x5d\xc6\x68\xb8\x15\x65\xc8\xdd\x76\xd0\xb2\xd5\x9a\xc9\xaa\x2c\xe3\xc4\x09\x22\x04\xf7\x7d\x89\xa4\x88\xd9\xc2\x83\xec\x59\x7b\x49\x10\xef\x9a\x8d\xc8\x86\xf9\x73\xdd\xf2\x0e\x60\x7a\x9c\xd9\x8f\x4f\x77\x83\x78\x0c\x4b\x4c\x2d\xde\xed\x9f\xb1\xaf\x1c\x43\x32\xac\xb0\xd0\x38\x3a\x54\x9e\x26\x0f\x14\x4b\x8d\xc1\x6e\xf5\x26\x95\x24\x37\x87\xed\xed\xe0\xc3\xd5\xef\xc0\xf0\x0d\x75\xf5\x6f\x9a\xbe\xfd\x64\x3c\x2a\x22\xaf\x38\x12\x2b\x73\x2d\x0d\x09\x7e\x11\xea\xfc\x6b\x32\x73\x4d\x5c\xc4\x59\x17\xda\xc4\x59\x81\x06\x04\xb6\x0b\x02\xd0\x67\xb3\x96\x9c\x79\x13\x43\x15\x24\x5e\xc4\x95\xfd\x50\xd1\x5e\x08\x9e\x1f\xb4\xa1\x96\x92\x39\x2b\x68\xac\xbd\x8c\x3e\x86\x89\x2e\x3e\xb6\xeb\x45\xe0\xbc\x1c\x9b\x2b\x0b\x78\xef\x6d\xf1\x1a\x60\xdd\xe6\x47\xf8\x75\xf4\xf2\xca\x44\xa8\xfb\x80\x59\xe0\x51\x63\x85\x0b\xb6\xfb\x16\x2c\xe3\xf3\xff\x6f\xf7\x6a\xbe\x9b\xcd\x35\x81\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x08\x4e\xd5\xa4\x3c\x2a\x04\x9b\x93\x1b\xb7\x04\x08\x8e\x74\xb9\x06\x7c\x0d\xa3\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x99\xf7\xd7\xac\xb1\x25\xbb\xaf\x1f\x03\x35\xbf\x56\x7b\xf5\xa1\x60\xa6\xda\x94\xee\x8f\xdd\xcc\x32\xd1\x35\x0d\x9f\xe5\x5e\xa6\x74\x12\x7f\x01\x2a\x5a\x33\x21\xc0\xd7\x06\xca\xbf\xdd\x1b\x66\x54\x4f\x02\x55\xfc\xa6\xdf\x68\x17\xd2\xbf\xf4\x5d\x6b\x8e\xf9\xc8\x73\xdb\x5b\x54\x3a\xdd\xbd\xe1\x69\xd9\xfa\x91\xdb\x2a\x5a\x0f\xc7\x8e\x88\x35\x08\x23\xab\x64\x67\xdb\xdf\x1f\x6b\xfc\x8e\x5f\x72\x9f\x97\x81\x87\x81\xe5\xa5\x21\x7d\xd8\x4f\xfe\x31\x9b\xa1\x79\xa4\x26\x54\x41\xf0\x45\x90\xaf\x5f\x42\xc1\x1e\x96\x87\xf9\xcf\xc7\xa4\x1a\x44\x53\x91\x11\x34\xd0\x80\x64\xb4\xd9\x13\xd6\x2d\x0e\x88\xc7\xa9\xb1\x20\x24\x56\x7c\x07\xfb\xc4\x7b\xf4\xf9\x9c\x7a\xb5\x0e\x44\xb7\x32\x57\x3a\x4d\x83\x91\xc4\x75\x18\x94\x96\xcf\x5f\xf6\x6f\x36\x2b\xae\x73\x19\xf8\xe0\xfc\x69\xce\x86\x7f\xff\x42\x21\x3e\xf9\x38\xc3\x5e\x7a\x99\x28\xde\x98\x2c\xb0\x9c\x88\x10\xb2\x34\x1e\xaa\x08\x0a\xcb\x4e\x01\xc5\x64\xeb\x4d\xa5\xa7\xf3\x08\x3d\x0b\x7a\x75\x3a\x96\x4a\xf7\xfd\xcf\x1c\xaf\x72\x4c\x71\x42\xd9\xfe\x23\xb9\x5a\xb4\xad\x57\x05\xfd\x24", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1427, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x8f\x30\x82\x04\x77\xa0\x03\x02\x01\x02\x02\x01\x4f\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x30\x30\x31\x31\x34\x31\x37\x33\x36\x33\x32\x5a\x17\x0d\x31\x36\x30\x31\x31\x34\x31\x37\x33\x36\x33\x32\x5a\x30\x5d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x18\x30\x16\x06\x03\x55\x04\x03\x13\x0f\x44\x4f\x44\x20\x45\x4d\x41\x49\x4c\x20\x43\x41\x2d\x32\x35\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xa2\x47\x73\xdf\x40\xa0\x15\xa6\xa7\xed\xa0\xe9\xc8\x7f\xfb\xd2\x8e\x4f\x09\xe5\xc5\x8d\x5c\x64\x1a\x43\x7e\xe1\x73\xb9\xaf\x10\x45\x7d\x33\x2d\xea\x60\x26\x73\x62\x21\x8b\x2f\xae\x9c\x17\xcc\xd5\xe6\x38\xa1\x2d\xee\x02\xb3\xf0\xb9\xde\xa6\x8b\x88\xd1\xb4\x63\x3d\xc8\x88\x88\x1c\x7f\x5e\x42\xeb\x1d\x93\xf3\xab\x78\xe9\x94\x1d\x03\x3d\x4d\x3e\x19\x17\x7c\xef\x09\x22\x82\xfe\xc3\xe4\x9f\x9e\xcd\xd9\xbd\x82\x84\x39\x0c\x52\xb7\x7d\xbb\x41\x7f\xf5\x8d\xa4\x2a\xf6\xd0\x5c\x62\x31\xc8\xe3\xea\xb7\xb7\x78\xd6\x9b\x4e\x62\x5e\xb5\x12\xdb\xca\x74\x5d\xb8\x6a\x11\x43\x49\x15\x83\xb9\x69\x63\x8f\x4d\x62\xc2\xf2\x04\x77\x59\x04\xab\x05\xce\xac\x14\x5e\x99\x7d\x1f\x4e\x8b\xd4\xc9\xa2\x97\xba\xce\xd0\x9c\xe3\x9d\x36\xfe\x8c\x81\xfc\x68\x39\x4d\x9e\x23\xe2\x83\xb3\xd3\xab\xe0\xd9\xdf\x99\x64\x0a\xc8\x34\xf2\xac\xe2\xf5\x50\x9e\x5e\x6d\xd1\x0f\x45\xb2\x52\xeb\x4e\x92\x6f\x1f\x69\xc8\xa1\x37\x18\x6d\x61\xc8\x86\xaa\xcf\xc4\xb7\xcc\x37\x49\xfa\x7c\x1b\x66\x72\x81\x4a\x46\x8c\x41\x4a\xab\x20\x0a\x76\xf7\xce\x12\xd4\xd0\x06\x55\x02\x03\x01\x00\x01\xa3\x82\x02\x5a\x30\x82\x02\x56\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x26\xdb\xeb\xb1\x45\x2e\xd8\x12\x90\x4d\xf5\x12\x41\xf5\xc3\xf0\x1e\xcc\xe0\xce\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x81\x9f\x06\x03\x55\x1d\x20\x04\x81\x97\x30\x81\x94\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x0a\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x14\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x63\x72\x6c\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x81\xfe\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf1\x30\x81\xee\x30\x3f\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x33\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x49\x73\x73\x75\x65\x64\x54\x6f\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x88\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x7c\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x69\x90\x0d\x6e\x22\xe9\xbb\x05\xb6\xe6\xcf\x38\x24\xa8\x90\x33\x79\x9a\xe2\xd9\x60\x11\x22\xd5\xec\x28\x47\x90\x20\x37\xe2\x84\x84\xb2\x68\xf6\x7d\xfe\x8b\x4b\x11\xb9\x1d\xbf\xdb\xcc\xdc\xe9\x72\x7e\x46\xc9\x8c\x48\xa9\x36\x86\x60\x90\x99\xda\xf8\x58\xdb\x72\xd0\xa9\x8e\x6e\x60\xc8\xbc\x60\xeb\x04\xd0\x0e\xf8\x71\x85\xe7\x5b\xe9\xc1\xfb\xec\x92\x95\xaa\x03\x69\xfd\xc8\x34\x05\x65\xd5\x02\x4f\x4f\x99\x83\x1a\xc8\x46\x5c\x3b\xfe\xf8\x71\xd8\x7c\x3b\x3d\x5c\xd1\xcd\x82\x4c\x43\x8d\xf5\x1a\xa6\xa8\x2f\x4b\x02\x74\xd7\x28\xd6\x91\x46\xd0\x4d\x63\x8d\xad\xf4\x94\x88\x98\x23\x23\x8b\xb6\xed\x8e\x40\x4e\x86\xf4\xd9\xe9\xd1\x36\x4a\xd4\x53\xc0\x4b\x96\xf0\xb1\xb8\x6e\x40\x9c\x6a\x32\x7c\x65\x6d\xb6\x60\xed\x81\x4a\x50\x57\x53\x63\x66\xe8\x77\xc7\x79\xdc\x77\x23\x0b\x3d\x63\x4a\x6d\xbb\xe8\x4f\x43\x24\xcf\x6d\x98\x5c\x11\xe8\x2f\x88\xa5\x3a\xe5\x4e\xc4\xd8\xd0\xfe\x9c\x98\xe4\x32\xad\x8e\x27\x14\x55\xab\xda\xc8\xb7\x76\x42\xfb\x59\x18\x92\xb8\x0a\x2b\x9a\x66\xcc\x30\xfb\xc4\x63\x6a\x26\xb7\xb7\x91\x1d\x18\xa2\x3e\x9c", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1427, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x8f\x30\x82\x04\x77\xa0\x03\x02\x01\x02\x02\x01\x51\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x30\x30\x31\x31\x34\x31\x37\x33\x39\x32\x37\x5a\x17\x0d\x31\x36\x30\x31\x31\x34\x31\x37\x33\x39\x32\x37\x5a\x30\x5d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x18\x30\x16\x06\x03\x55\x04\x03\x13\x0f\x44\x4f\x44\x20\x45\x4d\x41\x49\x4c\x20\x43\x41\x2d\x32\x36\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xac\x5f\x10\x5b\x3d\x2a\x07\xfd\xee\xcf\x4e\xc6\xb0\x4e\x3d\x5a\xa0\x00\x60\x50\x79\xc2\x02\x45\x66\x4f\x38\x34\x81\x5c\x1c\xbf\x27\x60\x6a\x79\xcc\xa6\x97\x0b\xd6\x89\xe6\xd8\xdb\x95\x7c\x57\x3a\x07\xee\x46\xe5\x64\x2a\x13\x17\x8f\x1d\x30\xfc\x2d\xfa\x36\x7f\x37\x61\x24\xe5\x14\xa2\xfd\x22\x57\x1c\x61\xae\x4d\x2e\x03\x50\x66\x55\x46\xdd\x6a\x27\xf8\xa9\x79\xab\x5c\x2a\xe5\x25\x5d\x5c\x1b\xfb\x71\x0f\xb5\xb8\x15\x8f\x5f\x94\x7b\x03\xcf\xee\xab\x92\x08\x0a\xe4\xbd\xa3\xa1\x5d\x83\xd7\x3d\xc7\x9f\xd4\x44\x10\x3a\xa2\x5f\x5f\xe4\x86\x94\x6f\x03\xa0\x35\xf3\x83\xd8\xe1\xb8\x19\x9f\x7a\xba\x75\xcf\x00\x05\xd0\xdb\x23\xa4\x6a\x25\xd7\x69\x70\x45\xc6\x5d\x78\x8b\x07\x5f\x45\xac\x9d\xd6\xa3\x4b\x5d\x18\xcf\x8f\x4c\x0a\x11\xa1\xd9\x11\xdb\xf9\x9c\xa5\xd5\x8f\x9c\xea\x0f\x47\xbd\x25\x82\x94\xf9\x60\x92\x4a\x14\xf8\xba\x9b\xa9\x6c\xdf\xca\x15\x11\xa1\x8b\x39\xbe\xfa\x19\x4d\xbc\xbb\x14\x6f\xdd\x60\x7d\xb2\x9c\x90\x07\x7c\x80\x47\xb9\x85\x8c\xb8\x3e\xa3\x75\xb9\xae\x5e\x77\x91\x73\xc1\x75\x89\x55\xba\x4d\x86\xe4\xad\xbb\x02\x03\x01\x00\x01\xa3\x82\x02\x5a\x30\x82\x02\x56\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x32\xdf\xc8\x6d\xf3\xff\x3e\x29\xfd\xe9\x0c\x97\x29\x50\xf0\xa2\x10\x2c\x6e\x2f\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x81\x9f\x06\x03\x55\x1d\x20\x04\x81\x97\x30\x81\x94\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x0a\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x14\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x63\x72\x6c\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x81\xfe\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf1\x30\x81\xee\x30\x3f\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x33\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x67\x65\x74\x49\x73\x73\x75\x65\x64\x54\x6f\x3f\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x88\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x7c\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x6a\xc0\x50\x29\x84\xf8\xdc\x67\x13\xb1\x96\xee\xba\x5c\xd4\xe5\x92\xf9\xcd\x64\x65\x33\x85\x28\x0b\xa0\x1a\xab\x53\x1d\x8c\x40\x17\x91\xba\x66\xda\x6b\x6b\xbc\xac\x8e\x61\x01\xc3\x67\x35\x11\x59\x52\x85\x70\x5d\xa1\x86\xe7\x7a\xc1\x1c\xc3\xd8\x5e\xcb\x77\xbb\xcc\x5c\xdc\x1a\xdd\x04\x5f\xfa\x88\xed\xb3\x6e\xb5\xb4\x44\xcb\x3a\x35\x9d\xa0\x4e\x1c\xc0\x45\xb5\xf6\xd4\xcd\x06\x79\xd2\x1a\x39\xec\x25\x26\x71\x9c\xd9\xb8\x6f\x93\x6c\xd6\x3b\x34\x3b\x67\x99\xaa\x5f\xa5\xb8\x6d\x4c\xc7\x09\xea\xc9\xc0\x74\x99\xd9\x59\x8b\x29\x89\x90\x2b\x81\x95\xd9\x87\xfd\x55\xf8\x58\x75\x52\xa6\x7f\x22\x68\x6d\x85\xd6\x7d\xae\x8a\x0d\x2f\x34\xbf\xd7\x28\x6c\xc6\x5b\xad\xbc\xff\x1b\x3a\xc6\x64\x85\xa4\x9c\x7d\x84\x95\x9f\xa8\x03\x65\xe4\x7f\x4d\xcc\x0c\x75\x7a\x4a\x05\x44\x58\x80\x8b\x39\x34\x4f\x33\x3f\x2b\x44\xf1\xd6\x74\xef\xef\x7c\x9a\xd8\xdc\x0b\x18\x3d\xf2\xe5\x9d\x50\x3b\x23\x29\xe5\xf4\xcf\x60\xea\x60\x4f\x1c\x60\xc1\x1a\xb2\x9c\x5a\x02\x04\xb0\x7c\xc1\xc9\x15\x6a\xdb\x2a\xaf\x0b\x08\xbb\x3e\x71\x7a\xa6\x3c\xe5\x1d\x44\x22", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1366, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x52\x30\x82\x04\x3a\xa0\x03\x02\x01\x02\x02\x02\x01\xb6\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x36\x30\x30\x31\x38\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x36\x30\x30\x31\x38\x5a\x30\x5d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x18\x30\x16\x06\x03\x55\x04\x03\x13\x0f\x44\x4f\x44\x20\x45\x4d\x41\x49\x4c\x20\x43\x41\x2d\x32\x37\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xd3\x9d\xc2\x07\xb0\xf5\x7e\xcc\xee\xae\xb8\xab\xaa\x33\xea\xa7\x92\x6e\x13\x56\x40\x68\xe5\x1f\xc6\x21\xbc\xc0\x81\x97\x61\x2c\x70\xd1\x5a\x15\x17\xfe\x9c\xa3\xef\x48\x69\x89\xb7\x5b\x52\xf9\xac\xe0\x3a\x9c\xa6\x43\x56\x20\x28\x82\x6c\xcd\xf5\x96\xfe\x80\x9d\xd9\x8d\xf1\xd1\xee\x81\x9a\xbc\xec\xf0\x85\x35\x16\x41\xb9\x26\x89\x0c\x26\x7a\x40\x6e\xd0\x09\x80\x51\xc0\x02\xd8\xee\x84\x6f\xcc\x2c\x82\x22\xaa\x35\x85\x5e\xa4\x5e\x85\x04\xd1\x09\x99\xa4\xb8\x7d\x52\xb1\x21\x7a\x4d\xd8\x21\xa7\xbc\x44\x4f\xca\x15\xa2\x8c\x31\x2e\x89\xd6\x39\x2f\x40\x56\x37\x78\xeb\x2e\x5d\x2e\xd1\x18\x47\x16\xed\xac\xa0\x84\xd4\x0b\x82\x98\xbd\x03\x18\x70\xb0\x19\x5d\x8c\x6b\xde\x35\x24\x62\x5a\xc8\xfb\x0f\xba\x7a\xec\xc8\x40\x49\x72\x56\x9e\x1a\x4d\x54\xc0\x4e\xe5\x10\x34\x4f\x61\xd1\xd2\xed\x4d\xdf\xd1\x59\xb0\xeb\x02\x42\x2f\x0c\x1b\x52\x0c\x15\xa0\xf2\xee\xba\x36\x57\xfb\xcc\xac\x11\xf1\x9a\x2d\x4c\x8b\x29\x18\xf1\xf0\x70\x92\x68\xd6\x41\x26\xcc\x5b\x7c\x75\x76\xd8\x05\x60\x52\xd3\x09\xfc\xad\xc0\x40\x1c\xa4\x46\xd6\x30\x2d\x7b\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xbf\xc8\xed\x44\x0e\xbb\x33\xe6\xc7\xca\x41\x2c\xa5\x31\xb9\xc9\x60\x61\x89\x2e\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x11\x7d\xf2\x4e\x5d\xa8\xd6\x46\x1a\xe7\xd9\xd4\x66\xb1\x51\xc6\x81\xe0\xe6\x7f\x3d\x71\xae\x46\xa7\x70\x0b\x83\xb4\xbd\xc0\x40\x33\x50\x9b\x87\x43\x94\x87\x05\x69\x74\xbe\x67\x6d\xdd\x2a\xec\x0a\x31\x04\xbf\x78\x95\x6f\xd8\xb1\xec\x43\x27\x0a\xcf\x00\x80\x01\x16\x3c\x7d\x97\x37\x85\x98\x5b\xa6\x80\x73\x0c\xb3\x77\xfe\xc9\x70\x33\x52\x8b\x7a\x75\xb7\xb9\x2e\xfe\xbc\x2d\x25\x46\x96\xfa\x45\x6d\x78\x28\xcd\xdb\x9b\x99\x4c\x07\x9e\x2c\x62\x0d\x8a\xdb\x7f\x78\x55\x05\x47\x12\x1b\xdb\x99\x02\x37\xf9\x67\x1f\x04\x31\xef\x28\x81\x77\x76\x5a\x2e\x94\x8b\x75\x78\x3d\x89\xcc\x78\xd0\x4b\x05\x98\xa2\xc0\x70\x16\x87\x70\xff\x8b\x7c\x09\xd2\xe1\x2d\x32\xed\x03\xed\x61\x2b\x8d\xda\xce\xcd\xd2\x3c\xe3\xe6\x8f\xf6\x71\xe3\xba\x2f\x5c\x84\x82\x6e\x88\xa6\x5d\x3a\xab\xc1\x6d\xfe\x67\xf9\xe9\xab\xe5\x38\x44\xef\x43\x1b\xe5\x2a\xb1\x30\xfb\xf4\xfb\x6f\x7d\xa4\x20\x00\x54\x60\x22\x3e\x5d\x33\x64\xbb\x94\xea\x5a\x76\x95\x9f\xc8\x8f\x06\x6b\x3a\x60\xe8\xc2\x46\x26\x53\xab\xba\xe6\x28\xcb\xf9\x5b\x8e\xbd\x43\xad\xf1\xc7\x68\x32\xbe", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1366, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x52\x30\x82\x04\x3a\xa0\x03\x02\x01\x02\x02\x02\x01\xb7\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x36\x30\x31\x31\x39\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x36\x30\x31\x31\x39\x5a\x30\x5d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x18\x30\x16\x06\x03\x55\x04\x03\x13\x0f\x44\x4f\x44\x20\x45\x4d\x41\x49\x4c\x20\x43\x41\x2d\x32\x38\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xa0\xbe\x92\xce\x0a\x98\xd3\x08\xe1\xc5\xf7\xee\x5d\x82\x4a\xdb\xcf\xca\x66\xf4\xbd\x70\x6e\x93\x1b\xca\x9b\x39\x01\x50\x18\xc0\xd3\x56\x7a\xcb\x58\x67\xdd\x05\xa4\xd4\x2b\x31\x41\x62\x7a\x0a\xfd\xc2\xfb\x1e\x85\x2c\x8a\xf9\xeb\xa9\xb3\x9f\xb3\xca\x5a\xa4\x78\x56\x55\x17\x41\x97\x89\xf5\xcd\xc7\x30\xc6\xde\xc8\xa5\x16\xea\xd8\xe0\x86\x28\x11\x0c\x78\x0d\x9d\x37\xee\x18\xf9\x16\x2d\x5f\xae\x84\x6e\x34\x8b\xba\x46\x3b\xf4\x3d\x7a\xa3\x3f\xe3\xae\x9b\xa9\x87\x76\x7d\xc3\xb7\xe0\xb2\x2d\x82\x3a\x41\x7f\xb9\x69\xe1\x50\x22\xb1\xbf\x4c\x51\x6a\x4a\xf9\x03\x0e\x14\xb7\x32\xa9\x5f\x8d\x1b\xef\x51\x57\xbc\x87\x29\x5b\x65\x26\x3f\xf9\xf3\xa1\x92\x38\xa8\xd9\x31\xc7\x18\x11\xb7\xeb\x8a\x18\xd3\x90\xa5\xcd\x09\xb2\xb5\x2c\xef\x09\x69\x9e\xc8\xa5\xd7\x62\x22\x0f\xda\x85\xe0\x1a\xa3\x34\xb4\x18\x8c\xa9\x75\x49\xc6\xc7\x6e\x84\x8d\xa9\xa4\x90\x5f\xad\x5b\xae\x13\x97\x5d\xa9\x5f\x60\x0f\xdc\xc4\x91\x92\x36\x03\x7b\xfd\x69\x59\xc9\xd6\xfa\xe7\xdc\xe0\xfe\x5a\x3d\x5c\x3f\xf4\x3f\x00\x1b\x58\x5f\xd3\x09\x47\xef\x50\x72\xc8\x31\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x59\x88\x30\x48\xe6\x6d\xfe\x61\x27\xa6\xc4\xd5\x85\x8d\x5b\x73\x9e\xef\xc1\xcd\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x1d\x6b\xde\x17\x1c\x3a\xe9\x7d\x2a\x64\x7d\x74\x03\x20\x76\x64\x4d\x9f\xa0\x1e\xd9\x5b\x45\x4a\x77\x31\xcc\x65\x2b\x5a\xe9\xb6\x5f\x5e\xee\x36\x88\x10\x14\xdb\xb7\x7c\x00\x4c\xb1\x6d\x39\x09\x19\x78\x8c\x32\x69\x77\xaa\x64\x9e\x7c\x71\xd7\x49\xb1\x2c\xa0\xdf\x27\x31\x52\x2a\x99\x82\xf4\xd6\x53\x46\x4a\xcc\xc0\xf3\xbe\x98\x1f\x60\x13\x8b\xe2\x8a\x07\x64\x7e\x85\x4c\xb1\x09\xb1\xe9\x58\x8a\xcd\x99\x7e\x12\xc2\x93\x4b\xd7\xf5\xa4\x14\x3e\xc4\x7b\x08\x30\x43\xc8\x26\x7e\x17\xf6\x53\x49\xbf\x6a\xee\xb6\x03\x92\xc3\x00\x04\xc9\x49\x07\x89\xf0\x41\xad\xd7\xdf\xcc\xd7\xf3\x26\x84\x62\x50\xb2\x14\x36\xca\x0b\x06\x3a\x29\x80\xf9\x83\xab\xa5\x44\x86\xe2\x81\x2c\xed\x20\x03\x4b\x44\xaf\x0f\x98\x41\x54\xc5\xc0\x18\x87\x21\xcb\xd5\x83\x4c\x66\x91\x7b\x16\x13\x57\x91\x97\x74\x92\xbd\x01\x95\x28\x7b\x4e\xe2\xda\xd6\x56\x20\x36\xd2\xcb\x46\x7d\x74\xca\x8a\xe3\xf9\xd6\xc0\x42\x27\x49\x03\xce\x3f\x05\x0f\xaa\xd8\xa5\xbf\x33\x2e\x16\x0f\xae\x1d\xb1\xff\xc9\x4b\xd8\x71\x6b\x93\xc5\xa1\xff\x6a\x3b\x55\x5e\x19\x37\x5e\x5b\x23\xc9", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1366, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x52\x30\x82\x04\x3a\xa0\x03\x02\x01\x02\x02\x02\x01\xb8\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x36\x30\x32\x31\x34\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x36\x30\x32\x31\x34\x5a\x30\x5d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x18\x30\x16\x06\x03\x55\x04\x03\x13\x0f\x44\x4f\x44\x20\x45\x4d\x41\x49\x4c\x20\x43\x41\x2d\x32\x39\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\x92\x62\x2f\x41\xc2\x20\x00\x16\x06\x55\x64\x9f\xbd\xa7\x88\x15\x6e\x82\x9b\x48\xc1\x85\x77\xbd\x02\xab\x0c\xd9\xf1\x2b\x60\x81\x01\xba\x3e\x75\x70\x8e\x12\xa6\xa7\x38\x84\x90\xb3\xe9\x40\x80\x12\xdc\x6a\xca\x51\xcd\xad\x2d\x86\x10\xcc\x44\xbc\x0e\xc5\x58\x38\x19\xb2\x14\x32\x25\x41\x54\x58\x5c\x43\x0e\xc8\x6c\x73\x0f\xc3\x0c\x18\x18\x16\x04\x9a\x52\x3d\x81\xa2\x71\xce\x3c\x32\x00\x9f\x71\x55\xba\xf8\xce\x36\x77\x1e\x21\xb7\x28\x94\xe7\x3d\x3e\xa6\xf6\xc0\x7a\x31\x60\x91\x28\x97\x77\x22\x50\xf2\xc6\x93\x6e\xb2\x1b\xc5\x41\xc6\xf9\xa1\x37\xfb\x10\xbf\xda\x56\xa6\xfb\x52\x4d\x5f\xbf\xef\xc4\x96\x77\x28\xe5\x32\xff\xe8\xe1\x18\xcc\x43\x52\x18\xac\x8d\x77\x9a\x72\x4c\xe8\x9d\x03\x5e\xb0\xa2\xef\xe4\xdd\xd2\xe7\xe6\xa7\xa6\x52\xad\xe1\x98\x08\x96\x4a\x43\xcc\x73\x3d\x4b\xa2\x8d\x89\xef\xdc\x82\x4c\xb8\x4a\x80\x24\x65\x2b\x1e\x91\x82\xf5\x04\xf6\x72\x1f\x57\x18\x40\x17\xf0\x39\x51\xb6\x8f\xf3\x89\x3b\x67\xf7\x58\x4e\x4a\xbc\xda\xf9\x0e\xc1\xc0\x0c\xbd\xf3\x08\x71\xf8\x83\x0f\xc9\x2e\x80\x95\xf4\x85\x0e\xce\xae\xa9\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xb8\x43\x83\x64\x21\x7a\xee\x70\x81\xde\xa5\xde\x0c\x60\x28\x87\x78\xae\x5e\x78\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x2c\x6b\x2c\x79\x35\xdb\xf0\x1e\x1c\x87\x7b\xab\xe1\xe8\x69\x6a\x37\x8b\xdb\x7a\x4f\x55\x60\x69\x95\x2f\x53\x9d\xc6\xca\x43\xb6\xd4\x37\x91\xd6\x03\x5d\x7e\x5a\xb1\xb8\x1d\xf7\x9e\x81\xd3\xae\x50\x54\x30\xa4\x6f\x4b\x2e\xbb\x14\x1b\x17\xaa\x5c\x10\xd3\x94\x7a\x31\x39\x96\xa4\x54\x79\xf5\xe9\x56\x2e\x55\xc3\x1b\x16\xea\xaa\x02\xc8\xcf\x51\xf7\x32\x81\x22\xc6\x34\x3a\xa9\xcd\x9a\xaa\x48\x93\xc7\xe9\xfb\x1e\x32\x7e\x71\xc4\x76\xf0\x45\x54\x12\x1d\x55\xea\xbd\x5c\x32\x87\x3a\xae\x93\x9a\x6e\x99\x22\x5f\xa8\x51\x35\xee\xb2\x53\x60\x5f\xf6\x4f\x45\xb8\x16\x84\x1d\x65\x55\xcd\x15\xca\x10\x01\x1f\xa9\xd2\x9c\xa7\x57\x91\xa3\xd7\xe7\xb0\x86\x3d\x2d\xf4\x89\x3a\xd8\xc9\x77\x70\x50\xc6\x6c\xef\xf2\xeb\x98\xf8\x10\xaa\x3d\xda\xc8\x5c\x29\xad\xce\xb8\x73\x49\x4c\xa1\x92\xbb\xe6\xed\xcd\xba\x82\x1a\x63\x21\x19\x65\xf4\x06\x19\xbf\x83\xaa\x73\xe5\xd3\x1b\xb1\x98\xff\x45\xdf\xfb\x49\xcc\x73\xe8\xe2\xe7\x07\x96\x00\x31\xe9\x7f\xd9\x24\x08\xe7\xca\x44\x7a\x48\x06\xc3\x42\xd8\x3f\xf9\x79\x87\xa5\x37\x92\x16\xa9\x84\x20\x92\x63", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1366, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x52\x30\x82\x04\x3a\xa0\x03\x02\x01\x02\x02\x02\x01\xb9\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x31\x31\x30\x39\x30\x38\x31\x36\x30\x33\x30\x38\x5a\x17\x0d\x31\x37\x30\x39\x30\x38\x31\x36\x30\x33\x30\x38\x5a\x30\x5d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x18\x30\x16\x06\x03\x55\x04\x03\x13\x0f\x44\x4f\x44\x20\x45\x4d\x41\x49\x4c\x20\x43\x41\x2d\x33\x30\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xe6\x29\x22\xd4\x14\x26\xd1\x98\x1a\x52\x5e\xc5\x84\x83\x73\x7e\xc1\x60\xb3\xb3\xd0\x94\xbe\xfd\x1c\x94\x55\xbf\xf6\x84\x2c\x9b\xc9\xc0\x74\x73\xef\xcc\xc2\x99\xf2\x99\xc9\x6d\xca\x14\xd3\x74\xff\xbe\x10\xf2\xf7\x2d\xbf\xcb\xbb\x06\xa3\xee\x98\x50\x41\x65\x01\xe1\x57\x2c\xb6\xcb\xe4\xca\x1c\xac\x7e\x52\x34\x0e\xb1\x8e\x07\x26\x3e\x32\x35\xaf\xa3\x61\x0a\xc5\xe5\x08\xb6\x12\x79\x8c\x54\xc1\x7a\xe9\xf1\x50\x1f\x5d\x83\x3a\x67\x30\xb3\x29\xdb\x1d\x3a\x4c\x39\x21\x50\xd8\x18\x2c\x8d\x06\x75\xee\x63\x72\x78\x68\xad\x62\x9c\x75\xa4\x94\x06\xd3\x32\x6b\x12\xaf\x06\x07\x29\xbe\x13\xa0\xc0\xa7\xf0\x25\x4f\xb7\xfe\x1f\xb7\x57\xe0\x18\x12\x8d\x21\x6a\x15\xb9\x5a\x54\xfb\x77\x65\xd8\x4c\x3f\xf5\xba\x3c\xc0\x37\xe1\x06\x7e\xc2\xbe\x9e\x23\x8c\x28\xd1\x9a\xd7\xc6\x67\x38\xd7\x73\xc9\xbd\x07\x1d\x85\x6f\xd5\x95\x0a\x9a\xdc\xda\x3a\x4e\x28\xf0\xa5\xeb\x09\xdf\xe5\xdb\x0b\xcd\x47\xaf\x8a\xcd\xbb\x6f\x94\x40\xe3\x59\x9c\x50\x9f\xc9\x0e\xa9\x71\x02\xb9\xdc\xe9\x69\x80\x3a\x89\x3b\x45\x05\x22\x18\x05\x84\xb5\x12\xf0\x3c\xc0\x81\x02\x03\x01\x00\x01\xa3\x82\x02\x1c\x30\x82\x02\x18\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x86\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x35\x61\x66\x28\x09\xbc\x56\x25\x5b\x8b\xcc\xbf\x81\x5e\x61\x2c\x30\x39\xd3\x21\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x0c\x06\x03\x55\x1d\x24\x04\x05\x30\x03\x80\x01\x00\x30\x66\x06\x03\x55\x1d\x20\x04\x5f\x30\x5d\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x05\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x09\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x11\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x12\x30\x0b\x06\x09\x60\x86\x48\x01\x65\x02\x01\x0b\x13\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x1b\x30\x37\x06\x03\x55\x1d\x1f\x04\x30\x30\x2e\x30\x2c\xa0\x2a\xa0\x28\x86\x26\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x72\x6c\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x2e\x63\x72\x6c\x30\x82\x01\x01\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x81\xf4\x30\x81\xf1\x30\x3a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x69\x73\x73\x75\x65\x64\x74\x6f\x2f\x44\x4f\x44\x52\x4f\x4f\x54\x43\x41\x32\x5f\x49\x54\x2e\x70\x37\x63\x30\x20\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x14\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x30\x81\x90\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\x83\x6c\x64\x61\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x67\x64\x73\x2e\x64\x69\x73\x61\x2e\x6d\x69\x6c\x2f\x63\x6e\x25\x33\x64\x44\x6f\x44\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x25\x32\x30\x32\x25\x32\x63\x6f\x75\x25\x33\x64\x50\x4b\x49\x25\x32\x63\x6f\x75\x25\x33\x64\x44\x6f\x44\x25\x32\x63\x6f\x25\x33\x64\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x25\x32\x63\x63\x25\x33\x64\x55\x53\x3f\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x0a\x88\x56\x1c\xa5\x57\x26\x5a\x62\xcb\x75\xd0\xdd\x86\xc5\x52\xe2\x2f\xf3\xbc\x11\x64\x3f\x8c\x2f\x3e\x11\xfc\x98\x60\x40\xf2\x80\x0d\x28\x82\x9a\x68\xfe\xe0\x48\x4b\x27\xd3\x3a\x0a\x7b\x95\xf6\x03\x0c\x81\x14\x91\x42\x3a\x60\x6c\xe2\x2b\x53\x2d\xec\xdf\x11\xae\xf5\x54\x17\xf0\x01\xf9\x97\x07\xa7\x9b\xab\x0b\xdb\xac\x97\x89\x09\xc6\xef\xf9\x07\x34\x16\x00\xa8\x7e\x11\x53\x9e\x7c\x2f\xa1\x38\xa2\x99\x79\x39\x34\x41\x6e\x7d\xb8\x58\x30\x56\x88\x9e\xe4\xaa\x64\x45\xd9\xa0\x44\x62\x3a\xb7\xe5\x31\xd3\x91\x80\xf1\x1b\x10\xb2\x67\x70\xd5\x5b\xab\x59\xb4\x5a\x48\x16\x42\xc4\x02\x4c\xda\x6c\x68\xca\x50\x1d\x31\xbe\x37\x99\xc7\xcf\x53\xcc\x42\x29\x56\xc3\x9d\x17\xca\x03\xe7\x10\x5a\xf1\x39\x3c\x1c\xcc\xfb\x1b\x97\x0a\x26\xf3\x31\xdf\xe0\xab\x5c\x24\x9d\x9e\xde\x38\x7d\x02\x51\x67\x46\xf9\x93\x70\x85\xed\x0a\x55\xc2\xf4\xc1\x68\x5a\x9f\x08\xc9\x1d\x7b\x9b\x76\xdc\x54\xef\x39\x8c\x18\xe5\x0c\x44\xee\xf7\x06\xb2\x1f\xf5\xcb\xe6\x0e\xbd\xd4\xa1\xff\xd4\xf9\x91\x07\x22\x52\x79\xb7\xc0\xfd\xec\xb2\xf8\x85\xf4\x44\xfb\x5c", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 884, /* certificate_len */ (unsigned char *) "\x30\x82\x03\x70\x30\x82\x02\x58\xa0\x03\x02\x01\x02\x02\x01\x05\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x1e\x17\x0d\x30\x34\x31\x32\x31\x33\x31\x35\x30\x30\x31\x30\x5a\x17\x0d\x32\x39\x31\x32\x30\x35\x31\x35\x30\x30\x31\x30\x5a\x30\x5b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x44\x6f\x44\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x50\x4b\x49\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x44\x6f\x44\x20\x52\x6f\x6f\x74\x20\x43\x41\x20\x32\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xc0\x2c\xc1\xf6\x8d\x3b\xac\xff\x3f\x3c\xd6\x71\xbe\xb8\x74\x22\x07\xec\x70\x41\x15\xfc\xab\x40\xe3\x07\xaa\xc1\xc3\xd8\x9f\xfe\xda\x4c\x3a\xbf\x3f\xc8\xd8\x28\x7b\x4b\x36\x01\xc0\xac\x45\x25\xc3\xd2\x0e\x0a\x8f\x85\x18\x64\x10\x3d\x1a\x13\x70\x2a\x6f\x8e\xd7\xdc\x8d\x93\xb3\x41\x0f\x38\x21\xcd\xad\xab\xc2\x3d\x2a\x05\xd3\x57\x11\x37\x0d\xcd\x8c\x51\xf9\x93\xe3\xcc\x46\x49\x21\x8e\x14\xb4\xcd\xcb\x14\x3e\x38\xcd\x72\x31\xee\xab\x12\xf2\x65\xea\x34\x2e\x56\x5d\xff\xee\x63\x75\xcb\x6d\xba\x91\x34\xfc\x9e\xf3\xf4\x2d\x1c\xbe\x50\xc4\x42\xdf\x59\x88\xff\x6a\xb3\xfa\xa8\x6c\x3d\xcb\x56\x71\x71\x05\x96\xbb\x9f\x80\xe5\x80\x45\x59\x67\x41\xb0\xeb\xc3\xad\x60\xa4\x80\x75\x06\x17\x9c\x0e\xf4\x43\xe0\x99\x0e\x1b\xfb\x7f\xf5\xb3\xcc\xb2\x81\x82\xb1\xfd\x32\xc1\xb8\xbe\x41\xa4\x64\xb5\x60\x3a\x5a\x51\x30\x8c\xce\xde\x41\x2c\x19\x47\x5c\x49\x10\x64\xb9\x74\xa9\x87\x41\xaf\x7d\x6e\xba\xc1\xb8\xa1\xbf\x65\x31\x3a\x04\x67\xf9\xb5\xbb\x8e\x92\x8a\x00\x63\xb8\xb1\xe6\x8c\x38\x5f\x83\xff\x50\xd5\x3b\xa2\x5d\x6b\xb2\x10\xcc\x63\x02\x03\x01\x00\x01\xa3\x3f\x30\x3d\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x49\x74\xbb\x0c\x5e\xba\x7a\xfe\x02\x54\xef\x7b\xa0\xc6\x95\xc6\x09\x80\x70\x96\x30\x0b\x06\x03\x55\x1d\x0f\x04\x04\x03\x02\x01\x86\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x98\x91\x8d\x3f\x89\xc8\xbb\xf5\xc0\x69\x73\x29\x3b\x35\xac\xba\xb3\x08\x76\x3d\x70\x09\x92\xe9\x84\x44\x21\x01\x7d\x14\x76\x1b\xee\x51\x6c\x1d\x8d\x15\x37\x2d\x7b\x31\x69\xf4\x9a\x44\xb8\xaf\x46\xcc\x34\xfa\x23\xcb\x03\x27\x19\xd2\x83\x21\x75\x2b\xe7\xe0\x1b\x99\x26\xdc\x84\x40\x95\xe8\xa8\xd2\xcc\xf6\x58\x5c\x66\xef\x3f\x4a\x97\x10\x82\x1d\xba\x0a\xa2\xdd\x5b\x06\x2b\x9d\xa7\x64\x4e\xeb\x2e\x01\x35\xa4\xb4\x3f\x13\xad\x55\xe4\xd5\x73\xa8\x69\x9b\x11\xf1\x98\xf2\x31\x1e\x6f\x40\xd4\xf8\x78\x9f\x8e\x91\xa0\x6f\x70\x04\x90\x66\xaa\x06\x2b\xce\xe1\x7a\x92\xb5\x7d\xe1\xe0\xd1\x96\xe7\xa1\x3a\x2d\xcc\xb1\x9d\x1f\x05\x44\xed\x87\x99\xd3\x4d\x1a\x70\x39\xc1\x04\x0c\xe5\x7e\xd9\xf1\xaf\xd7\x20\x0e\xf1\x22\x7a\x25\xa4\x73\x99\xcc\x3f\xa4\x07\x27\x96\xa8\xa2\x95\xed\x82\xb9\x16\xd3\x9e\x0b\x87\xc2\xc1\xf2\x88\xf5\x62\xdf\x68\xdf\xc7\xbc\x69\x51\xed\xb1\x5c\xdc\x54\x54\x29\x0f\x09\x39\x9a\xac\x03\xc1\xdb\x0c\x4d\xae\x6f\x0a\x7a\x16\x49\xf1\xbf\x91\xd2\x38\x94\xd3\xf6\x95\x2c\xb7\x6c\xc9\x42\xb6\x8d\xca\x90\x8d\x85\xd9", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1472, /* certificate_len */ (unsigned char *) "\x30\x82\x05\xbc\x30\x82\x04\xa4\xa0\x03\x02\x01\x02\x02\x02\x17\xd8\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x59\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0d\x30\x0b\x06\x03\x55\x04\x0b\x13\x04\x46\x50\x4b\x49\x31\x21\x30\x1f\x06\x03\x55\x04\x03\x13\x18\x46\x65\x64\x65\x72\x61\x6c\x20\x43\x6f\x6d\x6d\x6f\x6e\x20\x50\x6f\x6c\x69\x63\x79\x20\x43\x41\x30\x1e\x17\x0d\x31\x33\x31\x32\x32\x33\x31\x31\x31\x36\x35\x31\x5a\x17\x0d\x31\x36\x31\x32\x32\x33\x31\x31\x31\x36\x35\x31\x5a\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xe8\x24\x04\x59\xcc\x98\xc7\x7c\x64\xb1\x6a\xd7\x3b\x29\x48\xc7\xbb\x58\xea\xdf\xa2\xc4\x2a\x93\xd1\x68\xd6\x8b\x83\xc2\x2a\x40\xe6\x6a\xec\x6e\x1a\xdf\xe9\x23\xef\x54\x61\xda\xe5\xa2\xed\x76\x00\x69\x04\xd5\x4c\xf2\xbf\xc4\x1b\x68\x85\x51\xae\x07\xa7\x38\xd9\x0a\xb3\x52\x11\x36\x9f\x22\x81\xde\x04\x48\x77\xbe\xa8\xaf\xb2\xf1\x78\x2e\xac\xc4\x58\x87\x50\x86\x02\x0c\x7b\x37\x68\x08\x9d\x62\x4d\xb5\x09\xb7\xf1\x16\x73\xdb\x04\xe8\x46\xe9\x88\x93\x25\xc8\xda\x6d\xa3\xa8\x8c\x21\xdf\xc6\xd7\x36\x58\x20\xdb\xad\xf6\x8c\x12\x80\x22\x97\x58\xf4\xe3\x42\x8b\x7d\xd1\xf4\x7e\xb9\x7f\x56\xef\xba\x31\xbc\x49\xec\x12\xaf\x08\x80\xb9\xe2\x97\x62\x60\x7f\xef\x83\xf9\x63\xde\xeb\x70\x6e\xab\xc4\x4f\x0f\x34\x12\xa6\xcb\xad\x26\x43\xcb\x8f\x03\xc6\xf3\x9e\x24\x1e\x2a\x83\xb0\x6a\xe6\x29\xff\x57\x1e\xb1\x6e\x5f\x4f\x40\xd5\x42\xb5\xaa\xd5\xb4\x51\xe4\xb2\x7b\x5b\x06\xfc\x82\xa2\xcc\xb1\x16\xbf\x3e\x44\xc7\xa3\x64\xb7\x82\xf6\x68\x72\xdb\xe6\xfe\x7b\x61\xdb\xfe\xae\x75\x76\xcc\xdc\x6c\x52\xd9\xbc\x07\xa8\x39\x66\xeb\x8f\x9a\xcb\x02\x03\x01\x00\x01\xa3\x82\x02\x56\x30\x82\x02\x52\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x81\x97\x06\x03\x55\x1d\x20\x04\x81\x8f\x30\x81\x8c\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x01\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x02\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x10\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x24\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x27\x30\x4f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x43\x30\x41\x30\x3f\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x33\x68\x74\x74\x70\x3a\x2f\x2f\x68\x74\x74\x70\x2e\x66\x70\x6b\x69\x2e\x67\x6f\x76\x2f\x66\x63\x70\x63\x61\x2f\x63\x61\x43\x65\x72\x74\x73\x49\x73\x73\x75\x65\x64\x54\x6f\x66\x63\x70\x63\x61\x2e\x70\x37\x63\x30\x81\x8d\x06\x03\x55\x1d\x21\x04\x81\x85\x30\x81\x82\x30\x18\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x01\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x18\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x02\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x18\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x18\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x18\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x10\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x05\x30\x3d\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x31\x30\x2f\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x72\x6f\x6f\x74\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\xad\x0c\x7a\x75\x5c\xe5\xf3\x98\xc4\x79\x98\x0e\xac\x28\xfd\x97\xf4\xe7\x02\xfc\x30\x35\x06\x03\x55\x1d\x1f\x04\x2e\x30\x2c\x30\x2a\xa0\x28\xa0\x26\x86\x24\x68\x74\x74\x70\x3a\x2f\x2f\x68\x74\x74\x70\x2e\x66\x70\x6b\x69\x2e\x67\x6f\x76\x2f\x66\x63\x70\x63\x61\x2f\x66\x63\x70\x63\x61\x2e\x63\x72\x6c\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x48\xf5\x4a\xee\xfb\xce\x75\x30\x86\x32\x6c\x21\xa4\x57\xa8\x28\x29\xe9\x08\xaa\x76\xcb\xcf\xac\xbd\xb4\x00\x2a\x78\xa1\xf0\xe7\xb1\xcf\x2e\x12\x5d\x0a\x1b\xb5\x7f\xb0\xa7\xd8\xd7\x62\x6f\x88\xbd\xbb\x6e\xdc\x92\x5a\xd9\xc6\xca\x04\xd7\xe5\x79\xf8\xfd\x84\xe3\xb6\x01\x00\xa9\xe9\x80\x1c\xca\xb4\x79\xe7\x32\x91\xa1\x4a\xff\x92\x70\x96\x85\x00\x50\xbf\x5a\x74\xc2\x10\x91\xdd\xb1\x4f\xf7\x46\xdc\x30\x39\xbc\x29\x14\x05\xce\xcd\xa1\xac\xb5\x82\x88\xfe\xde\x39\x91\x29\xf2\x00\xbf\xe7\xad\x66\xc0\x12\x0a\x83\x8f\x79\xc9\xf0\x0f\x79\xcd\xd9\xf2\x6d\xd9\x46\x96\x6e\x8b\xc7\xbe\x76\x43\x9a\xde\x6a\xb1\xdb\x06\xdb\x20\x9b\x20\x5e\x34\x62\xf1\x66\x01\xd0\x04\x79\xa1\x19\x6d\x15\xe7\x3b\x83\x7a\x18\x8c\x74\xfe\x4b\x73\x00\xb8\x47\x4a\xb4\x2b\xd0\x12\x34\x03\x23\x3d\x6b\x3c\x21\xbd\xcc\xcd\xea\x89\x48\xcd\x28\xe5\x2b\x87\x21\x88\xe0\x9f\x08\xf5\x81\xaf\x1b\x92\xc4\x4f\xab\x86\x92\xc6\xb1\x13\xc2\x87\x6e\xef\x6d\x91\x9a\xc6\x54\x74\x5a\x2d\x87\x2f\x28\xb6\x7d\x5c\x69\x44\xfc\xc8\x1d\x1c\xd3\xb5\x39\xf0\x36\xad\x0a\xa8\x76", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 933, /* certificate_len */ (unsigned char *) "\x30\x82\x03\xa1\x30\x82\x02\x89\xa0\x03\x02\x01\x02\x02\x10\x29\x36\x47\xaa\xe3\x8a\xac\x86\x4a\x23\x56\xf2\xca\xb7\x61\xaf\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x4e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x75\x73\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0d\x30\x0b\x06\x03\x55\x04\x0b\x13\x04\x46\x42\x43\x41\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x43\x6f\x6d\x6d\x6f\x6e\x20\x50\x6f\x6c\x69\x63\x79\x30\x1e\x17\x0d\x30\x37\x31\x30\x31\x35\x31\x35\x35\x38\x30\x30\x5a\x17\x0d\x32\x37\x31\x30\x31\x35\x31\x36\x30\x38\x30\x30\x5a\x30\x4e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x75\x73\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0d\x30\x0b\x06\x03\x55\x04\x0b\x13\x04\x46\x42\x43\x41\x31\x16\x30\x14\x06\x03\x55\x04\x03\x13\x0d\x43\x6f\x6d\x6d\x6f\x6e\x20\x50\x6f\x6c\x69\x63\x79\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\x97\x8d\xbd\x33\x27\xe4\xad\x5b\xfb\x78\xbd\x2f\x47\x47\x6e\xc7\x78\xe9\x93\x9c\xa4\xde\xc9\x1c\xfd\x2f\x1b\x39\x38\xac\x47\x17\xc0\x7e\x77\x29\x00\x3b\x03\x1f\x68\x0f\xcd\x4d\xa5\xee\x77\xb8\x2c\x62\x6b\x31\xf6\xfa\x72\x09\x7d\x30\x29\x06\x7c\xe7\x7c\xa3\x3d\x84\x18\x8a\x1d\xae\x2c\x92\xa8\x1f\xe8\x5e\x4f\x8d\x8e\xeb\x3f\x1a\xf8\x9c\x0a\x67\x9d\xb0\x67\x4d\xf0\x2e\xd0\x30\xde\xc3\x94\xb0\xa0\xcf\x2e\x0a\x34\x7f\x54\x09\xd3\x36\xbd\xa4\x49\x57\x52\x73\xe9\x9d\xfe\xe4\x48\x79\x46\x1b\x5b\x8d\x32\xe4\xa5\x48\x64\xf3\x22\x0d\x92\x9d\x08\x15\xbf\x60\x3c\x83\xf7\x47\x22\x25\x22\xad\x29\x71\xb7\x77\xef\x17\xc9\xa2\xb6\x94\x5e\xc8\x30\x90\xa4\x14\x48\x5c\x56\x57\x0b\x41\x4c\x05\xd4\x2a\x4c\x3f\xae\x12\x9b\x59\x11\x75\x70\x07\x22\x69\x2d\x2c\xd3\x31\xcc\x92\x7e\xcc\xcd\xa4\x7e\x94\x47\xaa\x9c\x09\x08\xf6\x4b\xaf\x52\xe8\x6a\x40\x91\xc5\x55\xbd\x40\xb1\xc8\x6d\x57\x86\x95\x17\xe6\x1f\x73\xbe\x47\x2e\x3e\x8b\x4c\x17\xb9\xb9\x25\x1c\xa5\x52\x17\x36\x08\x59\xc0\x42\xbe\x0a\x2b\xb4\x56\x51\x3c\x1b\x55\xc9\x8c\x90\x77\xeb\x02\x03\x01\x00\x01\xa3\x7b\x30\x79\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x2f\x58\x97\xd8\xa9\x05\x98\xa5\x56\x1f\xfb\xd9\xab\x75\xef\x02\x3c\x36\x34\xc7\x30\x12\x06\x09\x2b\x06\x01\x04\x01\x82\x37\x15\x01\x04\x05\x02\x03\x01\x00\x01\x30\x23\x06\x09\x2b\x06\x01\x04\x01\x82\x37\x15\x02\x04\x16\x04\x14\x76\xb7\x60\x96\xdd\x14\x56\x29\xac\x75\x85\xd3\x70\x63\xc1\xbc\x47\x86\x1c\x8b\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x60\xae\xf3\x48\x16\x40\x72\xa6\x08\x88\xc9\xbc\x47\x2c\x24\x4b\x5d\xa0\x91\x73\xed\x65\x78\x90\xf0\x67\x90\x7a\xa5\xbf\x0a\xad\xb6\x2a\xf9\x99\x67\xdf\x83\xc5\x77\x1f\x34\x09\x38\xf9\x7e\x9e\x41\xe0\x48\x60\xfe\xe2\xaa\x5d\x87\x88\xea\x88\xfd\x5c\x45\xb2\xc9\x6a\xda\x7d\xa4\xad\xb1\x4f\xbf\x1c\x0d\x9f\x1e\x9a\xc0\xd5\x14\x73\x38\x2b\x8a\x78\x40\x6e\x30\xf7\x62\xe1\xcd\x99\xfc\x51\x69\x67\x6c\x11\xdd\xb8\x10\xa3\x68\xde\x26\xa5\x56\xfd\x36\x6c\x37\x98\x6c\xfb\xee\x7c\x3c\x6c\x6b\x70\x3f\xf7\x48\x37\x09\x8f\x0b\x42\x81\xad\x46\x46\xb8\x0b\x83\x06\xf4\x1b\x38\xa0\x7f\x4f\xcd\x0b\xef\x83\x89\x87\x97\x1c\x8a\x30\x67\xdc\xfd\x54\xa1\x03\x7e\x01\xcb\x85\x4c\xb1\x0b\x29\xc3\xbe\xec\x7c\xe1\x3f\x0f\x09\x52\x3c\x2f\xa7\x9a\x48\xfe\x37\xe9\x11\x06\x58\xe1\x36\x41\x8a\xc4\xb6\xbf\x8e\xdd\xce\x4a\xb3\xbc\x1a\xc0\xcd\xfa\x1a\x99\xd2\x71\x9b\xfa\xcf\xbc\xf2\xc4\x54\xa3\x88\x35\x76\xcc\x1b\x2c\x46\x6f\x0c\xb4\xd1\xc3\x61\x76\x92\x74\x11\xea\x4b\x80\x8d\x1c\x89\x11\x8b\xec\x5b\xff\x17\xc9\x48\xfc\xe7\xe0\x06\x11\xe2\x84\x5e", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1368, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x54\x30\x82\x04\x3c\xa0\x03\x02\x01\x02\x02\x04\x44\x3e\xa7\x3a\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x36\x30\x38\x30\x35\x31\x34\x31\x36\x33\x30\x5a\x17\x0d\x32\x36\x30\x38\x30\x35\x31\x34\x34\x36\x33\x30\x5a\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xe8\x24\x04\x59\xcc\x98\xc7\x7c\x64\xb1\x6a\xd7\x3b\x29\x48\xc7\xbb\x58\xea\xdf\xa2\xc4\x2a\x93\xd1\x68\xd6\x8b\x83\xc2\x2a\x40\xe6\x6a\xec\x6e\x1a\xdf\xe9\x23\xef\x54\x61\xda\xe5\xa2\xed\x76\x00\x69\x04\xd5\x4c\xf2\xbf\xc4\x1b\x68\x85\x51\xae\x07\xa7\x38\xd9\x0a\xb3\x52\x11\x36\x9f\x22\x81\xde\x04\x48\x77\xbe\xa8\xaf\xb2\xf1\x78\x2e\xac\xc4\x58\x87\x50\x86\x02\x0c\x7b\x37\x68\x08\x9d\x62\x4d\xb5\x09\xb7\xf1\x16\x73\xdb\x04\xe8\x46\xe9\x88\x93\x25\xc8\xda\x6d\xa3\xa8\x8c\x21\xdf\xc6\xd7\x36\x58\x20\xdb\xad\xf6\x8c\x12\x80\x22\x97\x58\xf4\xe3\x42\x8b\x7d\xd1\xf4\x7e\xb9\x7f\x56\xef\xba\x31\xbc\x49\xec\x12\xaf\x08\x80\xb9\xe2\x97\x62\x60\x7f\xef\x83\xf9\x63\xde\xeb\x70\x6e\xab\xc4\x4f\x0f\x34\x12\xa6\xcb\xad\x26\x43\xcb\x8f\x03\xc6\xf3\x9e\x24\x1e\x2a\x83\xb0\x6a\xe6\x29\xff\x57\x1e\xb1\x6e\x5f\x4f\x40\xd5\x42\xb5\xaa\xd5\xb4\x51\xe4\xb2\x7b\x5b\x06\xfc\x82\xa2\xcc\xb1\x16\xbf\x3e\x44\xc7\xa3\x64\xb7\x82\xf6\x68\x72\xdb\xe6\xfe\x7b\x61\xdb\xfe\xae\x75\x76\xcc\xdc\x6c\x52\xd9\xbc\x07\xa8\x39\x66\xeb\x8f\x9a\xcb\x02\x03\x01\x00\x01\xa3\x82\x01\xb6\x30\x82\x01\xb2\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x72\x6f\x6f\x74\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x11\x06\x09\x60\x86\x48\x01\x86\xf8\x42\x01\x01\x04\x04\x03\x02\x00\x07\x30\x2b\x06\x03\x55\x1d\x10\x04\x24\x30\x22\x80\x0f\x32\x30\x30\x36\x30\x38\x30\x35\x31\x34\x31\x36\x33\x30\x5a\x81\x0f\x32\x30\x31\x36\x30\x38\x30\x35\x30\x32\x34\x36\x33\x30\x5a\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x10\x30\x0e\x1b\x08\x56\x37\x2e\x31\x3a\x34\x2e\x30\x03\x02\x04\x90\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x69\x57\x40\x9b\xcb\x68\x4a\xc0\x26\x62\xfd\xea\x48\x79\x9a\xea\xd6\xa8\x61\xd5\x13\xaa\xec\x10\x07\x36\xc8\x7f\xd5\xb8\xf3\x6f\x63\x7a\xc9\xe0\xee\xb8\x62\x49\xd9\xc8\x8b\x1e\x5e\xe7\xb8\x5f\x90\x7f\xd2\x14\x3b\x77\x71\x07\xc0\x4a\x46\xd5\xe4\xd8\x51\x92\x99\x77\x39\xe1\x96\x0f\xfc\x76\x6e\x55\xe2\x98\x7e\x40\x03\x5b\xe6\x60\xd3\x60\x5f\x64\x4d\x70\x13\x4f\x0f\x3e\x7f\x93\xc7\xa4\x89\x30\x2b\x9f\x5d\xcf\xe4\x7a\xa7\x3a\x0c\x23\x0b\xf0\x3f\x16\xa8\x4f\x13\xd2\x4f\x7c\x01\xa8\x26\xa9\x10\x4f\x8b\x42\x22\x0e\x95\xd4\x7d\xba\xc4\x33\xdb\x80\x4e\xcc\xdc\x12\x04\xf5\x47\x39\xf6\xdf\x0c\x24\x8c\x56\x63\xe4\x42\x4c\xc8\x76\x16\x24\xcc\x16\x5f\xd7\xca\x74\x52\x70\x95\x5e\x4a\xbd\xec\x91\x78\xec\x7c\x2c\x80\x37\x59\xb7\x93\x57\x6f\x65\xa3\x89\x80\x62\xc4\x35\xcd\x3a\xd3\x11\x3e\xbd\x49\x19\x89\xd4\x51\xb1\xaa\x14\xf0\x3e\x2e\xd6\x3b\xde\x5e\xea\xee\xa7\x8e\x7d\x98\xe3\x9a\xe1\x30\x81\x8f\xf2\x76\xf6\x4b\x51\x89\x1b\xfb\xd7\xb0\x12\x37\x75\x32\xa2\xdd\x25\xa6\x81\x34\x3d\x3d\x2f\x1a\xc8\x06\xb5\x59\xb0\x6b\xbe\x63\x7b", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2124, /* certificate_len */ (unsigned char *) "\x30\x82\x08\x48\x30\x82\x07\x30\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd2\x93\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x31\x30\x31\x32\x31\x31\x39\x31\x31\x32\x38\x5a\x17\x0d\x32\x31\x30\x31\x32\x31\x31\x39\x34\x31\x32\x38\x5a\x30\x81\x87\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x28\x30\x26\x06\x03\x55\x04\x0b\x13\x1f\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x48\x6f\x6d\x65\x6c\x61\x6e\x64\x20\x53\x65\x63\x75\x72\x69\x74\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x10\x30\x0e\x06\x03\x55\x04\x0b\x13\x07\x44\x48\x53\x20\x43\x41\x34\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xbf\x72\xa1\x68\xd6\x23\x5c\x22\xfa\x67\x30\x89\x2b\x19\x13\x40\x80\xf8\x1c\x46\xcc\x6b\xff\xb5\x70\xe0\x0e\x0c\x45\x9f\xd2\xec\x42\x69\x2c\x93\x36\x45\x57\x35\xe4\x41\xab\x58\xdb\x6d\xdc\x72\x6d\xe7\x8c\xd5\x0b\x54\xdc\xf8\x6b\xd8\x18\xac\x11\xe5\x8c\x5b\x82\x91\x74\xd7\xc6\x43\x90\x20\xc1\xf7\x5f\x87\xdc\x6c\x88\x1e\xd7\xfd\x77\xde\x73\x1b\x13\x55\x36\xde\xfb\xd0\x86\xb1\x34\xa8\xcb\x88\xbd\xc3\x83\x11\x3c\x54\xfc\xd3\xec\x0f\x32\xe0\x07\x12\xd5\xb1\x04\x35\x76\xbd\xd9\xe8\x3f\x97\xb1\x61\xc7\x01\xe5\x1b\x66\x00\x94\x99\x18\xba\x45\xbe\x47\xa5\xa3\x18\x75\xae\x89\x46\xed\xd4\xb4\xbf\x6f\xd6\xc0\x88\xdf\xf5\x37\x31\x7c\xfc\xa9\x01\x29\x43\x05\x5e\xc2\xb8\xfa\xd0\xe3\xe5\x7e\xab\xb0\x98\x57\x03\x36\x06\xa0\xb8\xe6\xe3\xac\xe0\xe9\x10\x02\x29\xb6\x6a\x62\xcf\x2e\xe2\x5e\x5e\x8c\x85\xf1\x4f\x93\xfc\x67\x23\xa8\x78\x80\xf4\x12\x36\x66\x41\x2d\x46\x1e\x9b\xd5\xf4\xba\xf4\xec\xba\x06\x87\xda\xa0\x83\xa6\xcf\xf8\xef\xf7\x46\x84\x25\x15\xc8\xd5\xa3\xd3\xeb\x2e\x99\xc3\x0e\xec\x6f\x2d\x72\x3e\xea\x21\x73\x7d\x12\x39\x02\x03\x01\x00\x01\xa3\x82\x04\xb1\x30\x82\x04\xad\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x6b\x06\x03\x55\x1d\x20\x04\x64\x30\x62\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x10\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x0f\x08\x30\x82\x01\x10\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x02\x30\x81\xff\x30\x2e\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x64\x68\x73\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\x07\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xfa\x30\x81\xf7\x30\x2e\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x64\x68\x73\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\xc4\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\xb7\x6c\x64\x61\x70\x3a\x2f\x2f\x73\x73\x70\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x44\x48\x53\x25\x32\x30\x43\x41\x34\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x48\x6f\x6d\x65\x6c\x61\x6e\x64\x25\x32\x30\x53\x65\x63\x75\x72\x69\x74\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xf1\x24\x31\x36\x58\xc3\x8c\x3b\xd5\xe9\xe7\xc5\xf6\x13\x32\x26\x9d\xab\xd3\xa9\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x28\x60\x9f\xea\x54\x4b\xb8\x09\x39\xf4\x38\xa3\x08\x71\xaf\xd0\xfe\x58\xc8\x0b\x04\x66\x5a\xa9\x00\xac\x7f\x28\x48\x06\x56\x09\x12\xc2\x6d\x2d\x6f\x9f\xe7\xe8\x6f\x3c\xb0\xa2\xc0\x42\x4f\x92\x48\x72\xa0\x7f\x18\xb0\x5f\x69\xd9\x8d\x97\xed\x42\xbf\x9d\x8e\xd6\x21\xf8\x7a\xa4\x68\x75\x70\xa6\x6c\x21\x77\x9a\xa4\x27\x8f\x1d\x52\xe0\x93\x4c\xaa\xc4\xdc\xb3\xef\xa6\x12\xd8\xf7\xe8\x58\xfb\x5d\x93\xca\xb5\x6f\x7f\x04\xe5\xc4\xb0\x1c\x9b\x8b\xa2\xef\x4f\xc1\x3c\xa9\x27\x9c\x15\x78\xab\xb8\xa1\x5e\x28\x62\xec\xd6\x88\x4e\x8e\x91\xb7\x19\x73\xab\xb9\xf7\x05\x3f\xd7\xa0\x99\x57\x37\xc8\x0b\x4d\xda\x24\xb3\x2c\x89\xc8\x42\x0e\x20\xa8\x28\x62\xe7\xbd\x0e\xa3\xcd\x88\x0a\x92\xa4\x2b\xab\xf1\x7f\x3c\xe3\x70\xe5\xc5\xcc\x19\x46\xf6\xae\xea\xbf\xdf\xb6\xa1\x19\x67\x3e\x12\x93\xda\xdb\x4d\x67\x7f\x11\x5f\xf6\x0d\x7c\xd9\x25\xa6\x1d\xb3\x15\x17\xe4\x1f\xff\x17\x84\xb6\xad\x74\x3c\x7b\x8b\x3e\x1a\xe0\xa1\x84\xc7\x4c\xad\x74\xfc\xa7\xbc\x65\x02\x8b\x85\x0a\x78\xd2\x94\xe0\x2a\x47\x8b\x29\x89\x53\x3b\x66\xe8\x79\x4f\x03\x3d\x20", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2080, /* certificate_len */ (unsigned char *) "\x30\x82\x08\x1c\x30\x82\x07\x04\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd1\x92\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x30\x31\x31\x30\x37\x31\x34\x34\x36\x30\x38\x5a\x17\x0d\x32\x30\x31\x31\x30\x37\x31\x35\x31\x36\x30\x38\x5a\x30\x81\x82\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x10\x30\x0e\x06\x03\x55\x04\x0b\x13\x07\x4f\x43\x49\x4f\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xb5\xad\x41\xa7\x7d\x1e\x93\xd8\x1f\x43\xd3\x6d\x06\xd6\x42\x55\x57\xb0\x91\x7a\x61\xf3\xe2\xdf\xe0\xbf\x5e\xb0\xa7\x1c\xbf\xff\xbf\x2a\x14\x25\x26\xf3\xb2\xc5\xda\xff\xd2\xb4\xb1\xd8\x7d\x77\x7d\xae\x3e\x15\x45\x82\x9f\x1d\x92\xc2\xa4\xf1\x32\x56\x1f\x83\xd0\x60\x68\x2c\x7c\xfc\x8a\xf7\x5b\x21\xa4\x66\x27\xd9\x83\x14\x49\xd3\x3b\xd5\xa0\x2c\x6b\x82\xfe\xad\x45\x40\x17\xaa\xdf\x44\xb3\x04\xcb\xba\x36\xcd\x29\x59\xbf\x48\x74\x08\xf5\x9b\xf5\x92\x5e\x36\x05\x2d\x7c\x73\x58\xd4\xe4\x0b\xe7\xd7\x41\x57\x0b\x98\x57\x4d\x26\x69\xf7\xe6\xcb\xc4\x7b\xf3\xe9\xec\x2d\xaa\x24\x82\x7b\xa7\x84\xd8\x4b\x11\x69\x3a\x46\x01\x3f\xa5\x5b\xa7\xad\x80\x29\x71\xae\x6a\x61\xa0\xf8\xb4\x50\x3b\x9f\x93\x0c\xca\xe6\x63\xac\x71\x78\xad\x71\x07\x0e\x03\xba\x73\xee\xef\xdb\x2d\xee\xe4\x3c\x3e\xbe\xf1\x7e\x5f\xb4\xad\x70\xc3\x04\x25\xd7\xfb\x92\x27\x66\x6f\x63\x1d\xc4\x78\xf2\x34\xc4\x32\x0b\x6d\xfd\x93\x18\xc7\x35\x03\x5f\x7f\xe6\x3b\xc6\xdc\x94\xf9\xa0\xbb\x78\x76\x37\xa0\x93\x50\x45\x13\x08\x2b\x8a\x28\x3a\x89\x69\xb3\x82\xdb\x28\xcd\x02\x03\x01\x00\x01\xa3\x82\x04\x8a\x30\x82\x04\x86\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x6b\x06\x03\x55\x1d\x20\x04\x64\x30\x62\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x74\x6f\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x81\xe2\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xd5\x30\x81\xd2\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x74\x6f\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\xa0\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\x93\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x4f\x43\x49\x4f\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xa2\x13\xa8\xe5\xc6\x07\x54\x6c\x24\x3d\x4e\xb7\x2b\x27\xa2\xa7\x71\x1a\xb5\xaf\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x49\x06\x90\x3e\xc9\x1d\x52\xfa\x8a\x40\x72\xcf\xb9\xd8\x95\xaf\xe3\x2f\x87\xd5\x6c\x9f\x7e\x83\xc3\x3c\x8e\xff\xf2\x64\x25\xce\xc9\x34\x51\x2e\x4b\x79\x0a\x87\xae\xba\xb6\x7e\xba\x42\x1e\x9d\x0b\xd9\xea\x07\xb2\xe5\x87\x28\xac\x85\xb9\x33\x06\x56\x00\x54\xb9\xa4\x3c\x4f\xe3\x3a\x23\xcd\xf0\xc0\x2a\x52\xe8\xa9\x76\xa9\x5b\x8a\x8f\x9a\x34\x35\x17\x75\x55\xbd\xa8\x1c\xed\x0c\xa0\x65\x51\x11\xba\x19\x4b\x28\x8f\x2c\x5d\x89\x8c\x8c\x13\x5c\xa3\xc2\x3e\x4a\x99\xe0\xb1\x51\xac\xd5\x27\xeb\x07\xc3\x35\x39\xe7\x61\xc0\x11\x03\x11\xcd\x8c\x99\x69\xa3\x9b\x3c\x67\x16\x04\x9e\xca\xf7\x98\x07\x35\xa9\x53\x26\x4e\x4b\x13\x89\x1f\x15\x29\x8e\x1c\xeb\xba\x32\xa1\x89\xfb\x7a\xa9\x1f\x4a\xcd\x01\x49\x33\xd2\x78\x74\xbc\x66\x82\xa7\x93\x45\xd4\x6c\x8e\xc7\xbb\xac\x13\x58\xf9\x66\x26\xea\xb4\x70\x97\x39\xa8\x28\xb4\xeb\x23\x1c\x4a\x0f\x82\x58\x15\xb2\xd5\x3c\x6f\x3e\x6f\x80\x80\x17\x31\xa3\x47\x6d\x28\x4a\x6f\x91\xf6\x5b\x52\x58\x6b\xee\x29\x69\x24\x04\xc0\xb7\x10\x05\x8f\x0b\xe1\xef\x31\x6d\x93\xdb\x4a\x1e\xa3\xc6\xd8\xb0\x79", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2080, /* certificate_len */ (unsigned char *) "\x30\x82\x08\x1c\x30\x82\x07\x04\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd1\x47\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x30\x30\x39\x31\x32\x31\x34\x34\x36\x34\x31\x5a\x17\x0d\x32\x30\x30\x39\x31\x32\x31\x35\x31\x36\x34\x31\x5a\x30\x81\x82\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x10\x30\x0e\x06\x03\x55\x04\x0b\x13\x07\x4f\x43\x49\x4f\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xbc\xd4\xb4\xaa\x6f\x35\xad\x67\x40\x1a\x0d\x12\xef\xfb\x63\xd5\xbd\xdc\xec\x67\x19\x4a\xd3\x93\x57\x07\x8f\xac\x18\xba\x9f\x94\xee\xde\x8f\x81\x44\x52\x14\x56\xdd\x34\x11\x08\xc2\x86\x77\x1e\x3b\x64\xea\x40\x03\xb8\xda\xd3\xfa\xea\x4c\xf2\xda\xdc\x6f\x3a\xba\x49\x2c\x5f\xe6\x78\xb6\x54\x24\xef\x7a\xce\x0c\xfe\xf7\xac\xce\x4f\xd7\xf9\xb4\x58\xa2\xee\xdc\xfa\xa2\xa5\x67\x74\x6e\x0f\xca\x1c\x02\xaa\x9f\x89\x47\x52\xd9\x41\x2f\x32\x74\x66\x2b\x99\x2c\xf7\x69\x91\xa7\x50\x1f\xcc\x2a\x0f\x3f\xaf\x7d\x14\xb4\xa0\x6a\xc0\xae\x70\x2d\x30\xd3\x4a\xc0\x41\x3f\xb0\x6a\xd8\x0d\xc8\x28\x54\xbb\x86\x84\x8e\x2c\x56\x3b\xc4\xe8\xa4\x22\xe3\x45\xe6\xb8\x36\x44\xa6\xe1\x53\xad\x58\xe4\xb3\x9d\xe7\x05\xc6\xf9\x20\xe3\x3e\x75\x8a\xed\x4b\x80\x2c\x2f\x05\x30\xa1\x4f\xdb\x9d\xc0\x76\xe8\x52\x8c\x75\xb0\xa9\xc0\x66\x8e\x5b\xc6\x89\x62\x64\x5c\xba\x50\x40\xb6\x40\x0c\x5e\xa0\x5f\xc3\x22\x4d\xf4\x94\x6a\x21\x1f\x79\xb1\xfa\xe3\xe7\xfb\x12\x14\xc3\x8c\x21\x5e\x4d\x10\x8b\x8e\xfc\x7b\x27\xe8\x1f\xc4\xa2\x09\x83\x78\xd8\xa8\x2f\x04\xff\x02\x03\x01\x00\x01\xa3\x82\x04\x8a\x30\x82\x04\x86\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x6b\x06\x03\x55\x1d\x20\x04\x64\x30\x62\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x74\x6f\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x81\xe2\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xd5\x30\x81\xd2\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x74\x6f\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\xa0\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\x93\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x4f\x43\x49\x4f\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xa6\xb2\x16\x2a\x4a\xaa\x2f\xe6\x2f\xd9\x11\x02\x51\x22\x7c\xe3\xb4\xd9\x33\xcc\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x8e\x73\xb5\x0c\x67\x4c\x1d\x0e\x27\xb8\xda\x9c\x4b\xaf\xbe\x13\xa3\x87\xb7\x85\xaa\xab\x39\x4d\xfc\x73\xfe\xca\xd9\xa0\xb1\xb3\xb4\x75\x4b\x15\x71\x73\xaf\xa4\x94\x3f\xaf\x6f\xaf\x05\x5e\x25\x65\x6a\xa4\x42\x07\xb8\x74\x12\xc2\xb3\x4c\x03\x46\x91\xb2\x9c\x42\xe2\x9b\x53\x4b\x08\xc1\x4c\x4d\x89\x7b\xf0\x90\x79\x49\x33\xd8\x40\x0e\x9b\x10\x7e\xf6\xad\x02\x6a\x21\xe9\xa9\x98\x67\x97\x8e\x7e\x6e\xba\x1c\x07\xe1\xa0\xff\xdd\x15\xe8\x5c\x95\x76\xbf\xfc\xbf\x2f\xf2\x32\x97\x22\x24\x04\x5f\x10\x4f\x9f\xe6\xac\x5f\x58\xaf\x67\xff\x92\x4c\xb5\xaf\x37\xf0\x0a\x4f\x11\x2e\x21\xb3\x53\x72\xa9\xc1\x6c\x91\x61\xe5\x98\x13\xec\x9e\xeb\x0f\x91\x36\xaa\x36\x7d\xd3\x51\x7a\x2d\x7e\xc0\xba\x77\xf1\x51\xde\x79\xdf\xde\xbb\x6c\x6a\x28\xde\xdd\x42\x7d\x28\x5e\x46\xf8\x79\x75\xa1\x40\x4a\x88\x4f\xec\x7e\xf2\x4d\x8b\xe1\x28\x7d\x00\xeb\x1f\x9c\x10\xf4\xdc\x35\xa7\x84\x5d\x27\x13\xa6\x8d\x8b\x79\x2b\x75\x7e\x8b\x2f\xe3\x92\xf3\x3f\x93\xe1\xca\x6a\x2e\x19\x9f\x92\xab\xe8\x69\x4d\x01\xbb\xe1\xa8\x67\x67\xee\x30\x53\x1e\x57\xd7\x34\xf2", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2107, /* certificate_len */ (unsigned char *) "\x30\x82\x08\x37\x30\x82\x07\x1f\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd2\xba\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x31\x30\x32\x31\x36\x32\x33\x32\x39\x35\x38\x5a\x17\x0d\x32\x31\x30\x32\x31\x36\x32\x33\x35\x39\x35\x38\x5a\x30\x76\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x53\x53\x41\x31\x3f\x30\x3d\x06\x03\x55\x04\x0b\x13\x36\x53\x6f\x63\x69\x61\x6c\x20\x53\x65\x63\x75\x72\x69\x74\x79\x20\x41\x64\x6d\x69\x6e\x69\x73\x74\x72\x61\x74\x69\x6f\x6e\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xc7\x37\x84\x00\x74\x72\xdd\x97\xb9\x6c\xeb\xc2\xbb\x16\x11\xeb\xff\xfe\xcd\xa3\xb3\x48\xb6\xbf\x8e\x7a\xd5\xf2\x74\xb3\x93\xa2\x1c\x12\x7c\xe3\xe7\xc0\x18\x9b\x99\x6d\x8d\xaa\x79\x64\x78\xfa\x2f\xf4\x41\x86\x4d\x66\x53\x57\x2f\xe9\x33\xef\x24\x41\x92\xc0\xdf\xc7\x99\x82\xc4\x25\x1b\x49\x50\xee\x1b\x2f\x09\x2d\x94\xb1\xa4\xb7\x0d\x05\xd8\xf3\x91\xa8\x13\x6a\x45\x70\x55\x70\x99\x4a\xc4\x18\x24\x47\x7d\x2f\xba\xf8\x5f\x50\x04\x22\x8a\x3d\x33\x84\xe6\x46\xd8\xe1\x15\xbd\x96\x66\x3b\x37\x80\x31\xaa\x2c\x96\x27\x74\xce\x53\x90\x72\x37\x28\xa3\xd0\xc7\xf9\x97\x35\xac\x0c\x6e\xc9\xbd\x0e\x71\x37\xa1\x41\x67\xc3\xb1\x5f\x66\xdc\x05\xeb\xfd\x56\x13\x44\x98\x19\x42\x62\xf5\x98\x87\x9f\x90\x3d\x7c\xf1\x16\x52\x95\x76\x1a\xbf\xac\xca\x3b\x64\xee\xa7\x01\x32\xf0\x2a\xe4\x10\xef\xea\x1f\x57\x27\xb5\xf9\x5b\xed\x10\x2e\xb1\xd2\x6a\xa2\xaf\xde\xc6\x35\x6e\x0a\x76\x49\xe0\x5f\x5d\xef\x8f\xac\x3d\xaf\x30\x6d\x09\xba\x39\x51\x45\xa2\xf7\x24\x4c\xf0\x15\x6d\x79\x8d\x61\x6c\x8d\x78\x15\xfb\xe6\xc8\xf0\x5c\xe0\xc9\x08\xf9\xd6\x97\x02\x03\x01\x00\x01\xa3\x82\x04\xb2\x30\x82\x04\xae\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x79\x06\x03\x55\x1d\x20\x04\x72\x30\x70\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x10\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x82\x01\x10\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x02\x30\x81\xff\x30\x2e\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x73\x73\x61\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x81\xfb\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xee\x30\x81\xeb\x30\x2e\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x73\x73\x61\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\xb8\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\xab\x6c\x64\x61\x70\x3a\x2f\x2f\x73\x73\x70\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x53\x6f\x63\x69\x61\x6c\x25\x32\x30\x53\x65\x63\x75\x72\x69\x74\x79\x25\x32\x30\x41\x64\x6d\x69\x6e\x69\x73\x74\x72\x61\x74\x69\x6f\x6e\x25\x32\x30\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x2c\x6f\x75\x3d\x53\x53\x41\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xd6\x39\x77\x6d\x50\x77\x0e\x4c\xf0\x39\x42\xdc\x61\x68\x74\xab\x82\x9f\x55\x7f\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\xc0\x5c\x99\x28\x0c\x86\xac\x3f\x12\x75\xf9\x13\xe8\xd7\x21\x92\x7f\x0a\x7a\xd7\x9c\xf2\x2a\x14\x16\x14\xba\x80\x59\x75\xc8\xf9\xf4\xb7\x3e\x42\xa2\xcb\x79\xe3\x76\x63\x33\x4a\xf8\x22\x6f\xde\xdb\x6f\x82\x9b\xc0\xca\x70\xa7\xc0\x65\xa3\x37\x71\x79\x62\x55\x5d\x88\xf4\xe4\xb1\x5a\xfd\x2a\x73\xc0\x51\xb0\x0f\xde\xd0\x42\x0b\xbf\xc9\xd5\xda\x07\xbf\xae\x29\x81\xb5\x32\x67\xbc\x7b\x72\x02\x55\x45\x9d\x70\xba\x29\x8d\xa4\x06\x32\xe5\xe3\x26\x6f\x2f\xd8\x3e\x86\xd7\xc2\x8f\x67\x23\xbf\xaa\x02\xd9\xb0\x10\xa8\x02\x47\x72\x34\x27\xb7\x5f\x69\x6f\xfc\x0b\x25\xc5\xe5\x05\x98\xe5\x18\x89\xec\x97\xac\xbb\x97\xd2\x4d\x6f\x9e\xc0\x80\xe4\x95\x21\xbc\xbf\xc8\x79\x60\x73\x26\x71\x5e\xcc\x32\xe9\x07\x35\x2e\x18\xf1\x3e\xf8\x98\xfc\x4b\x0a\x7d\xd2\x73\xe3\x7e\xfe\xd0\xe2\x2c\x1a\x40\xff\x64\xf2\xe7\x85\x42\x6c\xce\x7c\x91\x2b\x13\xa4\xea\x89\xfc\xc1\xdd\x4c\x32\xdc\x34\x9b\x33\x89\xa9\x30\x6d\xee\xcd\xab\x74\x0f\x52\x25\x6b\xd8\x6e\x01\x26\xfe\x31\xb5\x10\x48\x10\x97\x84\x33\x34\x76\xb0\x63\x88\xe7\xd9\x74\x5b\x3f\x2b\xdb\x64", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2037, /* certificate_len */ (unsigned char *) "\x30\x82\x07\xf1\x30\x82\x06\xd9\xa0\x03\x02\x01\x02\x02\x04\x45\xf9\x4a\xa3\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x37\x30\x33\x31\x35\x31\x35\x33\x36\x35\x30\x5a\x17\x0d\x31\x37\x30\x33\x31\x35\x31\x36\x30\x36\x35\x30\x5a\x30\x76\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0c\x30\x0a\x06\x03\x55\x04\x0b\x13\x03\x53\x53\x41\x31\x3f\x30\x3d\x06\x03\x55\x04\x0b\x13\x36\x53\x6f\x63\x69\x61\x6c\x20\x53\x65\x63\x75\x72\x69\x74\x79\x20\x41\x64\x6d\x69\x6e\x69\x73\x74\x72\x61\x74\x69\x6f\x6e\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xef\x89\xe9\x98\x61\x93\x4e\x51\x16\xea\x49\x8b\x58\x2c\x6d\xa6\x52\x1d\xb9\xd5\x3a\x84\xbe\x8f\x63\x8a\x5b\x3e\x95\x0a\xbe\x78\x7c\xb1\x84\xb6\xa2\x9a\x8f\xb4\xdf\x5a\x82\xdc\xef\x33\x9d\xc3\xf9\xe5\xe3\x34\xc9\x0e\x8f\x43\xa4\xd2\xd2\xcd\xeb\xee\x92\xf5\x7e\x8c\x5d\x4d\x8e\x65\x23\x93\x5c\xb7\x05\x66\x3b\x63\xe5\x94\xa0\x34\xf1\xb0\x63\x5d\x0b\x4e\x40\xa4\xb2\xfa\xbb\x83\x57\x1a\x00\x2a\x83\xbf\xbd\x21\xed\xde\x9f\x23\x62\x8b\x43\xe1\x16\xbd\x74\xf2\x47\x38\x05\xec\xa0\x0d\xfc\xdd\xc1\xce\x6d\xd4\x05\xe0\xe7\xe7\x87\xcf\x14\x7f\x38\x24\xac\xe8\x0e\x1e\x9b\xda\xa2\x06\x73\x0a\x09\x0d\x26\x1d\xf1\xb7\x9d\x7e\xc2\xda\xe2\x1a\x31\x51\x6b\xe3\x9c\xcd\x8b\x5c\x21\xff\x6d\xac\x70\xef\x88\xde\x45\x37\x47\xd8\x0d\x48\x55\x64\x1e\x8e\xae\x06\xdb\x48\x65\x81\x8d\xf0\x82\xb3\xf1\x7c\x01\x46\x38\xbe\x4e\xda\x34\x87\xe2\xcd\xe1\x4c\x2e\xcd\x77\x1e\xc4\xe2\x71\x7b\x2c\x2b\xc8\xc2\x2d\x11\xb5\x86\x03\x9f\xa9\x2c\x85\xbe\x7b\x39\xb6\x3e\xf8\x0a\x49\x23\x67\xd3\x35\x86\x35\xef\x52\xd9\xc5\x82\xf6\xa3\x8c\xe2\x9b\x9b\xb6\xcb\x02\x03\x01\x00\x01\xa3\x82\x04\x6c\x30\x82\x04\x68\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x4f\x06\x03\x55\x1d\x20\x04\x48\x30\x46\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x82\x01\x10\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x02\x30\x81\xff\x30\x2e\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x73\x73\x61\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x81\xdf\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xd2\x30\x81\xcf\x30\x2e\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x73\x73\x61\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\x9c\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\x8f\x6c\x64\x61\x70\x3a\x2f\x2f\x73\x73\x70\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x53\x6f\x63\x69\x61\x6c\x25\x32\x30\x53\x65\x63\x75\x72\x69\x74\x79\x25\x32\x30\x41\x64\x6d\x69\x6e\x69\x73\x74\x72\x61\x74\x69\x6f\x6e\x25\x32\x30\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x2c\x6f\x75\x3d\x53\x53\x41\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x62\xa9\xb6\x98\x7c\x3e\x1c\x7d\xea\xb4\x82\x70\x62\x6c\xc6\x85\xfc\x79\x92\x43\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\xbb\x55\xd4\xad\x10\x70\xba\xdb\x15\x4d\xf6\x73\x9e\x1b\x5a\xd5\x4b\xcd\x5e\xaf\x71\x31\xf7\xc4\x5e\x07\x5b\x3c\x0e\x7a\x21\x53\x04\x38\x77\xc4\x3e\xbd\x77\xca\x8a\x4b\x14\x38\xce\xe3\x6f\x90\x59\xf1\x49\xe1\x15\xd1\xd6\x28\x73\xe3\xb5\xb1\x92\xae\x7e\x79\x3c\x18\x2f\x11\xc9\x05\x37\x06\xba\x3e\x57\x61\xf6\x16\xf4\x98\x95\x61\x02\x20\x9f\xbf\x82\xef\x26\x56\x51\x1b\x18\x8b\x36\x87\x53\x7c\x57\x9c\xd6\xf5\x92\xbf\x2a\x91\xa5\x3e\xfc\xb0\xf9\x62\x92\xe4\x53\x70\xbe\xb6\xad\x6f\xa7\xea\x5d\x01\x7a\x1c\x48\xd5\x57\x58\x2d\xc6\x5c\x89\xf8\x4b\xb2\x65\x09\xcf\x11\xee\xae\xa6\x25\xca\xfb\x03\x17\x4c\xcc\xeb\xef\x1c\x0a\x99\x1a\xed\x2e\x2c\x87\x03\xa9\xe7\x5b\xb6\x57\xb8\x29\x85\xf9\xed\x70\x3a\xca\x17\xae\xbb\xfb\xb1\xf3\x8a\x11\xaf\x06\x76\xfe\xf4\x19\x22\x60\x61\xa6\x6b\x49\x50\xc9\x6d\x7e\x65\x9a\xa2\x9f\xb6\x29\x24\x0f\x79\x3f\x03\xff\xfe\xdb\x5e\xfc\x07\x87\x9f\xe6\x97\x00\x67\xa0\xc6\x01\xf8\x99\xed\x94\x14\xd9\xfa\xff\xe3\xd3\x4d\x72\xb3\x0d\x24\x97\xbd\x45\x7b\xb2\x7b\x0b\x95\x7e\xfc\x92\x80\xab\xf0\x10\xf2", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1837, /* certificate_len */ (unsigned char *) "\x30\x82\x07\x29\x30\x82\x06\x11\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd1\xdb\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x30\x31\x32\x30\x35\x31\x38\x35\x32\x33\x36\x5a\x17\x0d\x32\x30\x31\x32\x30\x35\x31\x39\x32\x32\x33\x36\x5a\x30\x81\x90\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1e\x30\x1c\x06\x03\x55\x04\x0b\x13\x15\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x50\x75\x62\x6c\x69\x63\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xed\x73\xbc\xd7\xa6\x16\x18\x42\xbd\x50\xcc\x92\x3e\x44\xf0\x98\x54\xcd\x0e\x64\xca\xd5\x56\xd2\x48\x91\x1f\xa6\x2e\x19\x8b\x15\x5b\x00\x23\xf5\x53\x6e\x8f\x7a\xf7\xa4\xf7\x1e\xe0\xcf\x08\xcf\x4e\x76\xcc\xb6\x42\x44\x12\x55\x83\x5c\xdd\x72\x82\x42\xae\x56\x96\xe2\x01\x93\x91\x5e\x1d\xc7\x4f\xa8\x0c\xff\x93\x9b\x0e\xae\x1f\x4a\x88\xcf\xd6\x59\xb8\x97\xa8\x7a\x4a\x1a\x3f\x72\xce\x8d\xaf\xc8\x41\x5e\x44\x38\xf7\xa9\xa7\x33\xec\x5a\x1b\x23\xf3\xf9\x99\x3b\x8a\x25\x69\x9a\xe1\x32\xdc\xcf\xb9\x52\x57\xef\xed\xc7\x50\xd9\xe5\xe0\x85\xe3\x12\x3d\x2c\x88\x7c\x6a\xb3\xa5\x46\x0c\x19\x4b\xc5\xf4\xc9\x46\x64\xd2\x17\xe4\xca\x22\x8e\xc0\xcf\xf3\x0c\xf9\x63\x21\x67\xd5\x68\xe2\xe7\x3a\x31\x6b\x39\xd4\x52\x55\x79\xb9\xb6\xbd\xa9\x4b\xa0\xbd\x37\x01\x57\x51\x76\x64\xc0\xeb\xf4\xc9\xc3\x50\xc0\x0c\xb9\xf6\x92\x74\x87\x0c\x7c\xcf\xdb\x11\xbd\x36\xb4\xc9\xb1\x7d\x32\x63\x10\xec\x18\xf0\x0e\xf7\x4a\x72\xfc\x78\xf7\xe9\xfb\xfa\x76\x96\xde\xb9\x21\x98\xba\x86\x75\xdb\x21\x43\xb4\x97\x06\xdd\x7c\x89\xb9\xfe\xe3\x5e\xc0\x1f\xa2\x8b\x02\x03\x01\x00\x01\xa3\x82\x03\x89\x30\x82\x03\x85\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x4f\x06\x03\x55\x1d\x20\x04\x48\x30\x46\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x74\x65\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x1f\x50\x6b\xfb\x74\xaa\x5a\xd3\x3b\xcb\x13\x64\x70\xae\x52\x73\xc2\x85\x49\xa8\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x64\x00\x91\x7b\xf4\xa7\x96\xda\xe3\x06\x8a\x27\x7b\xd8\xae\x29\xad\x51\xb9\xa8\x84\x64\x8a\x73\x9b\xbf\xa9\xed\xd6\x04\x67\x61\x77\x4b\x5d\xd1\xf7\x0d\xe3\x0d\x66\x87\x3b\x61\x2e\x6a\x78\x3f\x4f\x52\x3e\xa0\xef\xcf\xc6\x6d\x37\x75\x4f\xa0\xd0\x89\x44\x9d\xab\x0c\xdd\x69\x22\x59\xe0\xc4\x4f\xc4\x67\x4d\x25\xe8\x9d\xc4\x5c\xd2\x04\xac\x71\x37\xe5\x2c\x8e\x1d\x1e\x06\x9a\xde\xdd\x69\xad\x77\xac\x26\x5a\x5c\xe9\xe3\x64\x81\x3c\x50\x76\x2b\x44\xc0\x35\x34\x12\x23\x8b\xc8\x29\xe4\x2e\xbd\x4c\x37\x85\xc1\x0e\x93\xd9\x5c\xca\x8d\x4e\x9b\xd3\x10\x32\xa9\xce\x23\x72\x21\xf0\xc9\x50\x88\xfc\x5e\x1e\x36\x36\x4e\x05\x9a\x35\xed\xa2\x4d\xf0\x9e\xd5\x02\xe5\x41\xb9\xe5\x21\x17\xe6\x1f\x3b\x9d\xb8\x71\xc2\xb0\x3e\x40\x89\x2d\x1c\x6b\x1f\x33\x14\xff\x50\xe9\x96\xe0\x85\x1f\x08\x02\x48\xa9\xb9\x7c\xc2\x10\x7c\x47\x4a\x2d\x21\x68\x0d\xb8\x3a\x8f\xf2\x52\xfa\xed\x71\x40\x6d\x91\x91\x5e\xb8\xfe\x04\x4c\x7f\xb3\xbf\x32\x68\x11\xff\x16\xc4\xa4\x2a\x93\xc4\x65\x09\xc2\x54\x56\x36\xf7\x88\x95\x3e\xd1\x58\x6f\x70\x48\x7e\x25\x06\xb7", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1837, /* certificate_len */ (unsigned char *) "\x30\x82\x07\x29\x30\x82\x06\x11\xa0\x03\x02\x01\x02\x02\x04\x46\xea\xcf\x61\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x39\x30\x36\x31\x37\x32\x33\x33\x31\x35\x32\x5a\x17\x0d\x31\x35\x30\x36\x31\x38\x30\x30\x30\x31\x35\x32\x5a\x30\x81\x90\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1e\x30\x1c\x06\x03\x55\x04\x0b\x13\x15\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x50\x75\x62\x6c\x69\x63\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xb4\x67\x55\x26\xbc\xc9\x55\x13\xc9\x6c\xbc\xb8\xb7\x8a\xec\x91\x2b\x51\xb8\x07\xaf\x9a\x83\x9f\xfb\x4e\xe2\xc2\x3c\x9b\xc6\x71\xb8\xb8\x1b\xf4\x8e\x98\x40\x26\x71\x3f\xb5\xc9\xff\xd5\xe6\x8a\x96\xe8\x12\x6b\xc2\x62\xde\x71\xf2\xce\x0a\x73\xfd\xee\x3c\x85\xd5\x1c\x52\xbc\x9e\x06\x66\xbf\x1f\x2e\xf5\x0c\x7d\x15\x06\xa6\x86\x03\xc9\xd5\x64\xa1\xdd\x1c\x33\xf5\x10\x99\x7c\xcd\x87\x98\x91\x58\x4d\x08\x83\x32\x83\x5e\xcc\x55\x6a\x0b\x6e\xd6\x1d\x93\x94\x59\xeb\xcb\x02\x47\x10\x66\x20\x6c\x0c\xf6\xfb\x48\x25\x60\x06\x89\xdc\xaf\xf7\x75\x41\x03\x05\x55\x9d\x2c\xca\xd2\x89\xb4\x5a\xdc\x78\xa3\xa8\x4f\x21\x1c\x93\x7b\x77\xaa\x35\x2a\x25\xa5\x27\x14\xfb\xda\x78\xb9\x56\x94\x90\x43\x9c\x29\x39\xc9\x3d\xde\x7e\x95\x60\x2e\xb5\xb6\x81\x55\xba\x24\x6f\x81\xe2\x89\xc8\x09\xc3\xca\x60\x2e\x5a\x50\xd9\x33\x4f\x9c\x06\x5d\x33\x55\x38\x15\x4e\x66\x2b\xa4\xe0\x9e\xc5\x66\x08\x0a\xa0\xc5\x6b\x6e\x2a\xa7\xa5\x0b\xd0\x89\xd4\x4a\x6e\x71\x0e\x2b\x26\xee\x08\xdb\x38\x07\xbd\xf4\x30\x90\xb9\xb3\x4c\xa6\x63\x54\x19\x76\x5f\x2e\x97\xbd\x02\x03\x01\x00\x01\xa3\x82\x03\x89\x30\x82\x03\x85\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x4f\x06\x03\x55\x1d\x20\x04\x48\x30\x46\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x74\x65\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xa3\x62\xfb\xb8\x79\x9d\x24\x91\xb9\x5e\xe8\xa2\x4a\xde\x29\x1b\xce\x2d\x8b\xf8\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x65\x94\xe3\xe0\x82\x72\xae\x68\x01\xa5\x9f\xd4\x4c\xea\x2e\x42\x5b\x4c\x6b\x03\xa8\x30\xc5\x4b\x74\x6e\x74\x9b\xb6\x64\x23\xf0\xcd\xe8\x62\x25\x88\x3d\xd1\x2c\x7a\x00\xae\x73\x7f\x50\xd7\xab\x87\xfc\xd2\x3c\x47\x28\x44\x53\x6d\x3d\x02\x3f\xe2\x94\xaf\xaa\xf9\x2d\xe9\x64\x99\x79\xe4\x5d\xa3\x1e\x02\x14\x3c\xad\xab\x19\xda\x1a\x9e\x5c\x83\x50\xa5\xe3\xde\xc4\xdb\x2c\x15\x59\xc2\xe0\xda\xba\xf3\xfc\xb2\x99\x68\x18\xd8\x4c\x59\x09\x6f\x7e\x9f\x79\xe3\x42\xab\x06\x9c\x2d\x70\x14\x95\xcc\x7b\xce\xf4\xe8\x27\x17\x74\x20\xee\xfb\x9e\x52\xdb\xcb\x83\xc4\x09\xb7\x6b\x72\xee\xee\x1e\x1a\xfc\x5e\xef\x1d\x8d\x15\x4b\x15\xf3\x62\xc8\x1a\x42\xc5\xd6\xad\xa0\x55\xa3\x83\xcc\x88\x13\xe7\x6f\xf3\x1b\x17\x5c\xf1\xaf\x53\x81\xcf\x62\x7f\xe1\x56\x34\xfa\xcc\xa8\xc4\x7d\x0b\x24\xe2\x8e\xd2\xc3\xfd\x0e\xe2\x54\x7a\x00\x6e\xcb\x7a\x50\x60\x6c\xa6\x46\x58\x9c\x97\xc7\x13\xe8\x76\x3b\x3c\x6c\xdb\x95\xa0\x6b\x6e\x1d\xc2\x49\xff\x04\x8e\xb8\x4a\x3b\x95\x2c\x87\xda\xd8\xda\xa4\x37\x67\xd7\xd5\x5c\x41\x83\x82\x35\x52\xcf\x80\x5d\x67\xd8", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2180, /* certificate_len */ (unsigned char *) "\x30\x82\x08\x80\x30\x82\x07\x68\xa0\x03\x02\x01\x02\x02\x04\x4e\x39\x7f\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x32\x30\x38\x32\x38\x31\x33\x34\x37\x31\x37\x5a\x17\x0d\x32\x32\x30\x38\x32\x38\x31\x34\x31\x37\x31\x37\x5a\x30\x81\xa0\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x27\x30\x25\x06\x03\x55\x04\x0b\x13\x1e\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x56\x65\x74\x65\x72\x61\x6e\x73\x20\x41\x66\x66\x61\x69\x72\x73\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x2a\x30\x28\x06\x03\x55\x04\x0b\x13\x21\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x56\x65\x74\x65\x72\x61\x6e\x73\x20\x41\x66\x66\x61\x69\x72\x73\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xd8\x90\x98\x68\x8c\xc8\xb0\xfe\x8a\x5e\x41\x0b\x99\x12\xae\x4e\xbf\xfb\xc8\x8b\x5b\x88\xa4\xd3\x4a\xc0\xa3\x06\x9b\x9d\xfc\x0c\x22\x0b\x69\x7f\xc7\xb5\x9b\x74\x60\x2e\xf1\x33\xd4\x3b\x01\xf5\x84\x47\xce\xc2\xa3\x40\xf5\x67\x63\xba\xa9\x95\xe1\x24\xcd\x15\x9a\x99\x2e\xd3\x94\x53\x65\x34\x34\xcf\x7b\x1e\x18\x6b\x1f\x35\x4b\xd3\x51\x6b\x6f\x24\x63\x16\x38\x54\x12\x9b\x1e\x52\x4e\x2b\x02\xad\x09\x32\xf7\xdb\x7d\x5e\x70\xa1\x25\xd8\xf8\xb2\x02\xa9\x1a\xa8\xda\x0d\xcf\xcd\xe7\x9b\xbc\xe5\xb9\xe0\x72\x24\xdd\xfa\x91\xfb\x99\x6f\xad\x5f\x64\x44\xc2\x0b\xc1\x40\x05\x6c\xaa\x80\x13\x79\x05\x3b\xdd\x2a\x48\x7b\xca\xbc\x16\x16\x9f\x5c\xc3\x7a\xf5\x38\xe2\x2b\x44\x5a\x52\x95\x0b\x46\x9c\x6f\x2c\x2d\xfc\x54\xe3\x6f\x29\x95\x62\x59\xf3\xd5\x65\xfa\x08\x98\x60\xb4\xdd\xdd\xaf\xc9\x52\xc9\x63\x2c\x82\x36\x99\x6a\x75\xf3\xd2\x30\x38\xe5\xbd\x82\x3c\x8e\x3f\xa1\xf3\xdf\x6c\x0e\x37\xd3\xd6\xe3\x8c\x4c\x9c\x4e\x29\x1f\x8c\x15\x2b\x14\x6e\x83\xf6\xf0\xa4\x69\x28\xc6\x3c\x29\x24\xb8\x39\xc5\x76\x07\xd6\x44\xcc\xf3\xdc\x59\x93\x3f\x02\x03\x01\x00\x01\xa3\x82\x04\xd0\x30\x82\x04\xcc\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x6b\x06\x03\x55\x1d\x20\x04\x64\x30\x62\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x10\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x24\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x76\x61\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\x27\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x82\x01\x19\x30\x82\x01\x15\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x76\x61\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\xe3\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\xd6\x6c\x64\x61\x70\x3a\x2f\x2f\x73\x73\x70\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x56\x65\x74\x65\x72\x61\x6e\x73\x25\x32\x30\x41\x66\x66\x61\x69\x72\x73\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x56\x65\x74\x65\x72\x61\x6e\x73\x25\x32\x30\x41\x66\x66\x61\x69\x72\x73\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xcf\x79\x3c\xed\x4d\xbc\x19\x25\xf2\x45\x69\x4e\x12\x2f\x9c\x29\x53\xc9\xa7\x46\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x2a\xb4\xdd\x63\x57\x34\xb1\x84\x3a\x8a\xdb\x03\xa5\xd7\x32\x44\x6a\xea\x7e\x17\x96\x3e\x16\x72\x52\x99\x2a\xc8\x41\x6a\xca\x1a\xed\xe0\x73\xe9\xbb\x87\x72\x20\x08\x15\xb2\x28\x8a\x76\xf6\x2e\x4a\x8a\x04\x22\x7e\xa1\x6d\x97\xf5\xb8\xff\xef\xea\xc7\x98\x4b\xfe\x2f\x0c\x34\x92\x42\xd6\xe2\x94\xba\xc7\xa9\x1f\x3b\xc5\x8e\xe6\x1f\x25\xd5\x23\xaf\xc3\x5e\x91\x69\x99\x1c\xd6\x36\xba\xc5\xf1\xc0\x75\x94\x41\xce\x7f\x25\x69\xdc\xce\x46\xc7\x81\x47\xd2\x08\x73\x22\x0d\x54\xbe\xe2\x8e\xcd\xc0\x1d\x95\x1a\x3b\x23\x1d\xf1\xd7\xe7\xcc\x52\xd3\xe5\x56\xaf\x2a\xf8\xc7\xf6\x19\x71\xf2\x1c\xdf\xdb\x25\xe3\x4b\x32\xc5\x97\x8d\xc5\x4f\x06\xe8\xef\x4a\xc0\x7b\xbb\xe5\x54\xf1\x9a\x9a\xed\x5c\xaa\x83\x30\x73\x8f\x7c\x88\x53\xdd\xbd\x10\xa0\x4e\xdc\x5f\xd3\xc6\x54\x39\x7e\x62\x80\x16\x11\x15\x16\x3e\x96\x23\x8c\x35\x0c\x52\xf6\x50\xdf\x11\x9d\xfc\x09\x42\x6b\x9d\xd7\x6d\xf5\xb2\xf2\xab\xb4\x74\xbf\x70\xd9\x8d\x89\xb0\x0e\x59\xc9\x85\xce\xf3\xb0\xc9\x03\xb8\x9b\x7a\xf6\xca\xff\x81\xa7\xe1\x65\xe3\x0d\x7d\x50\xef\xca\x82\xfe\x5b\x28", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1801, /* certificate_len */ (unsigned char *) "\x30\x82\x07\x05\x30\x82\x05\xed\xa0\x03\x02\x01\x02\x02\x04\x46\xea\xcd\xa1\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x38\x30\x33\x31\x33\x31\x34\x35\x33\x33\x32\x5a\x17\x0d\x31\x38\x30\x33\x31\x33\x31\x35\x32\x33\x33\x32\x5a\x30\x81\x87\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x28\x30\x26\x06\x03\x55\x04\x0b\x13\x1f\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x48\x6f\x6d\x65\x6c\x61\x6e\x64\x20\x53\x65\x63\x75\x72\x69\x74\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x10\x30\x0e\x06\x03\x55\x04\x0b\x13\x07\x44\x48\x53\x20\x43\x41\x34\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\x9d\x67\xf1\xcf\x3f\x33\x08\x3e\x80\xf1\x17\xa3\x6c\xa1\x8e\x74\x7b\x49\x0e\x50\x34\x90\x96\xe7\xb2\x0f\xef\x5b\x02\x56\xdb\x13\xf3\x61\x59\xcb\x84\x83\x08\x73\x68\x5a\xd9\xd6\x6c\x46\xf1\x7e\x32\x0d\x59\xe4\x47\x64\x0a\xa2\xfa\x17\xdb\x66\x0d\x60\x10\x82\xb6\x1b\xcc\x0f\x2a\xb2\x7d\xa5\xc7\xa1\x47\x06\x94\xf7\xd9\x43\x5d\xd6\x1c\x1a\x9f\xd3\xd3\x0c\x38\x92\xaf\xb4\xd7\x6e\x44\x52\xfe\xec\x22\x0e\xb2\xb4\x5f\x64\x87\x58\xc0\xa2\xbe\x34\x8c\x2f\x1f\xfb\x59\x21\x47\x72\x32\x2e\xb4\x1a\x78\x2d\x00\x82\x33\xf7\x70\x84\xfd\x4e\x1d\x01\xfb\xd7\xf0\x77\xe7\xce\x3b\x32\x46\x59\xd1\x82\x40\x5e\xd8\x78\xaf\xbf\x43\xc5\x65\xa7\xf5\x14\xe4\xce\x8d\x11\x22\x1b\xe6\xb4\x5e\xfa\x77\xf7\x5e\x12\xba\xdb\x9d\x0d\xc1\xc9\x64\x98\xbf\x71\x02\xad\xc2\x26\x34\xbb\x7b\x0e\xd1\x25\x76\xad\xe1\x04\xac\x49\xee\xdd\xf1\xd5\x66\xad\x68\x26\x89\x92\x69\x0c\xb6\x38\x17\x71\x8b\x7c\xc7\x1a\xc3\x4a\xa1\xfd\x09\x3c\x97\x55\x98\xdd\x65\xd2\xec\x1b\xf6\xbf\xc9\x9a\x39\xb6\xce\xa5\x8d\xa2\x48\x35\x36\xf8\x51\xf5\x20\x02\x5b\x44\x37\x7d\xb5\x07\x02\x03\x01\x00\x01\xa3\x82\x03\x6e\x30\x82\x03\x6a\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x33\x06\x03\x55\x1d\x20\x04\x2c\x30\x2a\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x82\x01\x10\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x02\x30\x81\xff\x30\x2e\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x64\x68\x73\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xaf\x33\x15\xe7\x0f\xd6\xb6\x4e\x1a\x8b\x27\x18\x92\x52\x25\x61\x3f\xa3\x2c\xc6\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x69\xaf\x28\x4e\x7b\x23\xb0\x71\x60\xc8\x53\xa7\xb8\x67\x50\xb7\xd4\xac\x7c\x48\x6c\xf2\x4b\x3d\xeb\x5e\x10\x08\x83\xa0\xb8\x94\x46\xba\x67\x2c\x80\x91\xaf\x36\x63\xb1\xb6\xa5\x79\x70\x5c\xfb\x4d\x52\x6c\x0a\x3f\xda\x18\x61\x89\xee\xad\x5f\xcc\x04\xb9\x20\xbc\x9d\x06\xf2\xd2\xcc\x9e\x51\x0f\x89\x2b\x00\x2a\x86\xfe\xdd\x41\x92\xc4\x6f\xcb\x86\xeb\x2c\x03\xb5\xe4\xb4\x78\xee\xe9\xad\xce\x48\x65\x5f\xa5\x15\x93\x3d\xa5\x42\xbd\xe5\x72\xf2\xb6\x9b\x25\x07\xa1\x1c\x79\x7f\xcd\xf5\x11\x9e\x05\x37\xb7\x4d\xa3\x17\xba\x05\x9e\xa0\x30\xda\x11\x27\x15\x82\x53\x4e\xc0\x72\xba\xcc\x9a\x89\x24\x4e\xbe\xe2\xac\x59\xe5\x3e\x99\x2d\x5c\x31\x63\x10\x03\x0e\x4d\xd5\xb9\x51\x8e\xc2\x46\x49\x6e\xc9\xed\xff\x33\x74\xac\x3c\x95\x17\xd5\x0f\x16\x50\x37\x80\xc0\xc9\x87\x37\xc2\x13\x36\x51\x4d\xfb\xc9\x6b\xb0\x49\xa8\x6b\xc8\x7a\xc6\xfa\xfd\x83\xa3\x3f\xd8\x9b\x8a\x41\xbb\x3f\x4f\x73\x8f\xf0\x7e\xec\x68\xc1\x2b\x8e\xff\x73\x1e\x9b\x97\xf8\x55\xb5\x3c\x69\x84\x21\x69\xa4\x9b\x20\x9c\xcf\xf4\x69\x9b\xbc\x1b\x02\x63\xfd\x36\xdc\x45\x9c", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1779, /* certificate_len */ (unsigned char *) "\x30\x82\x06\xef\x30\x82\x05\xd7\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd1\xc9\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x30\x31\x32\x30\x35\x31\x33\x33\x38\x34\x30\x5a\x17\x0d\x32\x30\x31\x32\x30\x35\x31\x34\x30\x38\x34\x30\x5a\x30\x65\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x17\x30\x15\x06\x03\x55\x04\x0b\x13\x0e\x46\x69\x73\x63\x61\x6c\x20\x53\x65\x72\x76\x69\x63\x65\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xc2\xb8\x84\x86\xda\xf0\x63\x23\x38\x3b\xa4\x3c\x7c\x5f\x9d\x97\xfa\xbb\x73\xdc\xcf\x48\xbe\x4b\x47\x09\x8e\x39\xb5\x1e\xfe\xfe\xab\x91\x27\x4d\x06\x07\x2a\x8f\x10\xb8\xa3\xfe\xd3\x0e\x5a\x27\x02\xd4\x3d\x67\xfd\x90\x40\x9b\x44\xd5\x23\x09\x21\x0e\x9e\x21\xc2\xd1\xe0\xe6\x2d\xf7\xc1\xdc\xe8\x80\x7b\xf7\x2a\x21\x16\xbd\x71\xad\xfe\x2b\x98\xd1\x28\x0c\x9c\xf3\x1c\xe4\xd7\x45\x36\x3a\x63\x8c\x70\xf4\x5c\x08\x21\x64\xc8\x9e\xa8\x1a\xbf\xe6\xec\xb1\xc7\xb6\x97\xce\x73\x93\xa0\xb7\x37\x03\x61\xd7\x1d\xc2\xab\xc1\x64\x02\x97\x7a\x5c\x51\xfc\x6f\x0b\xae\x78\xd5\xa9\x8b\x78\x95\xe5\x44\x0d\x68\x0e\x42\x60\x7e\x05\x97\xa5\x61\x79\x9b\x50\x57\x69\xaf\xac\xa9\x83\xfb\xf1\x1e\x0e\x17\xc4\xdf\xc7\xd8\xfe\x3d\x83\xb4\x89\xda\x54\xf4\x15\xa8\x14\x9f\xa8\xfe\x82\x5e\x11\xca\x18\xc2\x41\xbd\xc7\xfa\x4a\x91\x81\xa3\xa0\x6d\xaf\xe4\xb8\x83\xb6\xf8\x43\x96\x0c\x43\xd5\x55\xcf\x6b\xeb\x05\x8c\x87\x98\xd9\xcc\xf1\xca\xe2\x28\x48\xec\x40\xe0\xb2\x30\xb3\xe5\xf2\x88\x7c\xd3\x86\x7a\xb3\x48\x46\x80\x46\x59\x24\x41\x35\xd0\x3a\xdf\x97\x02\x03\x01\x00\x01\xa3\x82\x03\x7b\x30\x82\x03\x77\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x41\x06\x03\x55\x1d\x20\x04\x3a\x30\x38\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x66\x73\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xe8\xd2\xaf\xdc\xe0\x0a\x6e\x16\xce\x13\x27\x2f\xd3\xd8\xaf\x3b\x6a\x18\x26\x46\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\xc6\x8c\xe8\x8f\xf6\xb7\x39\xeb\xb7\x59\x65\xd9\x22\xee\xbe\x3e\x67\x56\x42\xda\x3f\xb1\x98\x3a\x23\x82\x96\xd9\x26\x60\xbf\x40\x41\xe3\xf1\xc0\x52\x8d\xea\xa5\x5c\x7f\x51\xd0\xc5\x5a\xc7\xbd\xf7\xa3\xb5\xd5\x05\x2b\xb3\x6d\x42\x9b\xdb\x34\x6b\xe6\x60\xae\xce\x74\xd0\x52\xe7\x63\xe0\xe7\x54\x37\xe1\x83\x17\x2c\x5a\xe3\x59\x1c\xff\xd7\x56\x17\xdf\x63\x27\x52\x85\x76\x6c\xb7\xb7\xd3\xa7\xec\x5d\x3a\x51\xed\xdc\xc3\x54\x1c\x74\x6a\xca\xcf\x44\x6b\x5f\x51\x6f\x39\xa3\xf7\x9b\x7c\x23\x80\xf9\xab\xc9\x12\xc6\x96\xd4\xb5\x70\xfd\x2e\xaf\xc2\x8d\xb5\xbd\x17\x2c\x28\x57\x89\xa4\x31\xc3\xa4\x35\xd2\xcc\xf1\x95\x9c\x36\x66\xab\x93\xd2\x62\x05\x5e\xaf\xa2\x7b\xca\x42\x6f\xce\x45\x75\x1e\x74\x2e\x89\x28\x06\xa3\xc1\x90\x5a\x6b\xd5\x11\xdd\x8a\xb8\x6e\x1c\xf2\xf7\x9d\x81\xd6\xdd\x4e\xea\x05\x56\xa2\xce\x0b\xb7\x95\xb8\xec\x58\x5a\x3f\x2c\x2f\xea\x08\x05\x28\x69\x6f\xac\x92\xb5\xee\x2b\x2c\x21\x01\xea\x16\x92\x57\x9a\x37\x49\x13\xe7\x07\x00\xb2\xc7\x3b\xbf\x19\x1d\x9e\xaf\xf3\x7e\x0d\xe9\x31\xcc\x6c\xe5\xf5\x0f\x1f\xc7\x1b", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1779, /* certificate_len */ (unsigned char *) "\x30\x82\x06\xef\x30\x82\x05\xd7\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd0\x1a\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x39\x30\x37\x31\x39\x31\x33\x34\x33\x35\x31\x5a\x17\x0d\x31\x39\x30\x37\x31\x39\x31\x34\x31\x33\x35\x31\x5a\x30\x65\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x17\x30\x15\x06\x03\x55\x04\x0b\x13\x0e\x46\x69\x73\x63\x61\x6c\x20\x53\x65\x72\x76\x69\x63\x65\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xb5\xcb\x93\x8a\x24\x29\x79\xf4\x02\xff\x81\x4e\xd6\x54\x04\x5d\xb6\x1a\xe8\x55\xe8\x4a\xfe\x7c\x48\xc7\x57\xe4\x2a\x30\x18\xb3\x4b\x27\xe7\x41\x8a\xc7\x30\xbe\x88\x3e\x9e\x07\xad\xc6\x6d\x3f\x7e\x19\x44\x44\x5e\xf6\x15\xc7\xae\xf2\x2a\x7e\x7a\x8b\x9b\x9e\x94\x48\x5f\xbd\x25\xe7\x20\xbf\x61\x6f\xf8\x8a\x68\x50\xf0\x12\x35\xc3\x78\x20\x54\x24\x17\x4b\x97\x5c\x81\xed\x3a\x63\x0f\x3d\x01\x56\xda\xcd\x56\x12\x37\x67\x89\xc2\xbc\xd4\x60\xa0\xfd\x3a\x44\xde\x3e\x3b\x1f\xa1\x18\xe7\x2b\xdd\xdb\xf0\x8b\x92\x77\xd0\xae\x62\xc0\x9e\x32\x6b\xd8\x68\xda\x67\x38\x07\x69\x8e\x11\x78\x7f\xa2\x6c\x2f\x60\xb5\x7c\xc8\x0c\x3e\x2e\x54\x18\x77\x0f\xa6\x52\x45\x6c\xcf\x9f\x98\x82\x22\x2a\x3b\x86\xea\xb1\xa7\x9b\xa7\xe0\x3b\xc9\x42\xae\xe6\x8f\x6d\xfb\x57\xf6\x39\xca\x37\xae\xe0\xcc\xa2\x31\x83\x33\xed\xbd\x1e\x9b\x31\x31\x8d\x64\x54\xb7\x10\x72\x45\xab\x85\xdc\x66\xdc\xf5\x97\x0e\xf7\x81\xcf\x56\x7e\x7b\x9c\x09\x85\x54\x8c\xcc\x2b\x1f\x65\xe7\xde\xb4\xb6\x64\x66\x4a\xc1\x86\x39\xb2\x85\x07\x81\x2f\x33\x94\xe0\x47\xb5\xbd\x4c\xc9\x02\x03\x01\x00\x01\xa3\x82\x03\x7b\x30\x82\x03\x77\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x41\x06\x03\x55\x1d\x20\x04\x3a\x30\x38\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x03\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x02\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x66\x73\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x34\xed\x82\x1e\x7d\x3e\x1d\xb9\x10\x8b\xbf\x55\x07\x8c\x2f\x94\x5d\x60\x54\x5b\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\xbe\x42\xa9\x26\x9b\xaf\x1e\x95\x1c\x87\xe2\xdc\xdb\xcd\x99\xd4\x24\x27\xa0\x6d\xb5\xf1\xad\xfe\x0b\x2f\x54\x95\x60\xfd\xf8\x38\x29\xb1\xad\x1d\x3d\x22\x23\x41\xbc\xf3\x32\x34\x35\x01\xb3\x29\x12\x31\x97\x90\x39\x62\x55\x16\xf2\xd8\x73\x1c\x24\x71\x44\x33\x9b\x0b\x51\xdf\x99\x95\xa0\x77\x91\x86\x47\xca\xc1\x29\xeb\x69\x28\x34\xaa\x8a\xec\x71\x05\xde\xa6\x3a\xc0\xf7\x84\xe8\x21\xc8\xe6\xc3\x65\xb9\x7e\x99\x35\x90\x33\x9c\x40\x15\x8a\xc2\x83\xf5\x42\xf7\xcd\xad\x89\x34\xd4\xc1\xa3\x92\xa2\x77\xc4\x3b\x4f\x8d\x50\x49\x60\x85\xbd\x7e\xc7\xe7\x98\xc1\x8a\x78\xd1\x8c\xaa\x73\x94\xc8\x8b\x2c\xa1\x85\x8f\xce\x3a\x79\x38\x01\x25\x85\x96\xb3\xdd\x5f\x91\x1d\xe1\x73\x94\xaa\x76\xe8\xcb\x21\x3f\x97\x35\x2f\x98\x24\x51\x21\xd0\x9d\xbb\x30\x5f\x02\x7c\x13\x1d\x3c\x05\xfe\xce\x33\xb0\xb0\x5e\x56\x1b\x80\xd7\xc2\x17\xab\x0b\xa9\x51\x62\x26\xe9\x19\x1a\xa2\xc5\x80\x69\xa6\xd0\xae\x24\x52\x07\x61\x1d\xea\xef\x1d\x01\x50\x14\x80\xc4\xd2\xcd\x75\x7c\xe1\xb9\xa2\x29\xdd\x15\x63\x7a\x1b\xde\xae\xb8\x17\x3d\x3f\x53\xa5\x13\x4f\x1e", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 1431, /* certificate_len */ (unsigned char *) "\x30\x82\x05\x93\x30\x82\x04\x7b\xa0\x03\x02\x01\x02\x02\x04\x46\xea\xce\xa1\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x39\x30\x31\x31\x38\x31\x34\x31\x38\x33\x31\x5a\x17\x0d\x31\x39\x30\x31\x31\x38\x31\x34\x34\x38\x33\x31\x5a\x30\x65\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x17\x30\x15\x06\x03\x55\x04\x0b\x13\x0e\x46\x69\x73\x63\x61\x6c\x20\x53\x65\x72\x76\x69\x63\x65\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xaf\xbc\xcb\x0a\x5e\xe9\xbb\xad\x3c\xba\x54\xcf\xed\xd6\x8f\xcc\x68\x83\xa9\x04\x77\x30\x25\x2d\x15\x43\x20\x0e\xac\x0b\x42\x76\x27\x51\xde\x72\x29\xa6\x12\x1e\x26\xdc\xe4\x0b\xab\x5a\xd6\x2b\x1a\xc9\x24\xce\x2d\x8b\x26\x91\xd8\x9c\xf4\x4a\x00\x9e\x81\x0a\xb3\x22\x17\x4a\x62\xbc\x4f\xd2\x23\x77\x11\xae\x2f\x86\x1c\x9d\xad\x81\x23\x21\xda\xec\xe4\x8f\x87\xfc\x3e\xb2\xa6\xac\x02\x22\x57\x4f\xb8\x6a\x20\xdc\xd3\xa2\x93\x8e\x62\x78\x7b\xa4\x17\x05\x92\x0a\xb3\x4d\x18\x35\x75\x02\xbe\x93\xd5\xa1\x4d\xb6\x96\x21\xac\xb9\xe2\x2f\xc7\x64\xb1\xae\xeb\x15\x3a\x0e\x55\x22\x9b\x08\x97\xfc\x0c\x4d\xed\x2b\xeb\x0b\xc7\x04\x76\x3c\x3e\xda\xa8\x10\xc2\x29\x3f\xe4\x94\xec\x93\xb5\xe8\x48\x0a\x87\x34\xa7\x90\x73\x9a\x87\x60\xa5\xca\x8b\x7e\x7e\x6d\xe0\xd0\x2f\x92\x3a\xb1\xe7\x95\x03\x0a\x02\x9a\x6a\x0b\xd1\xaa\x2a\x70\x91\x89\x0c\x5e\x61\x1b\x4d\xf6\xef\x33\xe1\xc4\xe3\xd1\xd7\x0f\xaf\x02\xa7\x1c\x86\xcd\xff\xfb\xb1\xf9\x6b\xd3\x81\x1d\xb1\xeb\xa4\x64\x7d\xdc\x2d\xbf\x07\xfe\xe8\x29\x1d\x0d\xa7\xd1\xf8\x87\xe0\xc9\x99\xaa\x71\x02\x03\x01\x00\x01\xa3\x82\x02\x1f\x30\x82\x02\x1b\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x0b\x06\x03\x55\x1d\x0f\x04\x04\x03\x02\x01\x06\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xd7\x7d\xf9\xc0\xd9\xb1\x6d\x71\x3b\x82\x9a\xbe\x88\xb8\xeb\x63\xf5\x22\x93\x84\x30\x0c\x06\x03\x55\x1d\x13\x04\x05\x30\x03\x01\x01\xff\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x8c\x8d\x18\x2b\xe7\x3f\x73\xbb\x56\x9c\x68\x85\xee\xf4\xd3\xd1\x0c\x19\x6f\x20\x39\x30\x5e\x50\x93\xe6\x6d\xb0\x5c\x79\x44\x56\xbb\xe4\x7e\x9b\xb4\x77\x6d\x56\x9b\xf6\x78\x55\x0a\xb4\xdd\x43\x18\xdf\x23\xa1\x4a\x73\xa3\x8e\xf6\x4e\x00\x90\x25\xb0\xa5\x46\x2f\x98\xd8\x95\x67\x0d\x68\xbb\xd1\x32\x32\x15\x6f\x14\x88\x4c\x23\xdd\x29\x52\x76\x3d\x0b\x0b\x3a\x56\x61\x09\x20\x6f\x6c\x67\x21\x25\xb8\xec\x7b\xab\xe7\x6c\x73\x84\x2f\x83\x6c\xb6\xcc\x6b\x33\xdb\x7d\x32\x2a\x84\x5f\x9c\x8d\x32\x73\xc7\x60\x86\x31\x31\x05\xe5\x7b\xbf\x2f\x1a\x42\xf1\x8e\xfb\xf8\x3e\x4e\x78\x5a\xf7\xbb\xe0\xaf\x6f\xa1\xf0\xee\x41\x10\x40\xa2\x1c\x5e\x57\xf2\x73\x71\xd5\xb2\x02\xe0\x8f\x00\xbb\x08\xf8\x8c\xe6\x0e\x99\x38\xf9\x39\x02\x83\x73\x1e\xf8\xf5\xe2\x3d\x6a\x43\x93\x43\x54\x77\xf0\x00\x18\x10\xfa\xd8\x29\x42\x89\x9c\xf4\x00\x8f\xf7\xee\x03\xf0\x14\xb0\xfd\x44\x8b\x97\xf6\x4f\xb4\x27\x4e\x86\xe0\xb5\x56\xb2\x72\x51\x46\xfc\x82\xb2\x83\xd2\x44\x9b\x99\xf8\x24\x6d\x7c\xd3\xb3\x87\xd0\xa6\x26\x24\xb9\x42\x18\x48\xf9\x02\x0d\x8b\xf8\x36", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2060, /* certificate_len */ (unsigned char *) "\x30\x82\x08\x08\x30\x82\x06\xf0\xa0\x03\x02\x01\x02\x02\x04\x4a\x61\xd2\xa5\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x31\x31\x30\x31\x32\x32\x31\x33\x33\x39\x30\x36\x5a\x17\x0d\x32\x31\x30\x31\x32\x32\x31\x34\x30\x39\x30\x36\x5a\x30\x78\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0d\x30\x0b\x06\x03\x55\x04\x0b\x13\x04\x4e\x41\x53\x41\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x4e\x41\x53\x41\x20\x4f\x70\x65\x72\x61\x74\x69\x6f\x6e\x61\x6c\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xb7\x70\xc7\x05\x85\xde\x5b\xb4\xe6\xed\x10\x20\xbc\x4d\x35\xaa\xdd\x81\x06\xe9\xcd\x6a\xa4\x5f\xcd\xa2\xd9\x30\xd1\x21\x9e\x2c\xfd\x94\xee\xc7\x54\x1c\xca\x3e\x86\x97\x6f\xeb\xbd\xb9\xb2\xfa\xec\xdd\xc1\x61\xd3\x88\xf7\x7a\x33\x2f\x30\x3f\x9a\x0c\xac\x19\x45\x43\x6b\x68\x0a\xb5\x51\x93\xbe\xcd\x3d\x4f\x74\xc8\x7d\xa6\x5c\xa6\x36\xb5\x75\x0d\x4b\x82\x94\x25\xef\xac\x47\xaf\x38\xa5\x3d\x98\x79\x3d\x88\xd8\xb7\x6b\x65\xea\xfe\x74\xf9\x93\x06\x8c\x0b\xa9\xa9\xe4\x23\x0b\x66\xa1\xd2\x64\xde\x5f\xc0\xc1\x43\x4c\x4f\xf7\x7b\xff\x74\x61\x7d\x15\x3d\x0d\x0a\x8f\x4a\x40\xe7\xbe\x8c\x5e\xaa\x04\xb8\x52\x75\x59\xf8\x23\x77\xe6\x86\x58\xe0\xa4\x7a\x08\xf9\x3b\x60\x63\xc9\x32\x46\xa6\x98\x11\x22\x59\xd1\x07\xf2\xdd\x6a\x31\x37\x7e\xc8\xd8\x87\x5b\xf0\x20\x90\x5c\x0f\x02\xd6\xe9\x57\x1f\x1e\x61\x89\x44\xd9\x12\x1d\xef\x7f\x8b\xb6\x93\x5b\xe3\x3b\xd5\xed\x1f\x0a\xa4\x33\xbd\xb7\x8e\xeb\x04\x9c\x43\x66\x14\xb0\xb9\xb5\x63\x4f\x27\xf2\xd8\x0a\x26\xba\xd6\xb7\x9b\xcd\x6a\x91\xf0\x73\x9c\xcf\x44\xce\x75\xe3\xd2\x60\x49\x58\x57\x02\x03\x01\x00\x01\xa3\x82\x04\x81\x30\x82\x04\x7d\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x5d\x06\x03\x55\x1d\x20\x04\x56\x30\x54\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x11\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x10\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6e\x6f\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x81\xed\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xe0\x30\x81\xdd\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6e\x6f\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\xab\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\x9e\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x63\x2e\x6e\x61\x73\x61\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x4e\x41\x53\x41\x25\x32\x30\x4f\x70\x65\x72\x61\x74\x69\x6f\x6e\x61\x6c\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x4e\x41\x53\x41\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\x9b\x06\x03\x55\x1d\x1f\x04\x82\x01\x92\x30\x82\x01\x8e\x30\x81\xa9\xa0\x81\xa6\xa0\x81\xa3\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x30\x81\xdf\xa0\x81\xdc\xa0\x81\xd9\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x86\x81\xa8\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x07\x2e\x9a\x6a\x58\x83\x21\x53\xc9\x68\x62\x52\x63\xf6\x6d\x4b\x32\x3a\x9e\x82\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x0b\x05\x00\x03\x82\x01\x01\x00\x2c\x22\xc7\x46\xe6\x02\x3a\x5b\x1f\x5d\x04\xbd\xda\xbb\x4b\xf0\x37\x2b\x5f\x5c\x31\x8d\xb8\xb4\x56\xbf\xce\xed\x59\x6d\x83\xea\xb2\x24\x10\x82\x7c\x18\xb3\x62\x9a\x17\x39\xf7\x64\x9b\xfe\xdf\x05\x94\xa2\xe3\x05\xc9\x2c\x97\xf7\xe7\xca\x20\x14\x6c\x0f\x62\x5e\x96\x43\x47\xb2\x52\x7b\x98\xc2\xd9\x18\xb2\x31\xb0\x56\x40\x28\xd4\xf6\x79\x63\x1e\x0d\x9d\x1f\x98\x7c\x86\x2c\x8f\x33\xd7\xbb\xf0\x01\x5c\x43\x13\x9d\xb9\x09\xa8\xe6\x63\xa7\xf8\x66\x82\xda\x73\x46\x6e\x7a\x36\x73\xd4\x00\x9b\x75\x8a\xe2\x56\x93\xc3\x55\x03\x97\x1c\xad\x2c\xf8\x20\xb0\x9a\xce\x23\x3a\x86\x96\x92\x06\x98\x51\x7b\x6f\x9e\x78\x54\xe5\xe2\x73\x6a\x27\xf8\xc2\xa5\xe3\x4f\xc9\xf2\xd7\x86\xf4\xc1\x03\xd1\xcd\xe2\xb5\x46\x7d\xeb\x7a\xd4\xa8\x2c\x0e\x6d\x27\xbe\xc0\x33\xe5\xae\x3c\x65\x78\xde\x2a\x00\xa0\x12\xe3\x28\x55\x35\x75\xe0\xbb\xc3\x3c\xd7\xdb\x0e\x2d\x73\x24\x53\xe0\x43\x65\xa1\x83\xe9\xf9\xdc\xec\x2b\x3b\xf7\xa7\x09\xeb\xf9\x8e\x74\x56\x84\x3c\xbd\xe5\xd2\x8f\xb1\x94\x1e\xaa\x1d\x7c\x53\xf7\x6a\x94\x47\xc1\xa1\x85\x8f\x4b\xc4\x1e\x8d", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2030, /* certificate_len */ (unsigned char *) "\x30\x82\x07\xea\x30\x82\x06\xd2\xa0\x03\x02\x01\x02\x02\x04\x45\xf9\x4a\xb5\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x37\x30\x33\x31\x35\x32\x31\x33\x37\x30\x37\x5a\x17\x0d\x31\x37\x30\x33\x31\x35\x32\x32\x30\x37\x30\x37\x5a\x30\x78\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0d\x30\x0b\x06\x03\x55\x04\x0b\x13\x04\x4e\x41\x53\x41\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x4e\x41\x53\x41\x20\x4f\x70\x65\x72\x61\x74\x69\x6f\x6e\x61\x6c\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xe4\x4b\x31\x6b\x18\x2a\x48\xcc\x71\xf4\x7a\xd8\x49\x28\x64\x55\xf8\x3c\xe9\xb0\x00\x05\x23\x61\x1a\xb7\x97\x2f\x69\x45\x6d\x95\x52\xdb\x06\x97\x45\xf7\xe5\x8b\x42\x34\x48\x27\x8f\x93\x6f\xba\xfb\xb7\x36\x04\x43\xe1\xc2\xa8\xc7\xaf\xb3\xb3\x49\x9f\xd0\x19\xa5\xa9\xf4\x62\x49\xa7\x2f\xa7\x2f\xe9\xf2\xe6\x88\xcb\x14\x44\x80\x08\x18\x32\x9f\x1c\x22\xb7\x5b\x80\x42\x03\x17\xd6\x20\x26\x41\xd2\x57\x05\xbe\x1d\x77\xb3\xd3\x00\xed\x73\xa0\x95\x86\x4d\x34\x1b\x09\x7f\xb2\x3f\x28\x58\x53\x56\x59\xe7\xfd\x31\x44\x2c\x8c\xbd\xc1\x71\xa7\x9d\xd6\x90\x10\xcc\xcd\x09\x6d\xb0\x3b\x8c\xd9\x37\x34\x08\x2d\x7b\xe6\xdf\x2f\xf5\x0a\x1f\x8d\x9a\x21\x60\x42\xc8\xe6\x32\x1e\xe4\xc5\x61\xfd\xf2\x7d\xba\x7b\x60\x5b\xe2\x34\xbb\xec\x87\x74\x56\xf6\x24\x69\x1c\x91\x68\xd8\xc8\x01\x56\xcb\x62\x42\x0a\x5e\x91\xe4\x39\x08\x79\xaa\xbb\xc9\x2a\x0f\xa9\xfd\x4c\x71\x37\x2e\x9f\xd9\x71\x94\x0b\x66\xf5\xb3\x3e\xd0\xf8\x13\xf3\x5a\xeb\x76\x88\x78\x23\xbe\x1a\x77\xe1\xb1\xaf\x21\x88\x56\x4e\x11\xf2\x22\x91\x74\x81\x78\x92\xc2\x93\x2e\x7e\x2a\x31\x02\x03\x01\x00\x01\xa3\x82\x04\x63\x30\x82\x04\x5f\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x4f\x06\x03\x55\x1d\x20\x04\x48\x30\x46\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6e\x6f\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x81\xd7\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xca\x30\x81\xc7\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6e\x6f\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\x95\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\x88\x6c\x64\x61\x70\x3a\x2f\x2f\x6e\x64\x61\x63\x2e\x61\x72\x63\x2e\x6e\x61\x73\x61\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x4e\x41\x53\x41\x25\x32\x30\x4f\x70\x65\x72\x61\x74\x69\x6f\x6e\x61\x6c\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x4e\x41\x53\x41\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xaa\x6d\xb5\x89\x9e\x27\x1a\xe9\xac\x2d\xf1\xe6\x6f\x8d\x23\xb6\xa0\xbf\x93\xc1\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\xa8\x3b\x4f\xeb\x3a\xc6\xa8\x76\x54\x10\x19\xe8\x98\x17\x4b\xad\x43\x84\xa2\x1c\xe7\x2b\x9f\x4e\xf7\x9d\xc3\x23\xf8\xcb\xa5\x68\x64\x50\x5f\xba\x2f\xed\xd2\xd3\xb1\x1c\xd6\xc7\xe8\x24\xee\x48\x1a\x70\xed\x5b\x87\x24\x25\xeb\x3a\xb1\x94\x48\x31\x25\xe1\x07\x0a\xb8\xbf\xe2\xb8\x4c\x13\xdd\x8e\xaf\x99\x5e\xe7\x9b\x59\xb5\xc5\x14\xe1\x0b\x54\x7d\x39\xdc\x4c\x4e\x0e\xa7\xad\x24\x31\x4a\x1a\xd6\x92\xe1\xb2\x37\xcc\xfe\xe1\xeb\xfe\x0a\xc5\x3d\x06\xa7\xa6\x0a\x14\x91\x0d\x9b\xbc\x67\xdc\x6a\xba\x6d\x7a\x3f\x4c\x6f\x14\x0c\x75\xa5\x6f\xee\xc9\xff\x0e\x4c\x9a\x5b\xd7\xf5\x9b\x29\x28\xe5\x29\x61\x2b\x47\x3e\x4b\x66\x5c\xc4\xa8\xe4\x58\xf9\xbd\xd3\xb9\x34\x2c\x84\xf6\x7b\xa3\x3b\x45\xe3\x01\xd5\x74\x18\x90\x12\xd0\x6c\x64\xc9\x8d\x60\x81\x2e\x11\x06\xc0\x61\x05\x16\x95\x9c\x46\x16\xed\x53\x9b\xf7\x3c\xb7\xaa\x51\xbe\x05\x97\x91\xb6\x87\x8a\xfe\xea\x3e\x97\x41\xd5\x34\xbf\xab\x44\x98\x1e\xf6\x01\x31\xa1\xd5\x79\xc0\x0a\xe6\xf2\x88\x00\x10\xa4\xc4\x69\x0a\xa9\x5e\xc3\xe8\x8b\x30\xad\xed\xe1\xf7\x58\x37\x99\x07\x4c\x14\xc8", /* certificate */ /* keysize */ }, { CACKEY_ID_TYPE_CERT_ONLY, /* id_type */ 2030, /* certificate_len */ (unsigned char *) "\x30\x82\x07\xea\x30\x82\x06\xd2\xa0\x03\x02\x01\x02\x02\x04\x44\x3e\xa7\xe9\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x30\x1e\x17\x0d\x30\x36\x30\x39\x32\x30\x31\x38\x34\x31\x30\x38\x5a\x17\x0d\x31\x36\x30\x39\x32\x30\x31\x39\x31\x31\x30\x38\x5a\x30\x78\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x0d\x30\x0b\x06\x03\x55\x04\x0b\x13\x04\x4e\x41\x53\x41\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x4e\x41\x53\x41\x20\x4f\x70\x65\x72\x61\x74\x69\x6f\x6e\x61\x6c\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\x9b\x6e\xfb\x99\x21\xa9\xff\xe1\x94\xa1\x8f\x38\x7d\xd7\x08\x6d\xb2\x2b\x96\x1e\x2c\xa1\x4e\x0b\xbb\x28\xd0\x67\xff\xa2\x8b\x54\xcd\xc2\x02\x25\x67\x74\xde\x6e\xe1\xb9\xfe\xc7\x0a\x09\x70\x59\xb0\x5b\xf1\x7c\xaf\xb3\x1b\xd6\xff\x26\x60\xdd\x1b\x41\xca\xfe\xd9\xeb\x63\x49\xf7\xaa\xbb\x3c\xa9\x14\x39\x2b\x97\xbc\x13\x4f\x1c\xaa\xcc\x11\x49\x02\x26\xbf\x77\x13\x99\x67\x0d\x1b\x08\xce\xe5\xbe\xc3\x81\xf4\x34\x17\x70\x9a\x2b\xbb\xdb\xf9\xe9\xc4\x60\x9c\x7a\x64\xf1\xb4\xe4\xd1\xce\x64\xe4\x1d\xf5\x5f\x5c\x07\x70\xe1\xe1\x6a\x94\x19\x46\xa9\x8d\x73\x10\x50\x9f\xe9\xd7\xfe\xa0\x4a\x9b\xab\xfa\x33\xf3\x45\xee\xb2\x59\x78\x7d\x3e\x01\x3f\xc3\xa3\x58\x51\xc1\xf2\xe8\x5f\x17\xf4\x7c\xd6\x6e\xd1\x56\xf1\x27\x00\x35\xfb\xfd\x7d\x57\xe8\xc7\x30\xdb\x02\xaf\x16\x14\xe3\xff\xdc\x4c\xbf\x77\xff\x64\xc8\xce\x3f\xb3\xf6\x39\x2e\xf8\xd9\xa3\x28\x37\xd0\xb0\x24\xb3\xb9\x51\x9d\x0c\x61\x82\xae\x1c\xca\x18\x9d\x99\xf0\xf6\x39\x1f\x99\x10\x28\x10\xa1\xde\x3c\x6f\xf6\x7b\x69\xd4\xb8\xa3\xef\x8a\x4b\xc9\x86\x2f\xa4\xe4\xa8\xfc\xa2\x81\x02\x03\x01\x00\x01\xa3\x82\x04\x63\x30\x82\x04\x5f\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\x01\xff\x30\x4f\x06\x03\x55\x1d\x20\x04\x48\x30\x46\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x06\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x07\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x08\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x03\x0d\x30\x0c\x06\x0a\x60\x86\x48\x01\x65\x03\x02\x01\x05\x04\x30\x82\x01\x0f\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x82\x01\x01\x30\x81\xfe\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6e\x6f\x63\x61\x5f\x61\x69\x61\x2e\x70\x37\x63\x30\x81\xcc\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\xbf\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x2c\x63\x72\x6f\x73\x73\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x50\x61\x69\x72\x3b\x62\x69\x6e\x61\x72\x79\x30\x81\xd7\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0b\x04\x81\xca\x30\x81\xc7\x30\x2d\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x21\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x6e\x6f\x63\x61\x5f\x73\x69\x61\x2e\x70\x37\x63\x30\x81\x95\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x05\x86\x81\x88\x6c\x64\x61\x70\x3a\x2f\x2f\x6e\x64\x61\x63\x2e\x61\x72\x63\x2e\x6e\x61\x73\x61\x2e\x67\x6f\x76\x2f\x6f\x75\x3d\x4e\x41\x53\x41\x25\x32\x30\x4f\x70\x65\x72\x61\x74\x69\x6f\x6e\x61\x6c\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x4e\x41\x53\x41\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x63\x41\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x3b\x62\x69\x6e\x61\x72\x79\x30\x82\x01\xa1\x06\x03\x55\x1d\x1f\x04\x82\x01\x98\x30\x82\x01\x94\x30\x82\x01\x5c\xa0\x82\x01\x58\xa0\x82\x01\x54\xa4\x81\xa0\x30\x81\x9d\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x18\x30\x16\x06\x03\x55\x04\x0a\x13\x0f\x55\x2e\x53\x2e\x20\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x31\x23\x30\x21\x06\x03\x55\x04\x0b\x13\x1a\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x54\x72\x65\x61\x73\x75\x72\x79\x31\x22\x30\x20\x06\x03\x55\x04\x0b\x13\x19\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x31\x1c\x30\x1a\x06\x03\x55\x04\x0b\x13\x13\x55\x53\x20\x54\x72\x65\x61\x73\x75\x72\x79\x20\x52\x6f\x6f\x74\x20\x43\x41\x31\x0d\x30\x0b\x06\x03\x55\x04\x03\x13\x04\x43\x52\x4c\x31\x86\x81\xae\x6c\x64\x61\x70\x3a\x2f\x2f\x6c\x64\x61\x70\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x63\x6e\x3d\x43\x52\x4c\x31\x2c\x6f\x75\x3d\x55\x53\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x25\x32\x30\x52\x6f\x6f\x74\x25\x32\x30\x43\x41\x2c\x6f\x75\x3d\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x25\x32\x30\x41\x75\x74\x68\x6f\x72\x69\x74\x69\x65\x73\x2c\x6f\x75\x3d\x44\x65\x70\x61\x72\x74\x6d\x65\x6e\x74\x25\x32\x30\x6f\x66\x25\x32\x30\x74\x68\x65\x25\x32\x30\x54\x72\x65\x61\x73\x75\x72\x79\x2c\x6f\x3d\x55\x2e\x53\x2e\x25\x32\x30\x47\x6f\x76\x65\x72\x6e\x6d\x65\x6e\x74\x2c\x63\x3d\x55\x53\x3f\x61\x75\x74\x68\x6f\x72\x69\x74\x79\x52\x65\x76\x6f\x63\x61\x74\x69\x6f\x6e\x4c\x69\x73\x74\x30\x32\xa0\x30\xa0\x2e\x86\x2c\x68\x74\x74\x70\x3a\x2f\x2f\x70\x6b\x69\x2e\x74\x72\x65\x61\x73\x2e\x67\x6f\x76\x2f\x55\x53\x5f\x54\x72\x65\x61\x73\x75\x72\x79\x5f\x52\x6f\x6f\x74\x5f\x43\x41\x2e\x63\x72\x6c\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x68\x84\x15\x48\x8c\x54\x70\x7f\x2d\x12\x58\x0e\xec\x1c\x78\xef\x3c\x2e\x59\x64\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x3a\x8f\xea\xb8\x04\xb9\x4c\xff\xbf\xd7\x00\x0b\x2b\x1a\x4b\x00\x38\xdb\xbb\xbe\x30\x19\x06\x09\x2a\x86\x48\x86\xf6\x7d\x07\x41\x00\x04\x0c\x30\x0a\x1b\x04\x56\x37\x2e\x31\x03\x02\x00\x81\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\x11\x7c\x0e\x1f\x1e\x3c\x2b\xaa\xd0\x25\xb6\xc5\x0b\x67\x9c\xa0\x76\x76\xc8\xda\x9a\x45\x07\x5e\x7f\x8b\xb0\x14\x21\xc2\x3f\x09\xd9\x85\x20\xdf\xd7\xcc\xa7\x3b\xf9\x58\x5c\xc7\x1a\xa6\x34\x92\xa1\x00\x3b\x96\x77\x24\x72\xb7\x26\x1c\xdb\xac\xa7\x45\x96\x72\x4c\xdd\x7b\x6c\x8f\xea\xef\x78\xb9\xdc\xb3\x26\xfe\x91\x80\x99\x3e\x0e\xb0\xdb\x8e\xb6\xd1\xa2\x4a\xd1\xae\x7d\x61\x3d\x8f\xc7\xcd\x1b\x40\xb2\x40\x1b\x9c\xb9\xa3\x62\xd8\x15\x49\x23\xfa\xc3\x73\x90\xbb\x4e\x52\xef\x37\x30\xed\x24\xe2\x8b\x57\x1f\xe2\x54\x7a\xf8\x95\xd9\x97\x62\xcc\x13\x71\x74\x2d\xda\xc7\x46\x5d\x57\x3a\xd2\xdf\x22\xed\xcd\x18\xce\xf7\xea\x89\x89\x3d\x23\xe0\xe6\xdb\x65\x4c\xdd\x42\xad\xd4\x21\xee\x04\xd5\x01\xcf\x37\x1a\xe8\xf2\x83\xf8\x2f\xf5\x21\x73\x06\x2b\xa0\x53\xa9\x8d\x60\xbc\xbe\xf6\xe0\xae\xcb\xa4\x45\x70\x37\x03\x6e\x7f\x2d\x9d\x89\x30\x8e\xce\xb6\xba\xa7\x2b\xa1\xf0\x90\x05\xf5\x6b\xf1\x0b\x89\x5f\x62\xfb\x06\x0d\x2c\xce\x9d\x53\xee\x23\xbf\xa9\x3e\x5c\x7e\x7f\xc3\xe8\x45\x76\xfe\x61\xad\x02\xd1\x1c\x26\x2b\x80\xff\xc1\xab\x32", /* certificate */ /* keysize */ }, |
Modified configure.ac from [8952b0e3fb] to [76a04092ae].
|
| | | 1 2 3 4 5 6 7 8 | AC_INIT(cackey, 0.7.1) AC_CONFIG_HEADERS(config.h) dnl Locate standard tools AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_AIX |
︙ | ︙ | |||
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | AC_MSG_RESULT(okay) ], [ AC_MSG_RESULT(failed) AC_MSG_FAILURE([simple PC/SC program failed]) ] ) dnl Set version script, to limit the scope of symbols DC_SETVERSIONSCRIPT(libcackey.vers, libcackey.syms) dnl Upate LDFLAGS to include setting the run-time linker path to the same as our compile-time linker DC_SYNC_RPATH dnl If we updated LIBOBJS, update SHLIBOBJS -- must be last. DC_SYNC_SHLIBOBJS dnl Produce Makefile AC_OUTPUT(Makefile libcackey.syms) | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | AC_MSG_RESULT(okay) ], [ AC_MSG_RESULT(failed) AC_MSG_FAILURE([simple PC/SC program failed]) ] ) dnl Option to enable DoD certs on hardware slot AC_ARG_ENABLE(dod-certs-on-hw-slots, AC_HELP_STRING([--enable-dod-certs-on-hw-slots], [Specify that DoD certificates should be made available on hardware token slots]), [ dodcertsonhwslots=$enableval ], [ dodcertsonhwslots=no ]) if ! test "${dodcertsonhwslots}" = 'no'; then AC_DEFINE(CACKEY_CARD_SLOT_INCLUDE_EXTRA_CERTS, [1], [Specify that DoD certificates should be made available on hardware token slots]) fi dnl Option to disable DoD certs entirely AC_ARG_ENABLE(dod-certs, AC_HELP_STRING([--disable-dod-certs], [Disable including DoD certs entirely. The user may override this with the CACKEY_EXTRA_CERTS environment variable.]), [ dodcerts=$enableval ], [ dodcerts=yes ]) if test "${dodcerts}" = 'no'; then AC_DEFINE(CACKEY_NO_EXTRA_CERTS, [1], [Specify that DoD certificates should not be made available]) fi dnl Option to hard-code a command to run to request a PIN (enabling protected authentication path) AC_ARG_WITH(pin-command, AC_HELP_STRING([--with-pin-command=<command>], [Specify a command to run to request a PIN from the user. The user may override this with the CACKEY_PIN_COMMAND environment variable.]), [ pincommand="${withval}" ], [ pincommand="no" ]) AC_ARG_WITH(pin-command-x, AC_HELP_STRING([--with-pin-command-x=<command>], [Same as --with-pin-command, but only sets Protected Authentication Path if the DISPLAY environment variable is set]), [ pincommandxonly="${withval}" ], [ pincommandxonly="no" ]) if ! test "${pincommand}" = 'no'; then AC_DEFINE_UNQUOTED(CACKEY_PIN_COMMAND_DEFAULT, [$pincommand], [Command to run to prompt user for PIN]) fi if ! test "${pincommandxonly}" = 'no'; then AC_DEFINE_UNQUOTED(CACKEY_PIN_COMMAND_XONLY_DEFAULT, [$pincommandxonly], [Command to run to prompt user for PIN only if DISPLAY environment variable is set]) fi dnl Set version script, to limit the scope of symbols DC_SETVERSIONSCRIPT(libcackey.vers, libcackey.syms) dnl Upate LDFLAGS to include setting the run-time linker path to the same as our compile-time linker DC_SYNC_RPATH dnl If we updated LIBOBJS, update SHLIBOBJS -- must be last. DC_SYNC_SHLIBOBJS dnl Produce Makefile AC_OUTPUT(Makefile libcackey.syms) |
Modified leakcheck/leakcheck from [a80110599b] to [2624af0c94].
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /bin/bash LEAKCHECKFILE="$1" TMPFILE="${TMPDIR:-/tmp}/malloc-free-check-$$${RANDOM}${RANDOM}${RANDOM}.tmp" export LEAKCHECKFILE TMPFILE if [ -z "${LEAKCHECKFILE}" ]; then echo "Usage: leakcheck <filename>" >&2 echo " filename Name of file containing debugging output" >&2 exit 1 fi | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #! /bin/bash LEAKCHECKFILE="$1" TMPFILE="${TMPDIR:-/tmp}/malloc-free-check-$$${RANDOM}${RANDOM}${RANDOM}.tmp" export LEAKCHECKFILE TMPFILE if [ -z "${LEAKCHECKFILE}" ]; then echo "Usage: leakcheck <filename>" >&2 echo " filename Name of file containing debugging output" >&2 exit 1 fi egrep '(MALLOC|FREE|REALLOC)' "${LEAKCHECKFILE}" | sed 's@^.*FREE(\([x0-9a-fA-F]*\)).*$@free \1@;s@^.*MALLOC() = @malloc @;s@^.*REALLOC(\([x0-9a-fA-F]*\)) = @realloc \1 @' > "${TMPFILE}" cat "${TMPFILE}" | while read op addr newaddr; do case "${op}" in malloc) if [ -z "${alloclist}" ]; then alloclist="${addr}" else |
︙ | ︙ |
Modified test.c from [7438606333] to [47338c5b52].
︙ | ︙ | |||
234 235 236 237 238 239 240 241 242 243 244 245 246 247 | printf(" Slot %lu:\n", currSlot); chk_rv = C_GetSlotInfo(slots[currSlot], &slotInfo); if (chk_rv != CKR_OK) { return(1); } printf(" Desc : %.*s\n", 32, slotInfo.slotDescription); printf(" ManufID: %.*s\n", 32, slotInfo.manufacturerID); printf(" HWVers : %i.%i\n", slotInfo.hardwareVersion.major, slotInfo.hardwareVersion.minor); printf(" FWVers : %i.%i\n", slotInfo.firmwareVersion.major, slotInfo.firmwareVersion.minor); printf(" Flags : "); if ((slotInfo.flags & CKF_TOKEN_PRESENT) == CKF_TOKEN_PRESENT) { printf("CKF_TOKEN_PRESENT "); | > | 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | printf(" Slot %lu:\n", currSlot); chk_rv = C_GetSlotInfo(slots[currSlot], &slotInfo); if (chk_rv != CKR_OK) { return(1); } printf(" Id : %lu\n", (unsigned long) slots[currSlot]); printf(" Desc : %.*s\n", 32, slotInfo.slotDescription); printf(" ManufID: %.*s\n", 32, slotInfo.manufacturerID); printf(" HWVers : %i.%i\n", slotInfo.hardwareVersion.major, slotInfo.hardwareVersion.minor); printf(" FWVers : %i.%i\n", slotInfo.firmwareVersion.major, slotInfo.firmwareVersion.minor); printf(" Flags : "); if ((slotInfo.flags & CKF_TOKEN_PRESENT) == CKF_TOKEN_PRESENT) { printf("CKF_TOKEN_PRESENT "); |
︙ | ︙ | |||
325 326 327 328 329 330 331 | } printf("\n"); } } chk_rv = C_OpenSession(slots[0], CKF_SERIAL_SESSION, NULL, NULL, &hSession); if (chk_rv == CKR_OK) { | > > > > > | | 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | } printf("\n"); } } chk_rv = C_OpenSession(slots[0], CKF_SERIAL_SESSION, NULL, NULL, &hSession); if (chk_rv == CKR_OK) { chk_rv = C_GetTokenInfo(slots[0], &tokenInfo); if (chk_rv != CKR_OK) { return(1); } if ((tokenInfo.flags & CKF_LOGIN_REQUIRED) == CKF_LOGIN_REQUIRED && (tokenInfo.flags & CKF_PROTECTED_AUTHENTICATION_PATH) == 0) { fgets_ret = NULL; while (fgets_ret == NULL) { printf("** ENTER PIN: "); fflush(stdout); fgets_ret = fgets((char *) user_pin, sizeof(user_pin), stdin); |
︙ | ︙ |