mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00

Created an explicit zero-OID which can be used for Subject Public Key that do not have their own key identifier. With this, all keys (including the subject public key) have a proper key OID string so we don't need to make a special case of null pointers when it comes to handling key OIDs. Change-Id: Ice6923951699b6e253d7fd87e4c1b912470e0391 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
12 lines
239 B
C
12 lines
239 B
C
/*
|
|
* Copyright (c) 2023, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef ZERO_OID_H
|
|
#define ZERO_OID_H
|
|
|
|
#define ZERO_OID "0.0.0.0.0.0.0.0.0"
|
|
|
|
#endif /* ZERO_OID_H */
|