1 /* 2 * Copyright (c) 2018 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __CA_CERTIFICATE_H__ 8 #define __CA_CERTIFICATE_H__ 9 10 #define CA_CERTIFICATE_TAG 1 11 12 /* By default only certificates in DER format are supported. If you want to use 13 * certificate in PEM format, you can enable support for it in Kconfig. 14 */ 15 16 /* ISRG Root X1 for https://launchpad.net/ubuntu 17 * DigiCert Global Root G2 for possible redirects 18 */ 19 static const unsigned char *ca_certificates[] = { 20 #include "isrgrootx1.pem" 21 , 22 #include "DigiCertGlobalRootG2.crt.pem" 23 }; 24 25 26 #endif /* __CA_CERTIFICATE_H__ */ 27