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, Intel Corporation. All rights reserved.<BR> 9 # 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 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 16 # 17 # 18 ## 19 20 [Defines] 21 INF_VERSION = 0x00010005 22 BASE_NAME = TlsDxe 23 FILE_GUID = 3aceb0c0-3c72-11e4-9a56-74d435052646 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 ENTRY_POINT = TlsDriverEntryPoint 27 UNLOAD_IMAGE = TlsUnload 28 MODULE_UNI_FILE = TlsDxe.uni 29 30 # 31 # VALID_ARCHITECTURES = IA32 X64 32 # 33 34 [Packages] 35 MdePkg/MdePkg.dec 36 MdeModulePkg/MdeModulePkg.dec 37 CryptoPkg/CryptoPkg.dec 38 39 [Sources] 40 TlsDriver.h 41 TlsDriver.c 42 TlsProtocol.c 43 TlsConfigProtocol.c 44 TlsImpl.h 45 TlsImpl.c 46 47 [LibraryClasses] 48 UefiDriverEntryPoint 49 UefiBootServicesTableLib 50 MemoryAllocationLib 51 BaseMemoryLib 52 BaseLib 53 UefiLib 54 DebugLib 55 NetLib 56 BaseCryptLib 57 TlsLib 58 59 [Protocols] 60 gEfiTlsServiceBindingProtocolGuid ## PRODUCES 61 gEfiTlsProtocolGuid ## PRODUCES 62 gEfiTlsConfigurationProtocolGuid ## PRODUCES 63 64 [UserExtensions.TianoCore."ExtraFiles"] 65 TlsDxeExtra.uni 66