mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

Extends cert_create tool with a new option for CCA NV counter: ccafw_nvctr. And changes the non-volatile counter used to protect the CCA Content Certificate from the Trusted FW NV counter to the CCA FW NV counter in the CCA CoT description. Change-Id: I27f3ab2e25809f0dcc56fa05e5c3a25a2e861ef6 Signed-off-by: Lauren Wehrmeister <lauren.wehrmeister@arm.com>
31 lines
943 B
C
31 lines
943 B
C
/*
|
|
* Copyright (c) 2022-2023, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef CCA_OID_H
|
|
#define CCA_OID_H
|
|
|
|
/* Reuse the Object IDs defined by TBBR for certificate extensions. */
|
|
#include "tbbr_oid.h"
|
|
|
|
/*
|
|
* Assign arbitrary Object ID values that do not conflict with any of the
|
|
* TBBR reserved OIDs.
|
|
*/
|
|
/* Platform root-of-trust public key */
|
|
#define PROT_PK_OID "1.3.6.1.4.1.4128.2100.1102"
|
|
/* Secure World root-of-trust public key */
|
|
#define SWD_ROT_PK_OID "1.3.6.1.4.1.4128.2100.1103"
|
|
/* Core Secure World public key */
|
|
#define CORE_SWD_PK_OID "1.3.6.1.4.1.4128.2100.1104"
|
|
/* Platform public key */
|
|
#define PLAT_PK_OID "1.3.6.1.4.1.4128.2100.1105"
|
|
/* Realm Monitor Manager (RMM) Hash */
|
|
#define RMM_HASH_OID "1.3.6.1.4.1.4128.2100.1106"
|
|
|
|
/* CCAFirmwareNVCounter - Non-volatile counter extension */
|
|
#define CCA_FW_NVCOUNTER_OID "1.3.6.1.4.1.4128.2100.3"
|
|
|
|
#endif /* CCA_OID_H */
|