EapContext.h 464 B

1234567891011121314151617181920
  1. /** @file
  2. Eap configuration data structure definitions for EAP connections.
  3. Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef __EFI_WIFI_EAP_CONTEXT_H__
  7. #define __EFI_WIFI_EAP_CONTEXT_H__
  8. typedef struct {
  9. BOOLEAN IsEncrypted;
  10. CHAR16 EncryptPassword[PASSWORD_STORAGE_SIZE];
  11. UINTN KeySize;
  12. UINT8 KeyData[1];
  13. } EFI_EAP_PRIVATE_KEY;
  14. #endif