1 /** @file
2 Local Definitions for the VolInfo utility
3 
4 Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6 
7 **/
8 
9 #ifndef _VOLINFO_H_
10 #define _VOLINFO_H_ 1
11 
12 #define PI_SPECIFICATION_VERSION  0x00010000
13 
14 #define EFI_DEP_BEFORE    0x00
15 #define EFI_DEP_AFTER     0x01
16 #define EFI_DEP_PUSH      0x02
17 #define EFI_DEP_AND       0x03
18 #define EFI_DEP_OR        0x04
19 #define EFI_DEP_NOT       0x05
20 #define EFI_DEP_TRUE      0x06
21 #define EFI_DEP_FALSE     0x07
22 #define EFI_DEP_END       0x08
23 #define EFI_DEP_SOR       0x09
24 
25 #define EFI_SECTION_LAST_LEAF_SECTION_TYPE  0x1B
26 #define EFI_SECTION_LAST_SECTION_TYPE       0x1B
27 
28 #define OPENSSL_COMMAND_FORMAT_STRING       "%s sha1 -out %s %s"
29 #define EXTRACT_COMMAND_FORMAT_STRING       "%s -d -o %s %s"
30 
31 #endif
32