CryptoPkg.dec 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ## @file
  2. # Package for cryptography modules.
  3. #
  4. # This Package provides cryptographic-related libraries for UEFI security modules.
  5. # It also provides a test application to test libraries.
  6. #
  7. # Copyright (c) 2009 - 2020, Intel Corporation. All rights reserved.<BR>
  8. # SPDX-License-Identifier: BSD-2-Clause-Patent
  9. #
  10. ##
  11. [Defines]
  12. DEC_SPECIFICATION = 0x00010005
  13. PACKAGE_NAME = CryptoPkg
  14. PACKAGE_UNI_FILE = CryptoPkg.uni
  15. PACKAGE_GUID = 36470E80-36F2-4ba0-8CC8-937C7D9FF888
  16. PACKAGE_VERSION = 0.98
  17. [Includes]
  18. Include
  19. [Includes.Common.Private]
  20. Private
  21. Library/Include
  22. Library/OpensslLib/openssl/include
  23. [LibraryClasses]
  24. ## @libraryclass Provides basic library functions for cryptographic primitives.
  25. ##
  26. BaseCryptLib|Include/Library/BaseCryptLib.h
  27. ## @libraryclass Provides TLS library functions for EFI TLS protocol.
  28. ##
  29. TlsLib|Include/Library/TlsLib.h
  30. ## @libraryclass Provides Unified API for different hash implementations.
  31. #
  32. HashApiLib|Include/Library/HashApiLib.h
  33. [Protocols]
  34. ## EDK II Crypto DXE protocol
  35. # 2C2275C9-3A7B-426F-BE54-2D22BD9D1092
  36. gEdkiiCryptoProtocolGuid = { 0x2C2275C9, 0x3A7B, 0x426F, { 0xBE, 0x54, 0x2D, 0x22, 0xBD, 0x9D, 0x10, 0x92 }}
  37. ## EDK II Crypto SMM protocol
  38. # F46B2EB2-E0D7-4C96-A3B1-CB7C572EB300
  39. gEdkiiSmmCryptoProtocolGuid = { 0xF46B2EB2, 0xE0D7, 0x4C96, { 0xA3, 0xB1, 0xc, 0x61, 0xbb, 0x24, 0x5c, 0x42 }}
  40. [Ppis]
  41. ## EDK II Crypto PPI
  42. # 7DCE671B-C223-446A-A705-ED637AAF6771
  43. gEdkiiCryptoPpiGuid = { 0x7DCE671B, 0xC223, 0x446A, { 0xA7, 0x05, 0xED, 0x63, 0x7A, 0xAF, 0x67, 0x71 }}
  44. [Guids]
  45. ## Crypto package token space guid.
  46. gEfiCryptoPkgTokenSpaceGuid = { 0x6bd7de60, 0x9ef7, 0x4899, { 0x97, 0xd0, 0xab, 0xff, 0xfd, 0xe9, 0x70, 0xf2 } }
  47. [PcdsFixedAtBuild]
  48. ## Enable/Disable the families and individual services produced by the
  49. # EDK II Crypto Protocols/PPIs. The default is all services disabled.
  50. # This Structured PCD is associated with PCD_CRYPTO_SERVICE_FAMILY_ENABLE
  51. # structure that is defined in Include/Pcd/PcdCryptoServiceFamilyEnable.h.
  52. # @Prompt Enable/Disable EDK II Crypto Protocol/PPI services
  53. gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable|{0x00}|PCD_CRYPTO_SERVICE_FAMILY_ENABLE|0x00000002 {
  54. <Packages>
  55. CryptoPkg/CryptoPkg.dec
  56. <HeaderFiles>
  57. Pcd/PcdCryptoServiceFamilyEnable.h
  58. }
  59. ## This PCD indicates the HASH algorithm to calculate hash of data
  60. # Based on the value set, the required algorithm is chosen to calculate
  61. # the hash of data.<BR>
  62. # The default hashing algorithm for BaseHashApiLib is set to SHA256.<BR>
  63. # 0x00000001 - HASH_ALG_SHA1.<BR>
  64. # 0x00000002 - HASH_ALG_SHA256.<BR>
  65. # 0x00000004 - HASH_ALG_SHA384.<BR>
  66. # 0x00000008 - HASH_ALG_SHA512.<BR>
  67. # 0x00000010 - HASH_ALG_SM3_256.<BR>
  68. # @Prompt Set policy for hashing unsigned image for Secure Boot.
  69. # @ValidList 0x80000001 | 0x00000001, 0x00000002, 0x00000004, 0x00000008, 0x00000010
  70. gEfiCryptoPkgTokenSpaceGuid.PcdHashApiLibPolicy|0x00000002|UINT32|0x00000001
  71. ## Enable/Disable the ECC feature in openssl library. The default is disabled.
  72. # If ECC feature is disabled, all related source files will not be compiled.
  73. # @Prompt Enable/Disable ECC feature in openssl library
  74. gEfiCryptoPkgTokenSpaceGuid.PcdOpensslEcEnabled|FALSE|BOOLEAN|0x0000003
  75. # Set it to TRUE if:
  76. # 1) Platform needs ECC in TLS, or asymmetric cryptography services such as
  77. # X509 certificate or PEM format data processing.
  78. # 2) Platform needs to enable PcdCryptoServiceFamilyEnable.Ec service.
  79. # Please note:
  80. # ECC feature will cause a significant memory increase, approximate memory impact
  81. # in below table for reference by platform developers with FW size limitations.
  82. # Uncompressed LZMA Compressed
  83. # CPU CRYPTO_SERVICES Module EC=FALSE EC=TRUE EC=FALSE EC=TRUE Increase
  84. # ==== =============== ======== ======== ======= ======== ======= ========
  85. # IA32 NONE CryptoPei 21536 21568 0 KB
  86. # IA32 NONE CryptoDxe 21632 21696 0 KB
  87. # IA32 NONE CryptoSmm 22976 23072 0 KB
  88. # IA32 MIN_PEI CryptoPei 248992 249120 0 KB
  89. # IA32 MIN_DXE_MIN_SMM CryptoDxe 636672 829568 288520 401034 113 KB
  90. # IA32 MIN_DXE_MIN_SMM CryptoSmm 426048 601472 191517 296022 105 KB
  91. # IA32 ALL CryptoPei 423840 598976 189047 293759 104 KB
  92. # IA32 ALL CryptoDxe 645280 838144 292955 405277 113 KB
  93. # IA32 ALL CryptoSmm 441888 617184 198779 303628 105 KB
  94. # X64 NONE CryptoPei 29632 29664 0 KB
  95. # X64 NONE CryptoDxe 29792 29792 0 KB
  96. # X64 NONE CryptoSmm 31296 31296 0 KB
  97. # X64 MIN_PEI CryptoPei 310784 310848 0 KB
  98. # X64 MIN_DXE_MIN_SMM CryptoDxe 804288 1016256 311436 426596 115 KB
  99. # X64 MIN_DXE_MIN_SMM CryptoSmm 543776 733920 204483 310775 106 KB
  100. # X64 ALL CryptoPei 540384 730240 202494 308467 106 KB
  101. # X64 ALL CryptoDxe 815392 1027296 316228 431321 115 KB
  102. # X64 ALL CryptoSmm 563648 753696 213488 319644 106 KB
  103. [UserExtensions.TianoCore."ExtraFiles"]
  104. CryptoPkgExtra.uni