cca_attestation.h 471 B

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