Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / platform / TestIdentity.cpp
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    Copyright (c) 2019-2020 Google LLC.
5  *    Copyright (c) 2018 Nest Labs, Inc.
6  *
7  *    Licensed under the Apache License, Version 2.0 (the "License");
8  *    you may not use this file except in compliance with the License.
9  *    You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *    Unless required by applicable law or agreed to in writing, software
14  *    distributed under the License is distributed on an "AS IS" BASIS,
15  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *    See the License for the specific language governing permissions and
17  *    limitations under the License.
18  */
19
20 #include <platform/CHIPDeviceLayer.h>
21
22 namespace chip {
23 namespace DeviceLayer {
24 namespace Internal {
25
26 #if CHIP_DEVICE_CONFIG_ENABLE_TEST_DEVICE_IDENTITY
27 const uint64_t TestDeviceId                       = 12344321;
28 const uint64_t TestFabricId                       = 0;
29 const uint8_t TestDeviceCert[]                    = { 0 };
30 const uint8_t TestDeviceIntermediateCACert[]      = { 0 };
31 const uint8_t TestDevicePrivateKey[]              = { 0 };
32 const uint16_t TestDeviceCertLength               = sizeof(TestDeviceCert);
33 const uint16_t TestDeviceIntermediateCACertLength = sizeof(TestDeviceIntermediateCACert);
34 const uint16_t TestDevicePrivateKeyLength         = sizeof(TestDevicePrivateKey);
35 #endif // CHIP_DEVICE_CONFIG_ENABLE_TEST_DEVICE_IDENTITY
36
37 } // namespace Internal
38 } // namespace DeviceLayer
39 } // namespace chip