tbb_key.h 462 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef TBB_KEY_H
  7. #define TBB_KEY_H
  8. #include "key.h"
  9. /*
  10. * Enumerate the keys that are used to establish the chain of trust
  11. */
  12. enum {
  13. ROT_KEY,
  14. TRUSTED_WORLD_KEY,
  15. NON_TRUSTED_WORLD_KEY,
  16. SCP_FW_CONTENT_CERT_KEY,
  17. SOC_FW_CONTENT_CERT_KEY,
  18. TRUSTED_OS_FW_CONTENT_CERT_KEY,
  19. NON_TRUSTED_FW_CONTENT_CERT_KEY
  20. };
  21. #endif /* TBB_KEY_H */