Hash2DxeCrypto.inf 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ## @file
  2. # Produces the UEFI HASH2 protocol
  3. #
  4. # This module will use EDKII crypto libary to HASH2 protocol.
  5. #
  6. # (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
  7. # Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
  8. # SPDX-License-Identifier: BSD-2-Clause-Patent
  9. #
  10. ##
  11. [Defines]
  12. INF_VERSION = 0x00010005
  13. BASE_NAME = Hash2DxeCrypto
  14. FILE_GUID = 63E3BDCF-2AC7-4ac0-9B92-03A7541422FF
  15. MODULE_TYPE = UEFI_DRIVER
  16. VERSION_STRING = 1.0
  17. ENTRY_POINT = Hash2DriverEntryPoint
  18. MODULE_UNI_FILE = Hash2DxeCrypto.uni
  19. #
  20. # The following information is for reference only and not required by the build tools.
  21. #
  22. # VALID_ARCHITECTURES = IA32 X64
  23. #
  24. [Sources.common]
  25. Hash2DxeCrypto.c
  26. Driver.h
  27. Driver.c
  28. [Packages]
  29. MdePkg/MdePkg.dec
  30. CryptoPkg/CryptoPkg.dec
  31. [LibraryClasses]
  32. UefiBootServicesTableLib
  33. BaseLib
  34. BaseMemoryLib
  35. BaseCryptLib
  36. MemoryAllocationLib
  37. UefiDriverEntryPoint
  38. DebugLib
  39. UefiLib
  40. [Guids]
  41. gEfiHashAlgorithmMD5Guid ## CONSUMES ## GUID
  42. gEfiHashAlgorithmSha1Guid ## CONSUMES ## GUID
  43. gEfiHashAlgorithmSha256Guid ## CONSUMES ## GUID
  44. gEfiHashAlgorithmSha384Guid ## CONSUMES ## GUID
  45. gEfiHashAlgorithmSha512Guid ## CONSUMES ## GUID
  46. [Protocols]
  47. gEfiHash2ProtocolGuid ## PRODUCES
  48. gEfiHash2ServiceBindingProtocolGuid ## PRODUCES
  49. [UserExtensions.TianoCore."ExtraFiles"]
  50. Hash2DxeCryptoExtra.uni