blob: da367da9219ed3e5fdfbb8b5c4ec2e068ca56e1e [file] [log] [blame]
Sandrine Bailleux6ae00742020-02-06 14:59:14 +01001/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef DUALROOT_OID_H
8#define DUALROOT_OID_H
9
10/* Reuse the Object IDs defined by TBBR for certificate extensions. */
11#include "tbbr_oid.h"
12
13/*
14 * Platform root-of-trust public key.
15 * Arbitrary value that does not conflict with any of the TBBR reserved OIDs.
16 */
17#define PROT_PK_OID "1.3.6.1.4.1.4128.2100.1102"
18
Manish Pandey0a658842020-05-22 12:27:28 +010019/*
20 * Secure Partitions Content Certificate
21 */
22#define SP_PKG1_HASH_OID "1.3.6.1.4.1.4128.2100.1301"
23#define SP_PKG2_HASH_OID "1.3.6.1.4.1.4128.2100.1302"
24#define SP_PKG3_HASH_OID "1.3.6.1.4.1.4128.2100.1303"
25#define SP_PKG4_HASH_OID "1.3.6.1.4.1.4128.2100.1304"
26#define SP_PKG5_HASH_OID "1.3.6.1.4.1.4128.2100.1305"
27#define SP_PKG6_HASH_OID "1.3.6.1.4.1.4128.2100.1306"
28#define SP_PKG7_HASH_OID "1.3.6.1.4.1.4128.2100.1307"
29#define SP_PKG8_HASH_OID "1.3.6.1.4.1.4128.2100.1308"
30
Sandrine Bailleux6ae00742020-02-06 14:59:14 +010031#endif /* DUALROOT_OID_H */