SecurityPolicyDefinitions.h 654 B

12345678910111213141516171819202122232425262728
  1. /**@file
  2. @copyright
  3. Copyright 2020 - 2021 Intel Corporation. <BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef __SECURITY_POLICY_DEFINITIONS_H__
  7. #define __SECURITY_POLICY_DEFINITIONS_H__
  8. //
  9. // Security Policy definitions
  10. //
  11. //
  12. // Values for capable/incapable == supported/unsupported
  13. //
  14. #define SECURITY_POLICY_UNSUPPORTED 0
  15. #define SECURITY_POLICY_SUPPORTED 1
  16. //
  17. // Values for enable/disable options
  18. //
  19. #define SECURITY_POLICY_DISABLE 0
  20. #define SECURITY_POLICY_ENABLE 1
  21. #define SECURITY_POLICY_AUTO 2
  22. #endif