]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/WifiConnectionManagerDxe/EapContext.h
9b3801926a223a56c6816fbed7da88e06c400218
[mirror_edk2.git] / NetworkPkg / WifiConnectionManagerDxe / EapContext.h
1 /** @file
2 Eap configuration data structure definitions for EAP connections.
3
4 Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef __EFI_WIFI_EAP_CONTEXT_H__
11 #define __EFI_WIFI_EAP_CONTEXT_H__
12
13 typedef struct {
14
15 BOOLEAN IsEncrypted;
16 CHAR16 EncryptPassword[PASSWORD_STORAGE_SIZE];
17 UINTN KeySize;
18 UINT8 KeyData[1];
19
20 } EFI_EAP_PRIVATE_KEY;
21
22 #endif