From 36abd0808375a4b3ac75446bee5c03cce57197a6 Mon Sep 17 00:00:00 2001 From: Thomas Zeschg Date: Tue, 13 Jan 2026 10:53:47 +0100 Subject: [PATCH] fix: backwards compatibility with former version of UTA software simulator --- include/uta_sim.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/uta_sim.h b/include/uta_sim.h index fd860bb..a91ca9e 100644 --- a/include/uta_sim.h +++ b/include/uta_sim.h @@ -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 * @@ -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