1 /**************************************************************************/ 2 /* */ 3 /* Copyright (c) Microsoft Corporation. All rights reserved. */ 4 /* */ 5 /* This software is licensed under the Microsoft Software License */ 6 /* Terms for Microsoft Azure RTOS. Full text of the license can be */ 7 /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ 8 /* and in the root directory of this software. */ 9 /* */ 10 /**************************************************************************/ 11 12 #include "nx_api.h" 13 14 /* Device certificate. */ 15 #ifndef DEVICE_CERT 16 #define DEVICE_CERT {0x00} 17 #endif /* DEVICE_CERT */ 18 19 /* Device Private Key. */ 20 #ifndef DEVICE_PRIVATE_KEY 21 #define DEVICE_PRIVATE_KEY {0x00} 22 #endif /* DEVICE_PRIVATE_KEY */ 23 24 const UCHAR sample_device_cert_ptr[] = DEVICE_CERT; 25 const UINT sample_device_cert_len = sizeof(sample_device_cert_ptr); 26 const UCHAR sample_device_private_key_ptr[] = DEVICE_PRIVATE_KEY; 27 const UINT sample_device_private_key_len = sizeof(sample_device_private_key_ptr); 28