summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/IpSecDxe/IpSecDxe.inf
blob: 59215774e00a239ee4368c44b533a926bccdb22e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
## @file
#  Packet-level security for IP datagram.
#
#  This driver provides EFI IPsec2 Protocol which is used to abstract the ability
#  to deal with the individual packets sent and received by the host and provide
#  packet-level security for IP datagram. It provides the IP packet protection via
#  ESP and it supports IKEv2 for key negotiation.
#
#  Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
#
#  This program and the accompanying materials
#  are licensed and made available under the terms and conditions of the BSD License
#  which accompanies this distribution. The full text of the license may be found at
#  http://opensource.org/licenses/bsd-license.php.
#
#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#
##

[Defines]
  INF_VERSION                    = 0x00010005
  BASE_NAME                      = IpSecDxe
  FILE_GUID                      = EE8367C0-A1D6-4565-8F89-EF628547B722
  MODULE_TYPE                    = UEFI_DRIVER
  VERSION_STRING                 = 1.0

  ENTRY_POINT                    = IpSecDriverEntryPoint
  MODULE_UNI_FILE                = IpSecDxe.uni

#
# The following information is for reference only and not required by the build tools.
#
#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
#

[Sources]
  IpSecConfigImpl.c
  IpSecConfigImpl.h
  IpSecCryptIo.h
  IpSecCryptIo.c
  IpSecDebug.h
  ComponentName.c
  IkeCommon.h
  IpSecImpl.c
  IkeService.c
  Ike.h
  IkePacket.h
  IkePacket.c
  IpSecDebug.c
  IpSecMain.c
  IpSecDriver.c
  IkeCommon.c
  IetfConstants.c
  IpSecImpl.h
  IkeService.h
  Ikev2/Ikev2.h
  Ikev2/Payload.h
  Ikev2/Utility.h
  Ikev2/Utility.c
  Ikev2/Sa.c
  Ikev2/ChildSa.c
  Ikev2/Info.c
  Ikev2/Payload.c
  Ikev2/Exchange.c



[Packages]
  MdePkg/MdePkg.dec
  MdeModulePkg/MdeModulePkg.dec
  CryptoPkg/CryptoPkg.dec
  NetworkPkg/NetworkPkg.dec

[LibraryClasses]
  MemoryAllocationLib
  BaseLib
  UefiLib
  UefiBootServicesTableLib
  UefiRuntimeServicesTableLib
  UefiDriverEntryPoint
  BaseMemoryLib
  DebugLib
  PrintLib
  BaseCryptLib
  DpcLib
  UdpIoLib
  NetLib
  PcdLib

[Protocols]
  gEfiIp4Config2ProtocolGuid                    ## SOMETIMES_CONSUMES
  gEfiUdp4ServiceBindingProtocolGuid            ## SOMETIMES_CONSUMES
  gEfiUdp4ProtocolGuid                          ## SOMETIMES_CONSUMES
  gEfiUdp6ServiceBindingProtocolGuid            ## SOMETIMES_CONSUMES
  gEfiUdp6ProtocolGuid                          ## SOMETIMES_CONSUMES
  gEfiIpSecConfigProtocolGuid                   ## PRODUCES
  gEfiIpSec2ProtocolGuid                        ## PRODUCES

[Pcd]
  gEfiNetworkPkgTokenSpaceGuid.PcdIpsecCertificateEnabled       ## SOMETIMES_CONSUMES
  gEfiNetworkPkgTokenSpaceGuid.PcdIpsecUefiCaFile               ## SOMETIMES_CONSUMES
  gEfiNetworkPkgTokenSpaceGuid.PcdIpsecUefiCaFileSize           ## SOMETIMES_CONSUMES
  gEfiNetworkPkgTokenSpaceGuid.PcdIpsecUefiCertificate          ## SOMETIMES_CONSUMES
  gEfiNetworkPkgTokenSpaceGuid.PcdIpsecUefiCertificateSize      ## SOMETIMES_CONSUMES
  gEfiNetworkPkgTokenSpaceGuid.PcdIpsecUefiCertificateKey       ## SOMETIMES_CONSUMES
  gEfiNetworkPkgTokenSpaceGuid.PcdIpsecUefiCertificateKeySize   ## SOMETIMES_CONSUMES

[UserExtensions.TianoCore."ExtraFiles"]
  IpSecDxeExtra.uni