blob: 4062ddef1a16e36eb40181347dd13ffe81e16518 [file] [log] [blame]
Vivek Gautam716eb702023-03-28 21:44:56 +01001/*
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
13psa_status_t
14cca_attestation_get_realm_key(uintptr_t buf, size_t *len, unsigned int type);
15
16psa_status_t
17cca_attestation_get_plat_token(uintptr_t buf, size_t *len,
18 uintptr_t hash, size_t hash_size);
19
20#endif /* CCA_ATTESTATION_H */