summaryrefslogtreecommitdiffstats
path: root/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:17:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:17:27 +0000
commitf215e02bf85f68d3a6106c2a1f4f7f063f819064 (patch)
tree6bb5b92c046312c4e95ac2620b10ddf482d3fa8b /src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid
parentInitial commit. (diff)
downloadvirtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.tar.xz
virtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.zip
Adding upstream version 7.0.14-dfsg.upstream/7.0.14-dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid')
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpBootConfigHii.h19
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpTlsCipherList.h32
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/IScsiConfigHii.h20
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4Config2Hii.h19
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4IScsiConfigHii.h25
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip6ConfigHii.h19
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthConfigHii.h20
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthentication.h24
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/VlanConfigHii.h19
-rw-r--r--src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/WifiConnectionManagerConfigHii.h19
10 files changed, 216 insertions, 0 deletions
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpBootConfigHii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpBootConfigHii.h
new file mode 100644
index 00000000..e211a7b9
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpBootConfigHii.h
@@ -0,0 +1,19 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in HTTP boot driver.
+
+Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __HTTP_BOOT_HII_GUID_H__
+#define __HTTP_BOOT_HII_GUID_H__
+
+#define HTTP_BOOT_CONFIG_GUID \
+ { \
+ 0x4d20583a, 0x7765, 0x4e7a, { 0x8a, 0x67, 0xdc, 0xde, 0x74, 0xee, 0x3e, 0xc5 } \
+ }
+
+extern EFI_GUID gHttpBootConfigGuid;
+
+#endif
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpTlsCipherList.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpTlsCipherList.h
new file mode 100644
index 00000000..2ceb5823
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/HttpTlsCipherList.h
@@ -0,0 +1,32 @@
+/** @file
+ This file defines the HttpTlsCipherList variable for HTTPS to configure Tls Cipher List.
+
+Copyright (c) 2018 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __HTTP_TLS_CIPHER_LIST_H__
+#define __HTTP_TLS_CIPHER_LIST_H__
+
+//
+// Private Variable for HTTPS to configure Tls Cipher List.
+// The valid contents of variable must follow the TLS CipherList format defined in RFC 5246.
+// The valid length of variable must be an integral multiple of 2.
+// For example, if below cipher suites are preferred:
+// CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA256 = {0x00,0x3C}
+// CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA256 = {0x00,0x3D}
+// Then, the contents of variable should be:
+// {0x00,0x3C,0x00,0x3D}
+//
+#define EDKII_HTTP_TLS_CIPHER_LIST_GUID \
+ { \
+ 0x46ddb415, 0x5244, 0x49c7, { 0x93, 0x74, 0xf0, 0xe2, 0x98, 0xe7, 0xd3, 0x86 } \
+ }
+
+#define EDKII_HTTP_TLS_CIPHER_LIST_VARIABLE L"HttpTlsCipherList"
+
+extern EFI_GUID gEdkiiHttpTlsCipherListGuid;
+
+#endif
+
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/IScsiConfigHii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/IScsiConfigHii.h
new file mode 100644
index 00000000..2e29c6a2
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/IScsiConfigHii.h
@@ -0,0 +1,20 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in IScsiConfig driver
+ that supports IP4 and IP6 both.
+
+Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __ISCSI_CONFIG_HII_GUID_H__
+#define __ISCSI_CONFIG_HII_GUID_H__
+
+#define ISCSI_CONFIG_GUID \
+ { \
+ 0x4b47d616, 0xa8d6, 0x4552, { 0x9d, 0x44, 0xcc, 0xad, 0x2e, 0xf, 0x4c, 0xf9 } \
+ }
+
+extern EFI_GUID gIScsiConfigGuid;
+
+#endif
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4Config2Hii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4Config2Hii.h
new file mode 100644
index 00000000..868165d2
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4Config2Hii.h
@@ -0,0 +1,19 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in Ip4Dxe driver.
+
+Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __IP4_CONFIG2_HII_GUID_H__
+#define __IP4_CONFIG2_HII_GUID_H__
+
+#define IP4_CONFIG2_NVDATA_GUID \
+ { \
+ 0x9b942747, 0x154e, 0x4d29, { 0xa4, 0x36, 0xbf, 0x71, 0x0, 0xc8, 0xb5, 0x3b } \
+ }
+
+extern EFI_GUID gIp4Config2NvDataGuid;
+
+#endif
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4IScsiConfigHii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4IScsiConfigHii.h
new file mode 100644
index 00000000..0da8dcf6
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip4IScsiConfigHii.h
@@ -0,0 +1,25 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in IP4 IScsiDxe driver.
+
+Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __IP4_ISCSI_CONFIG_HII_GUID_H__
+#define __IP4_ISCSI_CONFIG_HII_GUID_H__
+
+#define IP4_ISCSI_CONFIG_GUID \
+ { \
+ 0x6456ed61, 0x3579, 0x41c9, { 0x8a, 0x26, 0x0a, 0x0b, 0xd6, 0x2b, 0x78, 0xfc } \
+ }
+
+#define ISCSI_CHAP_AUTH_INFO_GUID \
+ { \
+ 0x786ec0ac, 0x65ae, 0x4d1b, {0xb1, 0x37, 0xd, 0x11, 0xa, 0x48, 0x37, 0x97} \
+ }
+
+extern EFI_GUID gIp4IScsiConfigGuid;
+extern EFI_GUID gIScsiCHAPAuthInfoGuid;
+
+#endif
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip6ConfigHii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip6ConfigHii.h
new file mode 100644
index 00000000..03293c3f
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/Ip6ConfigHii.h
@@ -0,0 +1,19 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in Ip6Config driver.
+
+Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __IP6_CONFIG_HII_GUID_H__
+#define __IP6_CONFIG_HII_GUID_H__
+
+#define IP6_CONFIG_NVDATA_GUID \
+ { \
+ 0x2eea107, 0x98db, 0x400e, { 0x98, 0x30, 0x46, 0xa, 0x15, 0x42, 0xd7, 0x99 } \
+ }
+
+extern EFI_GUID gIp6ConfigNvDataGuid;
+
+#endif
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthConfigHii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthConfigHii.h
new file mode 100644
index 00000000..7ddbb60d
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthConfigHii.h
@@ -0,0 +1,20 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in TlsAuthConfigDxe driver.
+
+Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __TLS_AUTH_CONFIG_HII_GUID_H__
+#define __TLS_AUTH_CONFIG_HII_GUID_H__
+
+#define TLS_AUTH_CONFIG_GUID \
+ { \
+ 0xb0eae4f8, 0x9a04, 0x4c6d, { 0xa7, 0x48, 0x79, 0x3d, 0xaa, 0xf, 0x65, 0xdf } \
+ }
+
+extern EFI_GUID gTlsAuthConfigGuid;
+
+#endif
+
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthentication.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthentication.h
new file mode 100644
index 00000000..37edb7a0
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/TlsAuthentication.h
@@ -0,0 +1,24 @@
+/** @file
+ This file defines TlsCaCertificate variable.
+
+Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __TLS_AUTHENTICATION_H__
+#define __TLS_AUTHENTICATION_H__
+
+// Private variable for CA Certificate configuration
+//
+#define EFI_TLS_CA_CERTIFICATE_GUID \
+ { \
+ 0xfd2340D0, 0x3dab, 0x4349, { 0xa6, 0xc7, 0x3b, 0x4f, 0x12, 0xb4, 0x8e, 0xae } \
+ }
+
+#define EFI_TLS_CA_CERTIFICATE_VARIABLE L"TlsCaCertificate"
+
+extern EFI_GUID gEfiTlsCaCertificateGuid;
+
+#endif
+
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/VlanConfigHii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/VlanConfigHii.h
new file mode 100644
index 00000000..b9bc41fb
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/VlanConfigHii.h
@@ -0,0 +1,19 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in VlanConfig driver.
+
+Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __VLAN_CONFIG_HII_GUID_H__
+#define __VLAN_CONFIG_HII_GUID_H__
+
+#define VLAN_CONFIG_FORM_SET_GUID \
+ { \
+ 0xd79df6b0, 0xef44, 0x43bd, {0x97, 0x97, 0x43, 0xe9, 0x3b, 0xcf, 0x5f, 0xa8 } \
+ }
+
+extern EFI_GUID gVlanConfigFormSetGuid;
+
+#endif
diff --git a/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/WifiConnectionManagerConfigHii.h b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/WifiConnectionManagerConfigHii.h
new file mode 100644
index 00000000..0f8a3cf5
--- /dev/null
+++ b/src/VBox/Devices/EFI/Firmware/NetworkPkg/Include/Guid/WifiConnectionManagerConfigHii.h
@@ -0,0 +1,19 @@
+/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in WiFi Connection Manager.
+
+Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __WIFI_CONNECTION_MANAGER_HII_GUID_H__
+#define __WIFI_CONNECTION_MANAGER_HII_GUID_H__
+
+#define WIFI_CONNECTION_MANAGER_CONFIG_GUID \
+ { \
+ 0x9f94d327, 0x0b18, 0x4245, { 0x8f, 0xf2, 0x83, 0x2e, 0x30, 0xd, 0x2c, 0xef } \
+ }
+
+extern EFI_GUID gWifiConfigGuid;
+
+#endif