Files
se050-wireguard/include/se050_scp03_keys.h
T
km 04231683c2 SE050C2 サポートを元に戻す
ユーザーの要望により、直前の SE050C2 追加変更を元に戻しました。

戻した内容:
- test_scp03_se050.c: SE050C2 チップ選択削除
- se050_scp03_keys.h: SE050C2 キー定義削除
- Makefile: SE050C2 CHIP_ID 削除

現在のサポートチップ:
- SE050C0 (CHIP_ID=0)
- SE050C1 (CHIP_ID=1)
- SE050E2 (CHIP_ID=2)
2026-03-26 14:15:28 +09:00

41 lines
1.3 KiB
C

/**
* @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 <stdint.h>
/* ============================================================================
* 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 */