]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
CryptoPkg/SmmCryptLib: permit use by MM_STANDALONE modules
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / SmmCryptLib.inf
CommitLineData
a8c44645 1## @file\r
2# Cryptographic Library Instance for SMM driver.\r
3#\r
dc204d5a
JY
4# Caution: This module requires additional review when modified.\r
5# This library will have external input - signature.\r
2ac68e8b 6# This external input must be validated carefully to avoid security issues such as\r
dda856b3 7# buffer overflow or integer overflow.\r
dc204d5a 8#\r
2ac68e8b 9# Note: MD4 Digest functions, SHA-384 Digest functions, SHA-512 Digest functions,\r
25942a40 10# HMAC-MD5 functions, HMAC-SHA1 functions, TDES/ARC4 functions, RSA external\r
630f67dd 11# functions, PKCS#7 SignedData sign functions, Diffie-Hellman functions, and\r
2ac68e8b 12# authenticode signature verification functions are not supported in this instance.\r
532616bb 13#\r
630f67dd 14# Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>\r
a8c44645 15# This program and the accompanying materials\r
16# are licensed and made available under the terms and conditions of the BSD License\r
17# which accompanies this distribution. The full text of the license may be found at\r
18# http://opensource.org/licenses/bsd-license.php\r
2ac68e8b 19#\r
a8c44645 20# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
21# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
2ac68e8b 22#\r
a8c44645 23##\r
24\r
25[Defines]\r
26 INF_VERSION = 0x00010005\r
27 BASE_NAME = SmmCryptLib\r
dda856b3 28 MODULE_UNI_FILE = SmmCryptLib.uni\r
a8c44645 29 FILE_GUID = 028080a3-8958-4a62-a1a8-0fa1da162007\r
30 MODULE_TYPE = DXE_SMM_DRIVER\r
31 VERSION_STRING = 1.0\r
b7d320f8 32 PI_SPECIFICATION_VERSION = 0x0001000A\r
2c010aba 33 LIBRARY_CLASS = BaseCryptLib|DXE_SMM_DRIVER SMM_CORE MM_STANDALONE\r
a8c44645 34\r
35#\r
36# The following information is for reference only and not required by the build tools.\r
37#\r
d1984abc 38# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64\r
a8c44645 39#\r
40\r
41[Sources]\r
532616bb 42 Hash/CryptMd4Null.c\r
a8c44645 43 Hash/CryptMd5.c\r
44 Hash/CryptSha1.c\r
45 Hash/CryptSha256.c\r
2ac68e8b 46 Hash/CryptSha512Null.c\r
532616bb 47 Hmac/CryptHmacMd5Null.c\r
48 Hmac/CryptHmacSha1Null.c\r
25942a40 49 Hmac/CryptHmacSha256.c\r
bfba88bc 50 Cipher/CryptAes.c\r
532616bb 51 Cipher/CryptTdesNull.c\r
52 Cipher/CryptArc4Null.c\r
53 Pk/CryptRsaBasic.c\r
54 Pk/CryptRsaExtNull.c\r
7e1bc8cd 55 Pk/CryptPkcs5Pbkdf2.c\r
532616bb 56 Pk/CryptPkcs7SignNull.c\r
57 Pk/CryptPkcs7Verify.c\r
58 Pk/CryptDhNull.c\r
e8b4eb04 59 Pk/CryptX509.c\r
532616bb 60 Pk/CryptAuthenticodeNull.c\r
2ac68e8b 61 Pk/CryptTsNull.c\r
b7d320f8 62 Pem/CryptPem.c\r
a8c44645 63\r
64 SysCall/CrtWrapper.c\r
38fcd027 65 SysCall/ConstantTimeClock.c\r
a8c44645 66 SysCall/BaseMemAllocation.c\r
67\r
68[Sources.Ia32]\r
7ce960e7 69 Rand/CryptRandTsc.c\r
70\r
71[Sources.X64]\r
72 Rand/CryptRandTsc.c\r
73\r
7ce960e7 74[Sources.ARM]\r
75 Rand/CryptRand.c\r
76\r
d1984abc
RC
77[Sources.AARCH64]\r
78 Rand/CryptRand.c\r
79\r
a8c44645 80[Packages]\r
81 MdePkg/MdePkg.dec\r
82 CryptoPkg/CryptoPkg.dec\r
83\r
84[LibraryClasses]\r
85 BaseLib\r
86 IoLib\r
87 BaseMemoryLib\r
88 MemoryAllocationLib\r
89 OpensslLib\r
90 IntrinsicLib\r
7ce960e7 91 PrintLib\r
a8c44645 92\r
93#\r
94# Remove these [BuildOptions] after this library is cleaned up\r
95#\r
96[BuildOptions]\r
ec7ad9e1
QL
97 #\r
98 # suppress the following warnings so we do not break the build with warnings-as-errors:\r
99 # C4090: 'function' : different 'const' qualifiers\r
100 #\r
101 MSFT:*_*_*_CC_FLAGS = /wd4090\r
102\r
7bf3ce9f 103 XCODE:*_*_*_CC_FLAGS = -mmmx -msse\r