1## @file 2# SSL/TLS Wrapper Library Instance based on OpenSSL. 3# 4# Copyright (c) 2016, Intel Corporation. All rights reserved.<BR> 5# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php 10# 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14## 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = TlsLib 19 MODULE_UNI_FILE = TlsLib.uni 20 FILE_GUID = CC729DC5-4E21-0B36-1A00-3A8E1B86A155 21 MODULE_TYPE = DXE_DRIVER 22 VERSION_STRING = 1.0 23 LIBRARY_CLASS = TlsLib|DXE_DRIVER DXE_CORE UEFI_APPLICATION UEFI_DRIVER 24 25# 26# The following information is for reference only and not required by the build tools. 27# 28# VALID_ARCHITECTURES = IA32 X64 IPF ARM AARCH64 29# 30 31[Sources] 32 InternalTlsLib.h 33 TlsInit.c 34 TlsConfig.c 35 TlsProcess.c 36 37[Packages] 38 MdePkg/MdePkg.dec 39 CryptoPkg/CryptoPkg.dec 40 41[LibraryClasses] 42 BaseLib 43 BaseMemoryLib 44 MemoryAllocationLib 45 UefiRuntimeServicesTableLib 46 DebugLib 47 OpensslLib 48 IntrinsicLib 49 PrintLib 50