]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/CryptoPkg.dsc
BaseTools/Ecc: Fix grammar in Ecc error message
[mirror_edk2.git] / CryptoPkg / CryptoPkg.dsc
1 ## @file
2 # Cryptographic Library Package for UEFI Security Implementation.
3 # PEIM, DXE Driver, and SMM Driver with all crypto services enabled.
4 #
5 # Copyright (c) 2009 - 2021, Intel Corporation. All rights reserved.<BR>
6 # Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
7 # SPDX-License-Identifier: BSD-2-Clause-Patent
8 #
9 ##
10
11 ################################################################################
12 #
13 # Defines Section - statements that will be processed to create a Makefile.
14 #
15 ################################################################################
16 [Defines]
17 PLATFORM_NAME = CryptoPkg
18 PLATFORM_GUID = E1063286-6C8C-4c25-AEF0-67A9A5B6E6B6
19 PLATFORM_VERSION = 0.98
20 DSC_SPECIFICATION = 0x00010005
21 OUTPUT_DIRECTORY = Build/CryptoPkg
22 SUPPORTED_ARCHITECTURES = IA32|X64|ARM|AARCH64|RISCV64
23 BUILD_TARGETS = DEBUG|RELEASE|NOOPT
24 SKUID_IDENTIFIER = DEFAULT
25
26 #
27 # Flavor of PEI, DXE, SMM modules to build.
28 # Must be one of ALL, NONE, MIN_PEI, MIN_DXE_MIN_SMM.
29 # Default is ALL that is used for package build verification.
30 # PACKAGE - Package verification build of all components. Null
31 # versions of libraries are used to minimize build times.
32 # ALL - Build PEIM, DXE, and SMM drivers. Protocols and PPIs
33 # publish all services.
34 # NONE - Build PEIM, DXE, and SMM drivers. Protocols and PPIs
35 # publish no services. Used to verify compiler/linker
36 # optimizations are working correctly.
37 # MIN_PEI - Build PEIM with PPI that publishes minimum required
38 # services.
39 # MIN_DXE_MIN_SMM - Build DXE and SMM drivers with Protocols that publish
40 # minimum required services.
41 #
42 DEFINE CRYPTO_SERVICES = PACKAGE
43 !if $(CRYPTO_SERVICES) IN "PACKAGE ALL NONE MIN_PEI MIN_DXE_MIN_SMM"
44 !else
45 !error CRYPTO_SERVICES must be set to one of PACKAGE ALL NONE MIN_PEI MIN_DXE_MIN_SMM.
46 !endif
47
48 !include UnitTestFrameworkPkg/UnitTestFrameworkPkgTarget.dsc.inc
49
50 ################################################################################
51 #
52 # Library Class section - list of all Library Classes needed by this Platform.
53 #
54 ################################################################################
55
56 !include MdePkg/MdeLibs.dsc.inc
57
58 [LibraryClasses]
59 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
60 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
61 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
62 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
63 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
64 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
65 BaseCryptLib|CryptoPkg/Library/BaseCryptLibNull/BaseCryptLibNull.inf
66 TlsLib|CryptoPkg/Library/TlsLibNull/TlsLibNull.inf
67 HashApiLib|CryptoPkg/Library/BaseHashApiLib/BaseHashApiLib.inf
68 RngLib|MdePkg/Library/BaseRngLibNull/BaseRngLibNull.inf
69
70 [LibraryClasses.ARM, LibraryClasses.AARCH64]
71 #
72 # It is not possible to prevent the ARM compiler for generic intrinsic functions.
73 # This library provides the instrinsic functions generate by a given compiler.
74 # [LibraryClasses.ARM, LibraryClasses.AARCH64] and NULL mean link this library
75 # into all ARM and AARCH64 images.
76 #
77 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf
78
79 # Add support for stack protector
80 NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf
81
82 [LibraryClasses.common.PEIM]
83 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
84 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
85 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
86 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
87 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
88
89 [LibraryClasses.common.DXE_SMM_DRIVER]
90 SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
91 MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
92
93 !if $(CRYPTO_SERVICES) IN "ALL NONE MIN_PEI MIN_DXE_MIN_SMM"
94 [LibraryClasses]
95 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
96 DebugLib|MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
97 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
98 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
99 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
100 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
101 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
102 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
103 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf #???
104 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf #???
105 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
106 IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
107 SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
108
109 [LibraryClasses.ARM]
110 ArmSoftFloatLib|ArmPkg/Library/ArmSoftFloatLib/ArmSoftFloatLib.inf
111
112 [LibraryClasses.common.SEC]
113 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SecCryptLib.inf
114
115 [LibraryClasses.common.PEIM]
116 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
117 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
118 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
119 TlsLib|CryptoPkg/Library/TlsLibNull/TlsLibNull.inf
120
121 [LibraryClasses.IA32.PEIM, LibraryClasses.X64.PEIM]
122 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
123
124 [LibraryClasses.ARM.PEIM, LibraryClasses.AARCH64.PEIM]
125 PeiServicesTablePointerLib|ArmPkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
126
127 [LibraryClasses.common.DXE_DRIVER]
128 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
129 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
130 TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf
131
132 [LibraryClasses.common.DXE_SMM_DRIVER]
133 ReportStatusCodeLib|MdeModulePkg/Library/SmmReportStatusCodeLib/SmmReportStatusCodeLib.inf
134 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
135 TlsLib|CryptoPkg/Library/TlsLibNull/TlsLibNull.inf
136 !endif
137
138 ################################################################################
139 #
140 # Pcd Section - list of all EDK II PCD Entries defined by this Platform
141 #
142 ################################################################################
143 [PcdsFixedAtBuild]
144 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0f
145 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
146 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x06
147
148 !if $(CRYPTO_SERVICES) IN "PACKAGE ALL"
149 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.HmacSha256.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
150 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Md5.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
151 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
152 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Dh.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
153 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Random.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
154 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
155 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha1.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
156 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha256.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
157 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha384.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
158 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha512.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
159 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.X509.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
160 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Tdes.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
161 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.GetContextSize | TRUE
162 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.Init | TRUE
163 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.CbcEncrypt | TRUE
164 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.CbcDecrypt | TRUE
165 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Arc4.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
166 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sm3.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
167 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Hkdf.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
168 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Tls.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
169 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.TlsSet.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
170 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.TlsGet.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
171 !endif
172
173 !if $(CRYPTO_SERVICES) == MIN_PEI
174 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.HmacSha256.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
175 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha1.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
176 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha256.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
177 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha384.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
178 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha512.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
179 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sm3.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
180 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.Pkcs1Verify | TRUE
181 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.New | TRUE
182 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.Free | TRUE
183 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.SetKey | TRUE
184 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.Pkcs5HashPassword | TRUE
185 !endif
186
187 !if $(CRYPTO_SERVICES) == MIN_DXE_MIN_SMM
188 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.HmacSha256.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
189 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.Pkcs1v2Encrypt | TRUE
190 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.Pkcs5HashPassword | TRUE
191 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.Pkcs7Verify | TRUE
192 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.VerifyEKUsInPkcs7Signature | TRUE
193 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.Pkcs7GetSigners | TRUE
194 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.Pkcs7FreeSigners | TRUE
195 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Pkcs.Services.AuthenticodeVerify | TRUE
196 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Random.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
197 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.Pkcs1Verify | TRUE
198 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.New | TRUE
199 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.Free | TRUE
200 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.SetKey | TRUE
201 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Rsa.Services.GetPublicKeyFromX509 | TRUE
202 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha1.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
203 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha256.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
204 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha256.Services.HashAll | FALSE
205 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.X509.Services.GetSubjectName | TRUE
206 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.X509.Services.GetCommonName | TRUE
207 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.X509.Services.GetOrganizationName | TRUE
208 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.X509.Services.GetTBSCert | TRUE
209 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Tls.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
210 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.TlsSet.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
211 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.TlsGet.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
212 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.Init | TRUE
213 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.CbcEncrypt | TRUE
214 gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.CbcDecrypt | TRUE
215 !endif
216
217 ###################################################################################################
218 #
219 # Components Section - list of the modules and components that will be processed by compilation
220 # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
221 #
222 # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
223 # into firmware volume images. This section is just a list of modules to compile from
224 # source into UEFI-compliant binaries.
225 # It is the FDF file that contains information on combining binary files into firmware
226 # volume images, whose concept is beyond UEFI and is described in PI specification.
227 # Binary modules do not need to be listed in this section, as they should be
228 # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
229 # Logo (Logo.bmp), and etc.
230 # There may also be modules listed in this section that are not required in the FDF file,
231 # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
232 # generated for it, but the binary will not be put into any firmware volume.
233 #
234 ###################################################################################################
235 [Components]
236 CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
237 CryptoPkg/Test/UnitTest/Library/BaseCryptLib/TestBaseCryptLibShell.inf
238
239 !if $(CRYPTO_SERVICES) == PACKAGE
240 [Components]
241 CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
242 CryptoPkg/Library/BaseCryptLib/SecCryptLib.inf
243 CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
244 CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
245 CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
246 CryptoPkg/Library/BaseCryptLibNull/BaseCryptLibNull.inf
247 CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
248 CryptoPkg/Library/TlsLib/TlsLib.inf
249 CryptoPkg/Library/TlsLibNull/TlsLibNull.inf
250 CryptoPkg/Library/OpensslLib/OpensslLib.inf
251 CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf
252 CryptoPkg/Library/BaseHashApiLib/BaseHashApiLib.inf
253
254 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/PeiCryptLib.inf
255 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/DxeCryptLib.inf
256 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/SmmCryptLib.inf
257 !endif
258
259 !if $(CRYPTO_SERVICES) IN "PACKAGE ALL NONE MIN_PEI"
260 [Components.IA32, Components.X64, Components.ARM, Components.AARCH64]
261 CryptoPkg/Driver/CryptoPei.inf {
262 <Defines>
263 !if $(CRYPTO_SERVICES) == ALL
264 FILE_GUID = 8DF53C2E-3380-495F-A8B7-370CFE28E1C6
265 !elseif $(CRYPTO_SERVICES) == NONE
266 FILE_GUID = E5A97EE3-71CC-407F-9DA9-6BE0C8A6C7DF
267 !elseif $(CRYPTO_SERVICES) == MIN_PEI
268 FILE_GUID = 0F5827A9-35FD-4F41-8D38-9BAFCE594D31
269 !endif
270 }
271 !endif
272
273 !if $(CRYPTO_SERVICES) IN "PACKAGE ALL NONE MIN_DXE_MIN_SMM"
274 [Components.IA32, Components.X64, Components.AARCH64]
275 CryptoPkg/Driver/CryptoDxe.inf {
276 <Defines>
277 !if $(CRYPTO_SERVICES) == ALL
278 FILE_GUID = D9444B06-060D-42C5-9344-F04707BE0169
279 !elseif $(CRYPTO_SERVICES) == NONE
280 FILE_GUID = C7A340F4-A6CC-4F95-A2DA-42BEA4C3944A
281 !elseif $(CRYPTO_SERVICES) == MIN_DXE_MIN_SMM
282 FILE_GUID = DDF5BE9E-159A-4B77-B6D7-82B84B5763A2
283 !endif
284 }
285
286 [Components.IA32, Components.X64]
287 CryptoPkg/Driver/CryptoSmm.inf {
288 <Defines>
289 !if $(CRYPTO_SERVICES) == ALL
290 FILE_GUID = A3542CE8-77F7-49DC-A834-45D37D2EC1FA
291 !elseif $(CRYPTO_SERVICES) == NONE
292 FILE_GUID = 6DCB3127-01E7-4131-A487-DC77A965A541
293 !elseif $(CRYPTO_SERVICES) == MIN_DXE_MIN_SMM
294 FILE_GUID = 85F7EA15-3A2B-474A-8875-180542CD6BF3
295 !endif
296 }
297 !endif
298
299 [BuildOptions]
300 *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
301 !if $(CRYPTO_SERVICES) IN "PACKAGE ALL"
302 MSFT:*_*_*_CC_FLAGS = /D ENABLE_MD5_DEPRECATED_INTERFACES
303 INTEL:*_*_*_CC_FLAGS = /D ENABLE_MD5_DEPRECATED_INTERFACES
304 GCC:*_*_*_CC_FLAGS = -D ENABLE_MD5_DEPRECATED_INTERFACES
305 !endif