/** * @file se050_scp03_keys.h * @brief SE050 Platform SCP03 Keys * * Platform SCP03 keys for each SE050 chip type. * Keys should be obtained from NXP documentation or secure provisioning. * * License: MIT (Clean-room implementation) */ #ifndef SE050_SCP03_KEYS_H #define SE050_SCP03_KEYS_H #include /* ============================================================================ * SE050C0 Platform SCP03 Keys * ============================================================================ */ extern const uint8_t SE050C0_ENC_KEY[16]; extern const uint8_t SE050C0_MAC_KEY[16]; extern const uint8_t SE050C0_DEK_KEY[16]; /* ============================================================================ * SE050C1 Platform SCP03 Keys * ============================================================================ */ extern const uint8_t SE050C1_ENC_KEY[16]; extern const uint8_t SE050C1_MAC_KEY[16]; extern const uint8_t SE050C1_DEK_KEY[16]; /* ============================================================================ * SE050E2 Platform SCP03 Keys * ============================================================================ */ extern const uint8_t SE050E2_ENC_KEY[16]; extern const uint8_t SE050E2_MAC_KEY[16]; extern const uint8_t SE050E2_DEK_KEY[16]; #endif /* SE050_SCP03_KEYS_H */