"CA","AddTrust_External_CA_Root","AddTrust External CA Root","2020/05/30 10:48:38"
13:25:46.886 -> "CA","Baltimore_CyberTrust_Root","Baltimore CyberTrust Root","2025/05/12 23:59:00"
13:25:46.920 -> "CA","COMODO_RSA_Certification_Authority","COMODO RSA Certification Authority","2038/01/18 23:59:59"
13:25:46.920 -> "CA","DigiCert_High_Assurance_EV_Root_CA","DigiCert High Assurance EV Root CA","2031/11/10 00:00:00"
13:25:46.920 -> "CA","Entrust_Root_Certification_Authority","Entrust Root Certification Authority","2026/11/27 20:53:42"
13:25:46.953 -> "CA","Equifax_Secure_Certificate_Authority","","2018/08/22 16:41:51"
13:25:46.953 -> "CA","GeoTrust_Global_CA","GeoTrust Global CA","2022/05/21 04:00:00"
13:25:46.953 -> "CA","GeoTrust_Primary_Certification_Authority_G3","GeoTrust Primary Certification Authority - G3","2037/12/01 23:59:59"
13:25:46.953 -> "CA","GlobalSign_Root_CA","GlobalSign Root CA","2028/01/28 12:00:00"
13:25:46.986 -> "CA","Go_Daddy_Root_Certificate_Authority_G2","Go Daddy Root Certificate Authority - G2","2037/12/31 23:59:59"
13:25:46.986 -> "CA","VeriSign_Class_3_Public_Primary_Certification_Authority_G5","VeriSign Class 3 Public Primary Certification Authority - G5","2036/07/16 23:59:59"
13:25:46.986 -> "CA","Starfield_Services_Root_Certificate_Authority_G2","Starfield Services Root Certificate Authority - G2","2037/12/31 23:59:59"
13:25:47.019 -> "CA","Baltimore CyberTrust Root","Baltimore CyberTrust Root","2025/05/12 23:59:00"
13:25:47.019 -> "CA","DigiCert High Assurance EV Root CA","DigiCert High Assurance EV Root CA","2031/11/10 00:00:00"
"CA","AddTrust_External_CA_Root","AddTrust External CA Root","2020/05/30 10:48:38"
13:28:08.414 -> "CA","COMODO_RSA_Certification_Authority","COMODO RSA Certification Authority","2038/01/18 23:59:59"
13:28:08.414 -> "CA","DigiCert_High_Assurance_EV_Root_CA","DigiCert High Assurance EV Root CA","2031/11/10 00:00:00"
13:28:08.447 -> "CA","Entrust_Root_Certification_Authority","Entrust Root Certification Authority","2026/11/27 20:53:42"
13:28:08.447 -> "CA","Equifax_Secure_Certificate_Authority","","2018/08/22 16:41:51"
13:28:08.447 -> "CA","GeoTrust_Global_CA","GeoTrust Global CA","2022/05/21 04:00:00"
13:28:08.447 -> "CA","GeoTrust_Primary_Certification_Authority_G3","GeoTrust Primary Certification Authority - G3","2037/12/01 23:59:59"
13:28:08.480 -> "CA","GlobalSign_Root_CA","GlobalSign Root CA","2028/01/28 12:00:00"
13:28:08.480 -> "CA","VeriSign_Class_3_Public_Primary_Certification_Authority_G5","VeriSign Class 3 Public Primary Certification Authority - G5","2036/07/16 23:59:59"
13:28:08.480 -> "CA","Starfield_Services_Root_Certificate_Authority_G2","Starfield Services Root Certificate Authority - G2","2037/12/31 23:59:59"
13:28:08.514 -> "CA","DigiCert High Assurance EV Root CA","DigiCert High Assurance EV Root CA","2031/11/10 00:00:00"
So lets see what happens now with the real code.
hmm. And it loaded the cert but it failed on mqtt.
Nope a combined one fails to load.
Before I delete all the certs in the ublox manually, I'll try to specify name of cert as "GlobalSign Root CA - R2" rather than "JFD". I figured they would iterate though list and attempt to verify and not pick a particular entry based upon name. Perhaps they do. Don't know.
That did not work. However, the MD5 fingerprint does match the one in the original crt/pem.
From the pem/crt file I made by cutting from roots.pem via google.
Also, if it does lookup by name, perhaps its the label noted above.
The "GlobalSign Root CA - R2" is the name in the header file. The "GTS Root R2" corresponds to the label decoded from the CRT/PEM/DER file. Perhaps the code uses this name to verify the chain of trust or it uses the actual fingerprint. Don't know.
Anyway, I removed all the existing entries in the ublox. This shows none are loaded now.
Ok. So I skipped ahead. I emptied all the entries in the ublox above and then entered just the root ca. It still failed. Once I added the intermediate cert I could connect to iot core.
So for completeness sake here is the contents of the NBRootCerts.h file. (Also FWIW, I did not lock the crypto chip as mentioned in the guide.)
/*
This file is part of the MKRNB library.
Copyright (C) 2018 Arduino SA (
http://www.arduino.cc/)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _NBROOT_CERTS_H_INCLUDED
#define _NBROOT_CERTS_H_INCLUDED
#include <stddef.h>
#include <stdint.h>
struct NBRootCert {
const char* name;
const uint8_t* data;
const int size;
};
static const NBRootCert NB_ROOT_CERTS[] = {
{
"GTS_Root_R2", // This name is an alias. The label name from the DER file is included in output
(const uint8_t[]){
0x30,0x82,0x05,0x5a,0x30,0x82,0x03,0x42,0xa0,0x03,0x02,0x01,0x02,0x02,0x10,0x6e,
0x47,0xa9,0xc6,0x5a,0xb3,0xe7,0x20,0xc5,0x30,0x9a,0x3f,0x68,0x52,0xf2,0x6f,0x30,
0x0d,0x06,0x09,0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x01,0x0c,0x05,0x00,0x30,0x47,
0x31,0x0b,0x30,0x09,0x06,0x03,0x55,0x04,0x06,0x13,0x02,0x55,0x53,0x31,0x22,0x30,
0x20,0x06,0x03,0x55,0x04,0x0a,0x13,0x19,0x47,0x6f,0x6f,0x67,0x6c,0x65,0x20,0x54,
0x72,0x75,0x73,0x74,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x73,0x20,0x4c,0x4c,
0x43,0x31,0x14,0x30,0x12,0x06,0x03,0x55,0x04,0x03,0x13,0x0b,0x47,0x54,0x53,0x20,
0x52,0x6f,0x6f,0x74,0x20,0x52,0x32,0x30,0x1e,0x17,0x0d,0x31,0x36,0x30,0x36,0x32,
0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x5a,0x17,0x0d,0x33,0x36,0x30,0x36,0x32,0x32,
0x30,0x30,0x30,0x30,0x30,0x30,0x5a,0x30,0x47,0x31,0x0b,0x30,0x09,0x06,0x03,0x55,
0x04,0x06,0x13,0x02,0x55,0x53,0x31,0x22,0x30,0x20,0x06,0x03,0x55,0x04,0x0a,0x13,
0x19,0x47,0x6f,0x6f,0x67,0x6c,0x65,0x20,0x54,0x72,0x75,0x73,0x74,0x20,0x53,0x65,
0x72,0x76,0x69,0x63,0x65,0x73,0x20,0x4c,0x4c,0x43,0x31,0x14,0x30,0x12,0x06,0x03,
0x55,0x04,0x03,0x13,0x0b,0x47,0x54,0x53,0x20,0x52,0x6f,0x6f,0x74,0x20,0x52,0x32,
0x30,0x82,0x02,0x22,0x30,0x0d,0x06,0x09,0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x01,
0x01,0x05,0x00,0x03,0x82,0x02,0x0f,0x00,0x30,0x82,0x02,0x0a,0x02,0x82,0x02,0x01,
0x00,0xce,0xde,0xfd,0xa6,0xfb,0xec,0xec,0x14,0x34,0x3c,0x07,0x06,0x5a,0x6c,0x59,
0xf7,0x19,0x35,0xdd,0xf7,0xc1,0x9d,0x55,0xaa,0xd3,0xcd,0x3b,0xa4,0x93,0x72,0xef,
0x0a,0xfa,0x6d,0x9d,0xf6,0xf0,0x85,0x80,0x5b,0xa1,0x48,0x52,0x9f,0x39,0xc5,0xb7,
0xee,0x28,0xac,0xef,0xcb,0x76,0x68,0x14,0xb9,0xdf,0xad,0x01,0x6c,0x99,0x1f,0xc4,
0x22,0x1d,0x9f,0xfe,0x72,0x77,0xe0,0x2c,0x5b,0xaf,0xe4,0x04,0xbf,0x4f,0x72,0xa0,
0x1a,0x34,0x98,0xe8,0x39,0x68,0xec,0x95,0x25,0x7b,0x76,0xa1,0xe6,0x69,0xb9,0x85,
0x19,0xbd,0x89,0x8c,0xfe,0xad,0xed,0x36,0xea,0x73,0xbc,0xff,0x83,0xe2,0xcb,0x7d,
0xc1,0xd2,0xce,0x4a,0xb3,0x8d,0x05,0x9e,0x8b,0x49,0x93,0xdf,0xc1,0x5b,0xd0,0x6e,
0x5e,0xf0,0x2e,0x30,0x2e,0x82,0xfc,0xfa,0xbc,0xb4,0x17,0x0a,0x48,0xe5,0x88,0x9b,
0xc5,0x9b,0x6b,0xde,0xb0,0xca,0xb4,0x03,0xf0,0xda,0xf4,0x90,0xb8,0x65,0x64,0xf7,
0x5c,0x4c,0xad,0xe8,0x7e,0x66,0x5e,0x99,0xd7,0xb8,0xc2,0x3e,0xc8,0xd0,0x13,0x9d,
0xad,0xee,0xe4,0x45,0x7b,0x89,0x55,0xf7,0x8a,0x1f,0x62,0x52,0x84,0x12,0xb3,0xc2,
0x40,0x97,0xe3,0x8a,0x1f,0x47,0x91,0xa6,0x74,0x5a,0xd2,0xf8,0xb1,0x63,0x28,0x10,
0xb8,0xb3,0x09,0xb8,0x56,0x77,0x40,0xa2,0x26,0x98,0x79,0xc6,0xfe,0xdf,0x25,0xee,
0x3e,0xe5,0xa0,0x7f,0xd4,0x61,0x0f,0x51,0x4b,0x3c,0x3f,0x8c,0xda,0xe1,0x70,0x74,
0xd8,0xc2,0x68,0xa1,0xf9,0xc1,0x0c,0xe9,0xa1,0xe2,0x7f,0xbb,0x55,0x3c,0x76,0x06,
0xee,0x6a,0x4e,0xcc,0x92,0x88,0x30,0x4d,0x9a,0xbd,0x4f,0x0b,0x48,0x9a,0x84,0xb5,
0x98,0xa3,0xd5,0xfb,0x73,0xc1,0x57,0x61,0xdd,0x28,0x56,0x75,0x13,0xae,0x87,0x8e,
0xe7,0x0c,0x51,0x09,0x10,0x75,0x88,0x4c,0xbc,0x8d,0xf9,0x7b,0x3c,0xd4,0x22,0x48,
0x1f,0x2a,0xdc,0xeb,0x6b,0xbb,0x44,0xb1,0xcb,0x33,0x71,0x32,0x46,0xaf,0xad,0x4a,
0xf1,0x8c,0xe8,0x74,0x3a,0xac,0xe7,0x1a,0x22,0x73,0x80,0xd2,0x30,0xf7,0x25,0x42,
0xc7,0x22,0x3b,0x3b,0x12,0xad,0x96,0x2e,0xc6,0xc3,0x76,0x07,0xaa,0x20,0xb7,0x35,
0x49,0x57,0xe9,0x92,0x49,0xe8,0x76,0x16,0x72,0x31,0x67,0x2b,0x96,0x7e,0x8a,0xa3,
0xc7,0x94,0x56,0x22,0xbf,0x6a,0x4b,0x7e,0x01,0x21,0xb2,0x23,0x32,0xdf,0xe4,0x9a,
0x44,0x6d,0x59,0x5b,0x5d,0xf5,0x00,0xa0,0x1c,0x9b,0xc6,0x78,0x97,0x8d,0x90,0xff,
0x9b,0xc8,0xaa,0xb4,0xaf,0x11,0x51,0x39,0x5e,0xd9,0xfb,0x67,0xad,0xd5,0x5b,0x11,
0x9d,0x32,0x9a,0x1b,0xbd,0xd5,0xba,0x5b,0xa5,0xc9,0xcb,0x25,0x69,0x53,0x55,0x27,
0x5c,0xe0,0xca,0x36,0xcb,0x88,0x61,0xfb,0x1e,0xb7,0xd0,0xcb,0xee,0x16,0xfb,0xd3,
0xa6,0x4c,0xde,0x92,0xa5,0xd4,0xe2,0xdf,0xf5,0x06,0x54,0xde,0x2e,0x9d,0x4b,0xb4,
0x93,0x30,0xaa,0x81,0xce,0xdd,0x1a,0xdc,0x51,0x73,0x0d,0x4f,0x70,0xe9,0xe5,0xb6,
0x16,0x21,0x19,0x79,0xb2,0xe6,0x89,0x0b,0x75,0x64,0xca,0xd5,0xab,0xbc,0x09,0xc1,
0x18,0xa1,0xff,0xd4,0x54,0xa1,0x85,0x3c,0xfd,0x14,0x24,0x03,0xb2,0x87,0xd3,0xa4,
0xb7,0x02,0x03,0x01,0x00,0x01,0xa3,0x42,0x30,0x40,0x30,0x0e,0x06,0x03,0x55,0x1d,
0x0f,0x01,0x01,0xff,0x04,0x04,0x03,0x02,0x01,0x06,0x30,0x0f,0x06,0x03,0x55,0x1d,
0x13,0x01,0x01,0xff,0x04,0x05,0x30,0x03,0x01,0x01,0xff,0x30,0x1d,0x06,0x03,0x55,
0x1d,0x0e,0x04,0x16,0x04,0x14,0xbb,0xff,0xca,0x8e,0x23,0x9f,0x4f,0x99,0xca,0xdb,
0xe2,0x68,0xa6,0xa5,0x15,0x27,0x17,0x1e,0xd9,0x0e,0x30,0x0d,0x06,0x09,0x2a,0x86,
0x48,0x86,0xf7,0x0d,0x01,0x01,0x0c,0x05,0x00,0x03,0x82,0x02,0x01,0x00,0xb6,0x69,
0xf0,0xa6,0x77,0xfe,0x9e,0xee,0x0b,0x81,0xad,0xe1,0xc0,0xa9,0xc7,0xf9,0x35,0x1d,
0x40,0x82,0xab,0xe6,0x04,0xb4,0xdf,0xcb,0xf7,0x1d,0x0f,0x83,0xf0,0x7e,0x13,0x4d,
0x8d,0x8c,0xee,0xe3,0x33,0x22,0xc3,0x39,0xfc,0x40,0xdf,0x6e,0x41,0x4b,0x42,0x53,
0xbe,0x16,0x88,0xf1,0xd2,0x38,0x5e,0xc4,0x68,0x99,0x1c,0x98,0x52,0x93,0x8c,0xe7,
0x68,0xed,0x1b,0x6a,0x73,0x7a,0x05,0x40,0x4d,0x7f,0x65,0x3b,0xd6,0x58,0xf1,0xce,
0x83,0x47,0x60,0xe3,0xff,0x97,0xa9,0x9c,0x60,0x77,0x18,0x55,0xb5,0x7e,0x08,0x93,
0xcf,0xd0,0xf6,0x3c,0x67,0x03,0x15,0x61,0x09,0xf9,0x81,0x79,0xf5,0xec,0x53,0xa4,
0x9f,0xc9,0x8f,0x01,0x8b,0x73,0xc4,0x77,0x76,0xdc,0x83,0xa2,0xf5,0x0c,0x49,0x1a,
0xa8,0x76,0xde,0x92,0x9b,0x64,0xf8,0xb3,0x2c,0xc5,0x27,0xd3,0x07,0xc0,0x08,0x80,
0xa4,0x98,0x92,0xe3,0x01,0x96,0x02,0xaa,0x02,0xee,0x8f,0x3b,0xc5,0xd1,0x6d,0x0a,
0x33,0x30,0x73,0x78,0xb9,0x4f,0x54,0x16,0xbf,0x0b,0x07,0xa1,0xa4,0x5c,0xe6,0xcb,
0xc9,0x5c,0x84,0x8f,0x0f,0xe0,0x15,0x77,0x2c,0x7e,0x26,0x7e,0xda,0xc4,0x4b,0xdb,
0xa7,0x16,0x77,0x07,0xb0,0xcd,0x75,0xe8,0x72,0x42,0xd6,0x95,0x84,0x9d,0x86,0x83,
0xf2,0xe4,0x90,0xcd,0x09,0x47,0xd4,0x8b,0x03,0x70,0xda,0x5a,0xc6,0x03,0x42,0xf4,
0xed,0x37,0xa2,0xf0,0x1b,0x50,0x54,0x4b,0x0e,0xd8,0x84,0xde,0x19,0x28,0x99,0x81,
0x47,0xae,0x09,0x1b,0x3f,0x48,0xd1,0xc3,0x6f,0xe2,0xb0,0x60,0x17,0xf5,0xee,0x23,
0x02,0xa5,0xda,0x00,0x5b,0x6d,0x90,0xab,0xee,0xa2,0xe9,0x1b,0x3b,0xe9,0xc7,0x44,
0x27,0x45,0x8e,0x6b,0x9f,0xf5,0xa4,0x84,0xbc,0x77,0xf9,0x6b,0x97,0xac,0x3e,0x51,
0x45,0xa2,0x11,0xa6,0xcc,0x85,0xee,0x0a,0x68,0xf2,0x3e,0x50,0x38,0x7a,0x24,0x62,
0x1e,0x17,0x20,0x37,0x6d,0x6a,0x4d,0xb7,0x09,0x9b,0xc9,0xfc,0xa4,0x58,0xf5,0xb6,
0xfb,0x9c,0x4e,0x18,0xbb,0x95,0x02,0xe7,0xa1,0xad,0x9b,0x07,0xee,0x36,0x6b,0x24,
0xd2,0x39,0x86,0xc1,0x93,0x83,0x50,0xd2,0x81,0x46,0xa8,0x5f,0x62,0x57,0x2c,0xbb,
0x6c,0x64,0x88,0x08,0x6e,0xef,0x13,0x54,0x5f,0xdd,0x2d,0xc4,0x67,0x63,0xd3,0xcf,
0x89,0x37,0xbf,0x9d,0x20,0xf4,0xfb,0x7a,0x83,0x9b,0xa0,0x1e,0x81,0x00,0x50,0xc2,
0xe4,0x0c,0x22,0x59,0x52,0x10,0xed,0x43,0x56,0x87,0x00,0xf8,0x14,0x52,0xa7,0x1d,
0x8b,0x93,0x8c,0xa2,0x4d,0x46,0x7f,0x27,0xc6,0x71,0x9b,0x24,0xde,0xe4,0xda,0x86,
0x8b,0x0d,0x7e,0x6b,0x20,0xc1,0xc0,0x9e,0xe1,0x65,0xd8,0x6a,0xa3,0xa6,0xe8,0x85,
0x8b,0x3a,0x07,0x08,0x1c,0xba,0xf5,0x8f,0x55,0x9a,0x18,0x75,0x7e,0xe5,0xec,0x81,
0x66,0xd1,0x21,0x73,0xa1,0x35,0x44,0x0b,0x80,0x3d,0x5b,0x9c,0x5e,0x6f,0x2a,0x17,
0x96,0xd1,0x83,0x23,0x88,0x66,0x6d,0xe6,0x86,0xe2,0x70,0x32,0x2f,0x52,0x22,0xe7,
0xc8,0xe7,0x7f,0xc4,0x2c,0x60,0x5d,0x2f,0xc3,0xaf,0x9e,0x45,0x05,0xc3,0x84,0x02,
0xb7,0xfd,0x2c,0x08,0x52,0x4f,0x82,0xdd,0xa3,0xf0,0xd4,0x86,0x09,0x02
},
1374
},
{
"GTS_CA_101",
(const uint8_t[]){
0x30,0x82,0x04,0x4a,0x30,0x82,0x03,0x32,0xa0,0x03,0x02,0x01,0x02,0x02,0x0d,0x01,
0xe3,0xb4,0x9a,0xa1,0x8d,0x8a,0xa9,0x81,0x25,0x69,0x50,0xb8,0x30,0x0d,0x06,0x09,
0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x01,0x0b,0x05,0x00,0x30,0x4c,0x31,0x20,0x30,
0x1e,0x06,0x03,0x55,0x04,0x0b,0x13,0x17,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x53,0x69,
0x67,0x6e,0x20,0x52,0x6f,0x6f,0x74,0x20,0x43,0x41,0x20,0x2d,0x20,0x52,0x32,0x31,
0x13,0x30,0x11,0x06,0x03,0x55,0x04,0x0a,0x13,0x0a,0x47,0x6c,0x6f,0x62,0x61,0x6c,
0x53,0x69,0x67,0x6e,0x31,0x13,0x30,0x11,0x06,0x03,0x55,0x04,0x03,0x13,0x0a,0x47,
0x6c,0x6f,0x62,0x61,0x6c,0x53,0x69,0x67,0x6e,0x30,0x1e,0x17,0x0d,0x31,0x37,0x30,
0x36,0x31,0x35,0x30,0x30,0x30,0x30,0x34,0x32,0x5a,0x17,0x0d,0x32,0x31,0x31,0x32,
0x31,0x35,0x30,0x30,0x30,0x30,0x34,0x32,0x5a,0x30,0x42,0x31,0x0b,0x30,0x09,0x06,
0x03,0x55,0x04,0x06,0x13,0x02,0x55,0x53,0x31,0x1e,0x30,0x1c,0x06,0x03,0x55,0x04,
0x0a,0x13,0x15,0x47,0x6f,0x6f,0x67,0x6c,0x65,0x20,0x54,0x72,0x75,0x73,0x74,0x20,
0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x73,0x31,0x13,0x30,0x11,0x06,0x03,0x55,0x04,
0x03,0x13,0x0a,0x47,0x54,0x53,0x20,0x43,0x41,0x20,0x31,0x4f,0x31,0x30,0x82,0x01,
0x22,0x30,0x0d,0x06,0x09,0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x01,0x01,0x05,0x00,
0x03,0x82,0x01,0x0f,0x00,0x30,0x82,0x01,0x0a,0x02,0x82,0x01,0x01,0x00,0xd0,0x18,
0xcf,0x45,0xd4,0x8b,0xcd,0xd3,0x9c,0xe4,0x40,0xef,0x7e,0xb4,0xdd,0x69,0x21,0x1b,
0xc9,0xcf,0x3c,0x8e,0x4c,0x75,0xb9,0x0f,0x31,0x19,0x84,0x3d,0x9e,0x3c,0x29,0xef,
0x50,0x0d,0x10,0x93,0x6f,0x05,0x80,0x80,0x9f,0x2a,0xa0,0xbd,0x12,0x4b,0x02,0xe1,
0x3d,0x9f,0x58,0x16,0x24,0xfe,0x30,0x9f,0x0b,0x74,0x77,0x55,0x93,0x1d,0x4b,0xf7,
0x4d,0xe1,0x92,0x82,0x10,0xf6,0x51,0xac,0x0c,0xc3,0xb2,0x22,0x94,0x0f,0x34,0x6b,
0x98,0x10,0x49,0xe7,0x0b,0x9d,0x83,0x39,0xdd,0x20,0xc6,0x1c,0x2d,0xef,0xd1,0x18,
0x61,0x65,0xe7,0x23,0x83,0x20,0xa8,0x23,0x12,0xff,0xd2,0x24,0x7f,0xd4,0x2f,0xe7,
0x44,0x6a,0x5b,0x4d,0xd7,0x50,0x66,0xb0,0xaf,0x9e,0x42,0x63,0x05,0xfb,0xe0,0x1c,
0xc4,0x63,0x61,0xaf,0x9f,0x6a,0x33,0xff,0x62,0x97,0xbd,0x48,0xd9,0xd3,0x7c,0x14,
0x67,0xdc,0x75,0xdc,0x2e,0x69,0xe8,0xf8,0x6d,0x78,0x69,0xd0,0xb7,0x10,0x05,0xb8,
0xf1,0x31,0xc2,0x3b,0x24,0xfd,0x1a,0x33,0x74,0xf8,0x23,0xe0,0xec,0x6b,0x19,0x8a,
0x16,0xc6,0xe3,0xcd,0xa4,0xcd,0x0b,0xdb,0xb3,0xa4,0x59,0x60,0x38,0x88,0x3b,0xad,
0x1d,0xb9,0xc6,0x8c,0xa7,0x53,0x1b,0xfc,0xbc,0xd9,0xa4,0xab,0xbc,0xdd,0x3c,0x61,
0xd7,0x93,0x15,0x98,0xee,0x81,0xbd,0x8f,0xe2,0x64,0x47,0x20,0x40,0x06,0x4e,0xd7,
0xac,0x97,0xe8,0xb9,0xc0,0x59,0x12,0xa1,0x49,0x25,0x23,0xe4,0xed,0x70,0x34,0x2c,
0xa5,0xb4,0x63,0x7c,0xf9,0xa3,0x3d,0x83,0xd1,0xcd,0x6d,0x24,0xac,0x07,0x02,0x03,
0x01,0x00,0x01,0xa3,0x82,0x01,0x33,0x30,0x82,0x01,0x2f,0x30,0x0e,0x06,0x03,0x55,
0x1d,0x0f,0x01,0x01,0xff,0x04,0x04,0x03,0x02,0x01,0x86,0x30,0x1d,0x06,0x03,0x55,
0x1d,0x25,0x04,0x16,0x30,0x14,0x06,0x08,0x2b,0x06,0x01,0x05,0x05,0x07,0x03,0x01,
0x06,0x08,0x2b,0x06,0x01,0x05,0x05,0x07,0x03,0x02,0x30,0x12,0x06,0x03,0x55,0x1d,
0x13,0x01,0x01,0xff,0x04,0x08,0x30,0x06,0x01,0x01,0xff,0x02,0x01,0x00,0x30,0x1d,
0x06,0x03,0x55,0x1d,0x0e,0x04,0x16,0x04,0x14,0x98,0xd1,0xf8,0x6e,0x10,0xeb,0xcf,
0x9b,0xec,0x60,0x9f,0x18,0x90,0x1b,0xa0,0xeb,0x7d,0x09,0xfd,0x2b,0x30,0x1f,0x06,
0x03,0x55,0x1d,0x23,0x04,0x18,0x30,0x16,0x80,0x14,0x9b,0xe2,0x07,0x57,0x67,0x1c,
0x1e,0xc0,0x6a,0x06,0xde,0x59,0xb4,0x9a,0x2d,0xdf,0xdc,0x19,0x86,0x2e,0x30,0x35,
0x06,0x08,0x2b,0x06,0x01,0x05,0x05,0x07,0x01,0x01,0x04,0x29,0x30,0x27,0x30,0x25,
0x06,0x08,0x2b,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x86,0x19,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x6f,0x63,0x73,0x70,0x2e,0x70,0x6b,0x69,0x2e,0x67,0x6f,0x6f,0x67,
0x2f,0x67,0x73,0x72,0x32,0x30,0x32,0x06,0x03,0x55,0x1d,0x1f,0x04,0x2b,0x30,0x29,
0x30,0x27,0xa0,0x25,0xa0,0x23,0x86,0x21,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x63,
0x72,0x6c,0x2e,0x70,0x6b,0x69,0x2e,0x67,0x6f,0x6f,0x67,0x2f,0x67,0x73,0x72,0x32,
0x2f,0x67,0x73,0x72,0x32,0x2e,0x63,0x72,0x6c,0x30,0x3f,0x06,0x03,0x55,0x1d,0x20,
0x04,0x38,0x30,0x36,0x30,0x34,0x06,0x06,0x67,0x81,0x0c,0x01,0x02,0x02,0x30,0x2a,
0x30,0x28,0x06,0x08,0x2b,0x06,0x01,0x05,0x05,0x07,0x02,0x01,0x16,0x1c,0x68,0x74,
0x74,0x70,0x73,0x3a,0x2f,0x2f,0x70,0x6b,0x69,0x2e,0x67,0x6f,0x6f,0x67,0x2f,0x72,
0x65,0x70,0x6f,0x73,0x69,0x74,0x6f,0x72,0x79,0x2f,0x30,0x0d,0x06,0x09,0x2a,0x86,
0x48,0x86,0xf7,0x0d,0x01,0x01,0x0b,0x05,0x00,0x03,0x82,0x01,0x01,0x00,0x1a,0x80,
0x3e,0x36,0x79,0xfb,0xf3,0x2e,0xa9,0x46,0x37,0x7d,0x5e,0x54,0x16,0x35,0xae,0xc7,
0x4e,0x08,0x99,0xfe,0xbd,0xd1,0x34,0x69,0x26,0x52,0x66,0x07,0x3d,0x0a,0xba,0x49,
0xcb,0x62,0xf4,0xf1,0x1a,0x8e,0xfc,0x11,0x4f,0x68,0x96,0x4c,0x74,0x2b,0xd3,0x67,
0xde,0xb2,0xa3,0xaa,0x05,0x8d,0x84,0x4d,0x4c,0x20,0x65,0x0f,0xa5,0x96,0xda,0x0d,
0x16,0xf8,0x6c,0x3b,0xdb,0x6f,0x04,0x23,0x88,0x6b,0x3a,0x6c,0xc1,0x60,0xbd,0x68,
0x9f,0x71,0x8e,0xee,0x2d,0x58,0x34,0x07,0xf0,0xd5,0x54,0xe9,0x86,0x59,0xfd,0x7b,
0x5e,0x0d,0x21,0x94,0xf5,0x8c,0xc9,0xa8,0xf8,0xd8,0xf2,0xad,0xcc,0x0f,0x1a,0xf3,
0x9a,0xa7,0xa9,0x04,0x27,0xf9,0xa3,0xc9,0xb0,0xff,0x02,0x78,0x6b,0x61,0xba,0xc7,
0x35,0x2b,0xe8,0x56,0xfa,0x4f,0xc3,0x1c,0x0c,0xed,0xb6,0x3c,0xb4,0x4b,0xea,0xed,
0xcc,0xe1,0x3c,0xec,0xdc,0x0d,0x8c,0xd6,0x3e,0x9b,0xca,0x42,0x58,0x8b,0xcc,0x16,
0x21,0x17,0x40,0xbc,0xa2,0xd6,0x66,0xef,0xda,0xc4,0x15,0x5b,0xcd,0x89,0xaa,0x9b,
0x09,0x26,0xe7,0x32,0xd2,0x0d,0x6e,0x67,0x20,0x02,0x5b,0x10,0xb0,0x90,0x09,0x9c,
0x0c,0x1f,0x9e,0xad,0xd8,0x3b,0xea,0xa1,0xfc,0x6c,0xe8,0x10,0x5c,0x08,0x52,0x19,
0x51,0x2a,0x71,0xbb,0xac,0x7a,0xb5,0xdd,0x15,0xed,0x2b,0xc9,0x08,0x2a,0x2c,0x8a,
0xb4,0xa6,0x21,0xab,0x63,0xff,0xd7,0x52,0x49,0x50,0xd0,0x89,0xb7,0xad,0xf2,0xaf,
0xfb,0x50,0xae,0x2f,0xe1,0x95,0x0d,0xf3,0x46,0xad,0x9d,0x9c,0xf5,0xca
},
1102
}
};
#define NB_NUM_ROOT_CERTS (sizeof(NB_ROOT_CERTS) / sizeof(NB_ROOT_CERTS[0]))
#endif