Last change
on this file since 101283 was 99404, checked in by vboxsync, 20 months ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
444 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 | BOOLEAN IsEncrypted;
|
---|
15 | CHAR16 EncryptPassword[PASSWORD_STORAGE_SIZE];
|
---|
16 | UINTN KeySize;
|
---|
17 | UINT8 KeyData[1];
|
---|
18 | } EFI_EAP_PRIVATE_KEY;
|
---|
19 |
|
---|
20 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.