]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
31bb5fbe0af7482eeaa79405e612062a0acf21a4
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / BaseCryptLib.inf
1 ## @file
2 # Cryptographic Library Instance for DXE_DRIVER.
3 #
4 # Caution: This module requires additional review when modified.
5 # This library will have external input - signature.
6 # This external input must be validated carefully to avoid security issues such as
7 # buffer overflow or integer overflow.
8 #
9 # Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
10 # This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 #
15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 #
18 ##
19
20 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = BaseCryptLib
23 MODULE_UNI_FILE = BaseCryptLib.uni
24 FILE_GUID = be3bb803-91b6-4da0-bd91-a8b21c18ca5d
25 MODULE_TYPE = DXE_DRIVER
26 VERSION_STRING = 1.0
27 LIBRARY_CLASS = BaseCryptLib|DXE_DRIVER DXE_CORE UEFI_APPLICATION UEFI_DRIVER
28
29 #
30 # The following information is for reference only and not required by the build tools.
31 #
32 # VALID_ARCHITECTURES = IA32 X64 IPF ARM AARCH64
33 #
34
35 [Sources]
36 InternalCryptLib.h
37 Hash/CryptMd4.c
38 Hash/CryptMd5.c
39 Hash/CryptSha1.c
40 Hash/CryptSha256.c
41 Hash/CryptSha512.c
42 Hmac/CryptHmacMd5.c
43 Hmac/CryptHmacSha1.c
44 Hmac/CryptHmacSha256.c
45 Cipher/CryptAes.c
46 Cipher/CryptTdes.c
47 Cipher/CryptArc4.c
48 Pk/CryptRsaBasic.c
49 Pk/CryptRsaExt.c
50 Pk/CryptPkcs7Sign.c
51 Pk/CryptPkcs7Verify.c
52 Pk/CryptDh.c
53 Pk/CryptX509.c
54 Pk/CryptAuthenticode.c
55 Pk/CryptTs.c
56 Pem/CryptPem.c
57
58 SysCall/CrtWrapper.c
59 SysCall/TimerWrapper.c
60 SysCall/BaseMemAllocation.c
61
62 [Sources.Ia32]
63 Rand/CryptRandTsc.c
64
65 [Sources.X64]
66 Rand/CryptRandTsc.c
67
68 [Sources.IPF]
69 Rand/CryptRandItc.c
70
71 [Sources.ARM]
72 Rand/CryptRand.c
73
74 [Sources.AARCH64]
75 Rand/CryptRand.c
76
77 [Packages]
78 MdePkg/MdePkg.dec
79 CryptoPkg/CryptoPkg.dec
80
81 [LibraryClasses]
82 BaseLib
83 BaseMemoryLib
84 MemoryAllocationLib
85 UefiRuntimeServicesTableLib
86 DebugLib
87 OpensslLib
88 IntrinsicLib
89 PrintLib
90
91 #
92 # Remove these [BuildOptions] after this library is cleaned up
93 #
94 [BuildOptions]
95 # suppress the following warnings so we do not break the build with warnings-as-errors:
96 # C4305: truncation from type1 to type2 (Introduced by RFC3161 Timestamp ASN.1 declarations)
97 MSFT:*_*_*_CC_FLAGS = /wd4305
98 GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"
99
100 # -JCryptoPkg/Include : To disable the use of the system includes provided by RVCT
101 # --diag_remark=1 : Reduce severity of "#1-D: last line of file ends without a newline"
102 RVCT:*_*_ARM_CC_FLAGS = -JCryptoPkg/Include --diag_remark=1