]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/TlsDxe/TlsDxe.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / NetworkPkg / TlsDxe / TlsDxe.inf
1 ## @file
2 # This module produces EFI TLS Protocol, EFI TLS Service Binding Protocol and
3 # EFI TLS Configuration Protocol.
4 #
5 # This module produces EFI TLS (Transport Layer Security) Protocol and EFI TLS
6 # Service Binding Protocol, to provide TLS services.
7 #
8 # Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
9 #
10 # SPDX-License-Identifier: BSD-2-Clause-Patent
11 #
12 #
13 ##
14
15 [Defines]
16 INF_VERSION = 0x00010005
17 BASE_NAME = TlsDxe
18 FILE_GUID = 3aceb0c0-3c72-11e4-9a56-74d435052646
19 MODULE_TYPE = UEFI_DRIVER
20 VERSION_STRING = 1.0
21 ENTRY_POINT = TlsDriverEntryPoint
22 UNLOAD_IMAGE = TlsUnload
23 MODULE_UNI_FILE = TlsDxe.uni
24
25 #
26 # VALID_ARCHITECTURES = IA32 X64
27 #
28
29 [Packages]
30 MdePkg/MdePkg.dec
31 NetworkPkg/NetworkPkg.dec
32 CryptoPkg/CryptoPkg.dec
33
34 [Sources]
35 TlsDriver.h
36 TlsDriver.c
37 TlsProtocol.c
38 TlsConfigProtocol.c
39 TlsImpl.h
40 TlsImpl.c
41
42 [LibraryClasses]
43 UefiDriverEntryPoint
44 UefiBootServicesTableLib
45 MemoryAllocationLib
46 BaseMemoryLib
47 BaseLib
48 UefiLib
49 DebugLib
50 BaseCryptLib
51 TlsLib
52
53 [Protocols]
54 gEfiTlsServiceBindingProtocolGuid ## PRODUCES
55 gEfiTlsProtocolGuid ## PRODUCES
56 gEfiTlsConfigurationProtocolGuid ## PRODUCES
57
58 [UserExtensions.TianoCore."ExtraFiles"]
59 TlsDxeExtra.uni
60