]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/TlsDxe/TlsDxe.inf
NetworkPkg: Move Network library header file from MdeModulePkg to NetworkPkg
[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 MdeModulePkg/MdeModulePkg.dec
32 NetworkPkg/NetworkPkg.dec
33 CryptoPkg/CryptoPkg.dec
34
35 [Sources]
36 TlsDriver.h
37 TlsDriver.c
38 TlsProtocol.c
39 TlsConfigProtocol.c
40 TlsImpl.h
41 TlsImpl.c
42
43 [LibraryClasses]
44 UefiDriverEntryPoint
45 UefiBootServicesTableLib
46 MemoryAllocationLib
47 BaseMemoryLib
48 BaseLib
49 UefiLib
50 DebugLib
51 BaseCryptLib
52 TlsLib
53
54 [Protocols]
55 gEfiTlsServiceBindingProtocolGuid ## PRODUCES
56 gEfiTlsProtocolGuid ## PRODUCES
57 gEfiTlsConfigurationProtocolGuid ## PRODUCES
58
59 [UserExtensions.TianoCore."ExtraFiles"]
60 TlsDxeExtra.uni
61