bdb_flag.h 483 B

12345678910111213141516
  1. /* Copyright 2016 The Chromium OS Authors. All rights reserved.
  2. * Use of this source code is governed by a BSD-style license that can be
  3. * found in the LICENSE file.
  4. */
  5. #ifndef VBOOT_REFERENCE_FIRMWARE_BDB_BDB_FLAG_H
  6. #define VBOOT_REFERENCE_FIRMWARE_BDB_BDB_FLAG_H
  7. /* Indicate whether BDB key is verified */
  8. #define VBA_CONTEXT_FLAG_BDB_KEY_EFUSED (1 << 0)
  9. /* Indicate whether kernel data key is verified */
  10. #define VBA_CONTEXT_FLAG_KERNEL_DATA_KEY_VERIFIED (1 << 1)
  11. #endif