mirror of https://github.com/acidanthera/audk.git
44 lines
1.0 KiB
INI
44 lines
1.0 KiB
INI
|
## @file
|
||
|
# Implements the BaseCryptLib and TlsLib using the services of the EDK II Crypto
|
||
|
# PPI.
|
||
|
#
|
||
|
# Copyright (C) Microsoft Corporation. All rights reserved.
|
||
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
#
|
||
|
##
|
||
|
|
||
|
[Defines]
|
||
|
INF_VERSION = 0x0001001B
|
||
|
BASE_NAME = PeiCryptLib
|
||
|
MODULE_UNI_FILE = CryptLib.uni
|
||
|
FILE_GUID = 3E8B50C6-F68C-4212-B903-94A10FE02399
|
||
|
VERSION_STRING = 1.0
|
||
|
MODULE_TYPE = PEIM
|
||
|
LIBRARY_CLASS = BaseCryptLib | PEIM
|
||
|
LIBRARY_CLASS = TlsLib | PEIM
|
||
|
|
||
|
#
|
||
|
# The following information is for reference only and not required by the build tools.
|
||
|
#
|
||
|
# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64
|
||
|
#
|
||
|
|
||
|
[Packages]
|
||
|
MdePkg/MdePkg.dec
|
||
|
CryptoPkg/CryptoPkg.dec
|
||
|
|
||
|
[LibraryClasses]
|
||
|
BaseLib
|
||
|
DebugLib
|
||
|
PeiServicesLib
|
||
|
|
||
|
[Sources]
|
||
|
PeiCryptLib.c
|
||
|
CryptLib.c
|
||
|
|
||
|
[Ppis]
|
||
|
gEdkiiCryptoPpiGuid ## CONSUMES
|
||
|
|
||
|
[Depex]
|
||
|
gEdkiiCryptoPpiGuid
|