mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 08:27:00 +02:00
The attestation key derivation and platform attestation token creation functionality is provided by the Delegated Attestation partition in RSS. Signed-off-by: Tamas Ban <tamas.ban@arm.com> Change-Id: I2d8c0e6589d11e7c81c698adf75ee2a993e3a0c6
18 lines
398 B
C
18 lines
398 B
C
/*
|
|
* Copyright (c) 2019-2022, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef PSA_MANIFEST_SID_H
|
|
#define PSA_MANIFEST_SID_H
|
|
|
|
/******** PSA_SP_MEASURED_BOOT ********/
|
|
#define RSS_MEASURED_BOOT_HANDLE (0x40000110U)
|
|
|
|
/******** PSA_SP_DELAGATED_ATTESTATION ********/
|
|
#define RSS_DELEGATED_SERVICE_HANDLE (0x40000111U)
|
|
|
|
#endif /* PSA_MANIFEST_SID_H */
|