Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/Eap.h
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/Eap.h
r48674 r58459 3 3 The EFI EAP Protocol is used to abstract the ability to configure and extend the 4 4 EAP framework. 5 The definitions in this file are defined in UEFI Specification 2.3 , which have5 The definitions in this file are defined in UEFI Specification 2.3.1B, which have 6 6 not been verified by one implementation yet. 7 7 8 Copyright (c) 2009 - 201 1, Intel Corporation. All rights reserved.<BR>8 Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR> 9 9 This program and the accompanying materials 10 10 are licensed and made available under the terms and conditions of the BSD License … … 38 38 39 39 /// 40 /// EAP Authentication Method Type (RFC 2284 Section 3)40 /// EAP Authentication Method Type (RFC 3748) 41 41 ///@{ 42 #define EFI_EAP_TYPE_MD5 0x4 ///< REQUIRED 43 #define EFI_EAP_TYPE_OTP 0x5 ///< OPTIONAL 44 #define EFI_EAP_TYPE_TOKEN_CARD 0x6 ///< OPTIONAL 42 #define EFI_EAP_TYPE_TLS 13 ///< REQUIRED - RFC 5216 45 43 ///@} 46 44 45 // 46 // EAP_TYPE MD5, OTP and TOEKN_CARD has been removed from UEFI2.3.1B. 47 // 48 #define EFI_EAP_TYPE_MD5 0x4 49 #define EFI_EAP_TYPE_OTP 0x5 50 #define EFI_EAP_TYPE_TOKEN_CARD 0x6 47 51 48 52 /** … … 86 90 If the EAP authentication method of EapAuthType is unsupported by the Ports, then it will 87 91 return EFI_UNSUPPORTED. 88 92 The cryptographic strength of EFI_EAP_TYPE_TLS shall be at least of hash strength 93 SHA-256 and RSA key length of at least 2048 bits. 94 89 95 @param[in] This A pointer to the EFI_EAP_PROTOCOL instance that indicates 90 96 the calling context.
Note:
See TracChangeset
for help on using the changeset viewer.