mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

Key-OIDs that authenticate BL31, BL31(SOC)-FW config, and HW config images have been explicitly entered. Implementations of signer-ID consume these entries. Change-Id: I24c9085ed5f266af06d40fb73302e35d857a9d5b Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
19 lines
459 B
C
19 lines
459 B
C
/*
|
|
* Copyright (c) 2020-2023, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef DUALROOT_OID_H
|
|
#define DUALROOT_OID_H
|
|
|
|
/* Reuse the Object IDs defined by TBBR for certificate extensions. */
|
|
#include "tbbr_oid.h"
|
|
|
|
/*
|
|
* Platform root-of-trust public key.
|
|
* Arbitrary value that does not conflict with any of the TBBR reserved OIDs.
|
|
*/
|
|
#define PROT_PK_OID "1.3.6.1.4.1.4128.2100.1102"
|
|
|
|
#endif /* DUALROOT_OID_H */
|