Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions include/uta_sim.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* @brief Unified Trust Anchor (UTA) Software Simulator for development purposes
*
* @copyright Copyright (c) Siemens Mobility GmbH, 2020
* @copyright Copyright (c) Siemens Mobility GmbH, 2020-2026
*
* @author Thomas Zeschg <thomas.zeschg@siemens.com>
*
Expand All @@ -21,14 +21,14 @@
* Defines
******************************************************************************/
/* 32 Byte Keys for Key Slot 0 and 1 used for the TA Software Simulation */
#define KEY_SLOT_0 {0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07, \
0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0f, \
0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17, \
0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f}
#define KEY_SLOT_1 {0x1f,0x1e,0x1d,0x1c,0x1b,0x1a,0x19,0x18, \
0x17,0x16,0x15,0x14,0x13,0x12,0x11,0x10, \
0x0f,0x0e,0x0d,0x0c,0x0b,0x0a,0x09,0x08, \
0x07,0x06,0x05,0x04,0x03,0x02,0x01,0x00}
#define KEY_SLOT_0 {0x80,0x6d,0x42,0x7c,0xfd,0x33,0x7f,0xcf, \
0xa3,0xe9,0xf1,0xa9,0xf9,0x20,0x27,0x27, \
0x91,0xc0,0x03,0x60,0x33,0x90,0xdd,0x26, \
0xed,0x54,0x6c,0x45,0x14,0x42,0x49,0x70}
#define KEY_SLOT_1 {0x94,0x2a,0x25,0xb1,0x2d,0xab,0xcb,0xc8, \
0x05,0xb6,0x48,0x75,0x5b,0xeb,0x04,0xb1, \
0xa0,0xa3,0x69,0x4f,0x8e,0x70,0x19,0xaa, \
0x5c,0xd8,0x3a,0x15,0xfb,0x48,0x08,0xea}

/*******************************************************************************
* Function prototypes
Expand Down
Loading