1 /* 2 * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef CCA_ATTESTATION_H 8 #define CCA_ATTESTATION_H 9 10 #include <stdint.h> 11 #include <psa/crypto_types.h> 12 13 psa_status_t 14 cca_attestation_get_realm_key(uintptr_t buf, size_t *len, unsigned int type); 15 16 psa_status_t 17 cca_attestation_get_plat_token(uintptr_t buf, size_t *len, 18 uintptr_t hash, size_t hash_size); 19 20 #endif /* CCA_ATTESTATION_H */ 21