TlsDxe.inf 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. [Defines]
  15. INF_VERSION = 0x00010005
  16. BASE_NAME = TlsDxe
  17. FILE_GUID = 3aceb0c0-3c72-11e4-9a56-74d435052646
  18. MODULE_TYPE = UEFI_DRIVER
  19. VERSION_STRING = 1.0
  20. ENTRY_POINT = TlsDriverEntryPoint
  21. UNLOAD_IMAGE = TlsUnload
  22. MODULE_UNI_FILE = TlsDxe.uni
  23. #
  24. # VALID_ARCHITECTURES = IA32 X64
  25. #
  26. [Packages]
  27. MdePkg/MdePkg.dec
  28. NetworkPkg/NetworkPkg.dec
  29. CryptoPkg/CryptoPkg.dec
  30. [Sources]
  31. TlsDriver.h
  32. TlsDriver.c
  33. TlsProtocol.c
  34. TlsConfigProtocol.c
  35. TlsImpl.h
  36. TlsImpl.c
  37. [LibraryClasses]
  38. UefiDriverEntryPoint
  39. UefiBootServicesTableLib
  40. MemoryAllocationLib
  41. BaseMemoryLib
  42. BaseLib
  43. UefiLib
  44. DebugLib
  45. BaseCryptLib
  46. TlsLib
  47. [Protocols]
  48. gEfiTlsServiceBindingProtocolGuid ## PRODUCES
  49. gEfiTlsProtocolGuid ## PRODUCES
  50. gEfiTlsConfigurationProtocolGuid ## PRODUCES
  51. [UserExtensions.TianoCore."ExtraFiles"]
  52. TlsDxeExtra.uni