Last change
on this file since 99396 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
506 bytes
|
Line | |
---|
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
|
---|
Note:
See
TracBrowser
for help on using the repository browser.