1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (C) 2024, Institute of Information Security (IISEC) 4 */ 5 6 #ifndef PTA_VERAISON_ATTESTATION_HASH_H 7 #define PTA_VERAISON_ATTESTATION_HASH_H 8 9 #include <stddef.h> 10 #include <stdint.h> 11 #include <tee_api.h> 12 13 TEE_Result get_hash_ta_memory(uint8_t out[TEE_SHA256_HASH_SIZE]); 14 15 #endif /* PTA_VERAISON_ATTESTATION_HASH_H */ 16