blob: a5119f6db996a397c9930f569678046f93a412e8 (
plain)
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
|
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2025-present Eclipse ThreadX Contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
#include "nx_api.h"
/* Device certificate. */
#ifndef DEVICE_CERT
#define DEVICE_CERT {0x00}
#endif /* DEVICE_CERT */
/* Device Private Key. */
#ifndef DEVICE_PRIVATE_KEY
#define DEVICE_PRIVATE_KEY {0x00}
#endif /* DEVICE_PRIVATE_KEY */
const UCHAR sample_device_cert_ptr[] = DEVICE_CERT;
const UINT sample_device_cert_len = sizeof(sample_device_cert_ptr);
const UCHAR sample_device_private_key_ptr[] = DEVICE_PRIVATE_KEY;
const UINT sample_device_private_key_len = sizeof(sample_device_private_key_ptr);
|