fips_status.h 987 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
  2. /*
  3. * Copyright (c) 2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _FIPS_STATUS__H
  6. #define _FIPS_STATUS__H
  7. #include <linux/types.h>
  8. #include <linux/ioctl.h>
  9. /**
  10. * fips_status: global FIPS140-2 status
  11. * @FIPS140_STATUS_NA:
  12. * Not a FIPS140-2 compliant Build.
  13. * The flag status won't
  14. * change throughout
  15. * the lifetime
  16. * @FIPS140_STATUS_PASS_CRYPTO:
  17. * KAT self tests are passed.
  18. * @FIPS140_STATUS_QCRYPTO_ALLOWED:
  19. * Integrity test is passed.
  20. * @FIPS140_STATUS_PASS:
  21. * All tests are passed and build
  22. * is in FIPS140-2 mode
  23. * @FIPS140_STATUS_FAIL:
  24. * One of the test is failed.
  25. * This will block all requests
  26. * to crypto modules
  27. */
  28. enum fips_status {
  29. FIPS140_STATUS_NA = 0,
  30. FIPS140_STATUS_PASS_CRYPTO = 1,
  31. FIPS140_STATUS_QCRYPTO_ALLOWED = 2,
  32. FIPS140_STATUS_PASS = 3,
  33. FIPS140_STATUS_FAIL = 0xFF
  34. };
  35. #endif /* _FIPS_STATUS__H */