TOC |
|
By submitting this Internet-Draft, each author represents that any applicable patent or other IPR claims of which he or she is aware have been or will be disclosed, and any of which he or she becomes aware will be disclosed, in accordance with Section 6 of BCP 79.
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet-Drafts.
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work in progress.”
The list of current Internet-Drafts can be accessed at http://www.ietf.org/ietf/1id-abstracts.txt.
The list of Internet-Draft Shadow Directories can be accessed at http://www.ietf.org/shadow.html.
This Internet-Draft will expire on May 22, 2008.
This Internet Draft defines an Extensible Authentication Protocol method called EAP Generalized Pre-Shared Key (EAP-GPSK). This method is a lightweight shared-key authentication protocol supporting mutual authentication and key derivation.
1.
Introduction
2.
Terminology
3.
Overview
4.
Key Derivation
5.
Ciphersuites
6.
Generalized Key Derivation Function (GKDF)
7.
Ciphersuites Processing Rules
7.1.
Ciphersuite #1
7.1.1.
Encryption
7.1.2.
Integrity
7.1.3.
Key Derivation
7.2.
Ciphersuite #2
7.2.1.
Encryption
7.2.2.
Integrity
7.2.3.
Key Derivation
8.
Packet Formats
8.1.
Header Format
8.2.
Ciphersuite Formatting
8.3.
Payload Formatting
8.4.
Protected Data
8.4.1.
Protected Results Indication
9.
Packet Processing Rules
10.
Example Message Exchanges
11.
Security Considerations
11.1.
Mutual Authentication
11.2.
Protected Result Indications
11.3.
Integrity Protection
11.4.
Replay Protection
11.5.
Reflection attacks
11.6.
Dictionary Attacks
11.7.
Key Derivation
11.8.
Denial of Service Resistance
11.9.
Session Independence
11.10.
Exposition of the PSK
11.11.
Fragmentation
11.12.
Channel Binding
11.13.
Fast Reconnect
11.14.
Identity Protection
11.15.
Protected Ciphersuite Negotiation
11.16.
Confidentiality
11.17.
Cryptographic Binding
12.
IANA Considerations
13.
Contributors
14.
Acknowledgments
15.
References
15.1.
Normative References
15.2.
Informative References
§
Authors' Addresses
§
Intellectual Property and Copyright Statements
TOC |
EAP Generalized Pre-Shared Key (EAP-GPSK) is an EAP method defining a generalized pre-shared key authentication technique. Mutual authentication is achieved through a nonce-based exchange that is secured by a pre-shared key.
EAP-GPSK addresses a large number of design goals with the intention of being applicable in a broad range of usage scenarios.
The main design goals of EAP-GPSK are
- Simplicity:
EAP-GPSK should be easy to implement.
- Security Model:
EAP-GPSK has been designed in a threat model where the attacker has full control over the communication channel. This is the EAP threat model that is presented in Section 7.1 of [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.).
- Efficiency:
EAP-GPSK does not make use of public key cryptography and fully relies of symmetric cryptography. The restriction on symmetric cryptographic computations allows for low computational overhead. Hence, EAP-GPSK is lightweight and well suited for any type of device, especially those with processing power, memory and battery constraints. Additionally it seeks to minimize the number of round trips.
- Flexibility:
EAP-GPSK offers cryptographic flexibility. At the beginning, the EAP server proposes a list of ciphersuites. The client then selects one. The current version of EAP-GPSK comprises two ciphersuites, but additional ones can be easily added.
- Extensibility:
The design of EAP-GPSK allows to securely exchange information between the EAP peer and the EAP server using protected data fields. These fields might, for example, be used to exchange channel binding information or to provide support for identity confidentiality.
TOC |
In this document, several words are used to signify the requirements of the specification. These words are often capitalized. The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119] (Bradner, S., “Key words for use in RFCs to Indicate Requirement Levels,” March 1997.).
This section describes the various variables and functions used in the EAP-GPSK method.
Variables:
- CSuite_List:
- An octet array listing available ciphersuites (variable length)
- CSuite_Sel:
- Ciphersuite selected by the peer (6 octets)
- ID_Peer:
- Peer NAI [RFC4282] (Aboba, B., Beadles, M., Arkko, J., and P. Eronen, “The Network Access Identifier,” December 2005.)
- ID_Server:
- Server identity as an opaque blob.
- KS:
- Integer representing the key size in octets of the selected ciphersuite CSuite_Sel. The key size is one of the ciphersuite parameters.
- PD_Payload:
- Data carried within the protected data payload
- PD_Payload_Block:
- Block of possibly multiple PD_Payloads carried by a GPSK packet
- PL:
- Integer representing the length of the PSK in octets (2 octets)
- RAND_Peer:
- Random integer generated by the peer (32 octets)
- RAND_Server:
- Random integer generated by the server (32 octets)
Operations:
- A || B:
- Concatenation of octet strings A and B
- A**B:
- Integer exponentiation
- truncate(A,B):
- Returns the first B octets of A
- ENC_X(Y):
- Encryption of message Y with a symmetric key X, using a defined block cipher
- KDF_X(Y):
- Key Derivation Function that generates an arbitrary number of octets of output using secret X and seed Y
- length(X):
- Function that returns the length of input X in octets, encoded as a 2-octet integer in network byte order
- MAC_X(Y):
- Keyed message authentication code computed over Y with symmetric key X
- SEC_X(Y):
- SEC is a function that provides integrity protection based on the chosen ciphersuite. The function SEC uses the algorithm defined by the selected ciphersuite and applies it to the message content Y with key X. In short, SEC_X(Y) = Y || MAC_X(Y).
- X[A..B]:
- Notation representing octets A through B of octet array X
The following abbreviations are used for the keying material:
- EMSK:
- Extended Master Session Key is exported by the EAP method (64 octets)
- MK:
- Master Key between the peer and EAP server from which all other EAP method session keys are derived (KS octets)
- MSK:
- Master Session Key exported by the EAP method (64 octets)
- PK:
- Session key generated from the MK and used during protocol exchange to encrypt protected data (KS octets)
- PSK:
- Long-term key shared between the peer and the server (PL octets)
- SK:
- Session key generated from the MK and used during protocol exchange to demonstrate knowledge of the PSK (KS octets)
TOC |
The EAP framework (see Section 1.3 of [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.)) defines three basic steps that occur during the execution of an EAP conversation between the EAP peer, the Authenticator and the EAP server.
EAP-GPSK performs mutual authentication between EAP peer ("Peer") and EAP server ("Server") based on a pre-shared key (PSK). The protocol consists of four message exchanges (GPSK-1, ..., GPSK-4), in which both sides exchange nonces and their identities, compute and exchange a Message Authentication Code (MAC) over the previously exchanged values, keyed with the pre-shared key. This MAC is considered as proof of possession of the pre-shared key.
A successful protocol exchange is shown in Figure 1 (EAP-GPSK: Successful Exchange).
+--------+ +--------+ | | EAP-Request/Identity | | | EAP |<------------------------------------| EAP | | peer | | server | | | EAP-Response/Identity | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-1 | | | |<------------------------------------| | | | | | | | EAP-Response/GPSK-2 | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-3 | | | |<------------------------------------| | | | | | | | EAP-Response/GPSK-4 | | | |------------------------------------>| | | | | | | | EAP-Success | | | |<------------------------------------| | +--------+ +--------+
Figure 1: EAP-GPSK: Successful Exchange |
The full EAP-GPSK protocol is as follows:
- GPSK-1:
ID_Server, RAND_Server, CSuite_List
- GPSK-2:
SEC_SK(ID_Peer, ID_Server, RAND_Peer, RAND_Server, CSuite_List, CSuite_Sel, [ ENC_PK(PD_Payload_Block) ] )
- GPSK-3:
SEC_SK(RAND_Peer, RAND_Server, ID_Server, CSuite_Sel, [ ENC_PK(PD_Payload_Block) ] )
- GPSK-4:
SEC_SK( [ ENC_PK(PD_Payload_Block) ] )
The EAP server begins EAP-GPSK by selecting a random number RAND_Server and by encoding the supported ciphersuites into CSuite_List. A ciphersuite consists of an encryption algorithm, a key derivation function and a message authentication code.
In GPSK-1, the EAP server sends its identity ID_Server, a random number RAND_Server and a list of supported ciphersuites CSuite_List. The decision which ciphersuite to offer and which ciphersuite to pick is policy- and implementation-dependent and therefore outside the scope of this document.
In GPSK-2, the peer sends its identity ID_Peer and a random number RAND_Peer. Furthermore, it repeats the received parameters of the GPSK-1 message (ID_Server, RAND_Server, CSuite_List) and the selected ciphersuite. It computes a Message Authentication Code over all the transmitted parameters.
The EAP server verifies the received Message Authentication Code. In case of successful verification, the EAP server computes a Message Authentication Code over the session parameter and returns it to the peer (within GPSK-3). Within GPSK-2 and GPSK-3, peer and EAP server have the possibility to exchange encrypted protected data parameters.
The peer verifies the received Message Authentication Code. If the verification is successful, GPSK-4 is prepared. This message can optionally contain the peer's protected data parameters.
Upon receipt of GPSK-4, the server processes any included PD_Payload_Block. Then, the EAP server sends an EAP Success message to indicate the successful outcome of the authentication.
TOC |
EAP-GPSK provides key derivation in compliance to the requirements of [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.) and [I‑D.ietf‑eap‑keying] (Aboba, B., Simon, D., and P. Eronen, “Extensible Authentication Protocol (EAP) Key Management Framework,” November 2007.). Note that this section provides an abstract description for the key derivation procedure that needs to be instantiated with a specific ciphersuite.
The long-term credential shared between EAP peer and EAP server SHOULD be a strong pre-shared key PSK of at least 16 octets, though its length and entropy is variable. While it is possible to use a password or passphrase, doing so is NOT RECOMMENDED as it would make EAP-GPSK vulnerable to dictionary attacks.
During an EAP-GPSK authentication, a Master Key MK, a Session Key SK and a Protected Data Encryption Key PK (if using an encrypting ciphersuite) are derived using the ciphersuite-specified KDF and data exchanged during the execution of the protocol, namely 'RAND_Peer || ID_Peer || RAND_Server || ID_Server' referred as inputString as its short-hand form.
In case of successful completion, EAP-GPSK derives and exports an MSK and EMSK both in length of 64 octets.
The following notation is used: KDF-X(Y, Z)[A..B], whereby
- X
- is the length, in octets, of the desired output,
- Y
- is a secret key,
- Z
- is the inputString,
- [A..B]
- extracts the string of octets starting with octet A finishing with octet B from the output of the KDF function.
This keying material is derived using the ciphersuite-specified KDF as follows:
Additionally, the EAP keying framework [I‑D.ietf‑eap‑keying] (Aboba, B., Simon, D., and P. Eronen, “Extensible Authentication Protocol (EAP) Key Management Framework,” November 2007.) requires the definition of a Method-ID, Session-ID, Peer-ID, and Server-ID. These values are defined as:
EAP_Method_Type refers to the integer value of the IANA allocated EAP Type code.
Figure 2 (EAP-GPSK Key Derivation) depicts the key derivation procedure of EAP-GPSK.
+-------------+ +-------------------------------+ | PL-octet | | RAND_Peer || ID_Peer || | | PSK | | RAND_Server || ID_Server | +-------------+ +-------------------------------+ | | | | +------------+ | | | | CSuite_Sel | | | | +------------+ | | | | | | v v v | +--------------------------------------------+ | | KDF | | +--------------------------------------------+ | | | v | +-------------+ | | KS-octet | | | MK | | +-------------+ | | | v v +---------------------------------------------------+ | KDF | +---------------------------------------------------+ | | | | v v v v +---------+ +---------+ +----------+ +----------+ | 64-octet| | 64-octet| | KS-octet | | KS-octet | | MSK | | EMSK | | SK | | PK | +---------+ +---------+ +----------+ +----------+
Figure 2: EAP-GPSK Key Derivation |
TOC |
The design of EAP-GPSK allows cryptographic algorithms and key sizes, called ciphersuites, to be negotiated during the protocol run. The ability to specify block-based and hash-based ciphersuites is offered. Extensibility is provided with the introduction of new ciphersuites; this document specifies an initial set. The CSuite/Specifier column in Figure 3 (Ciphersuites) uniquely identifies a ciphersuite.
For a vendor-specific ciphersuite the first three octets are the vendor-specific Object Identifier (OID) contains the IANA assigned "SMI Network Management Private Enterprise Codes" value (see [RFC3232] (Reynolds, J., “Assigned Numbers: RFC 1700 is Replaced by an On-line Database,” January 2002.)), encoded in network byte order. The last three octets are vendor assigned for the specific ciphersuite.
The following ciphersuites are specified in this document:
+-----------+----+-------------+--------------+----------------+ | CSuite/ | KS | Encryption | Integrity / | Key Derivation | | Specifier | | | KDF MAC | Function | +-----------+----+-------------+--------------+----------------+ | 0x000001 | 16 | AES-CBC-128 | AES-CMAC-128 | GKDF | +-----------+----+-------------+--------------+----------------+ | 0x000002 | 32 | NULL | HMAC-SHA256 | GKDF | +-----------+----+-------------+--------------+----------------+
Figure 3: Ciphersuites |
Ciphersuite 1, which is based on AES as a cryptographic primitive, is mandatory to implement. This document specifies also a second ciphersuite, but its support is optional. Both ciphersuites defined in this document make use of the GKDF, as defined in Section 6 (Generalized Key Derivation Function (GKDF)). The following aspects need to be considered to ensure that the PSK that is used as input to the GKDF is sufficiently long (in case it is longer it needs to be truncated):
Ciphersuites defined in the future that make use of the GKDF need to specify a minimum PSK size (as it is done with the ciphersuites listed in this document).
TOC |
Each ciphersuite needs to specify a key derivation function. The ciphersuites defined in this document make use of the Generalized Key Derivation Function (GKDF) that utilizes the MAC function defined in the ciphersuite. Future ciphersuites can use any other formally specified KDF that takes as arguments a key and a seed value, and produces at least 128+2*KS octets of output.
GKDF has the following structure:
GKDF-X(Y, Z)
- X
- length, in octets, of the desired output
- Y
- secret key
- Z
- inputString
GKDF-X (Y, Z) { n = ceiling integer of ( X / KS ); /* determine number of output blocks */ M_0 = ""; result = ""; for i = 1 to n { M_i = MAC_Y (i || Z); result = result || M_i; } return truncate(result, X) }
Note that the variable 'i' in M_i is represented as a 2-octet value in network byte order.
TOC |
TOC |
TOC |
With this ciphersuite all cryptography is built around a single cryptographic primitive, AES-128 ([AES] (National Institute of Standards and Technology, “Specification for the Advanced Encryption Standard (AES),” November 2001.)). Within the protected data frames, AES-128 is used in Cipher Block Chaining (CBC) mode of operation (see [CBC] (National Institute of Standards and Technology, “Recommendation for Block Cipher Modes of Encryption. Methods and Techniques.,” December 2001.)). This EAP method uses encryption in a single payload, in the protected data payload (see Section 8.4 (Protected Data)).
In a nutshell, the CBC mode proceeds as follows. The IV is XORed with the first plaintext block before it is encrypted. Then for successive blocks, the previous ciphertext block is XORed with the current plaintext, before it is encrypted.
TOC |
Ciphersuite 1 uses CMAC as Message Authentication Code. CMAC is recommended by NIST.
Among its advantages, CMAC is capable to work with messages of arbitrary length. A
detailed description of CMAC can be found in [CMAC] (National Institute of Standards and Technology, “Recommendation for Block Cipher Modes of Operation: The CMAC Mode for Authentication,” May 2005.).
The following instantiation is used: AES-CMAC-128(SK, Input) denotes the MAC of Input under the key SK.
where Input refers to the following content:
TOC |
This ciphersuite instantiates the KDF in the following way:
inputString = RAND_Peer || ID_Peer || RAND_Server || ID_Server
MK = GKDF-16 (PSK[0..127], PL || PSK || CSuite_Sel || inputString)
MSK = GKDF-160 (MK, inputString)[0..63]
EMSK = GKDF-160 (MK, inputString)[64..127]
SK = GKDF-160 (MK, inputString)[128..143]
PK = GKDF-160 (MK, inputString)[144..159]
Method-ID = GKDF-16 (zero, "Method ID" || EAP_Method_Type || CSuite_Sel || inputString)
TOC |
TOC |
Ciphersuite 2 does not include an algorithm for encryption. With a NULL encryption algorithm, encryption is defined as:
E_X(Y) = Y
When using this ciphersuite, the data exchanged inside the protected data block is not encrypted. Therefore this mode MUST NOT be used if confidential information appears inside the protected data block.
TOC |
Ciphersuite 2 uses the keyed MAC function HMAC, with the SHA256 hash algorithm (see [RFC4634] (Eastlake, D. and T. Hansen, “US Secure Hash Algorithms (SHA and HMAC-SHA),” July 2006.)).
For integrity protection the following instantiation is used:
HMAC-SHA256(SK, Input) denotes the MAC of Input under the key SK where Input refers to the following content:
TOC |
This ciphersuite instantiates the KDF in the following way:
inputString = RAND_Peer || ID_Peer || RAND_Server || ID_Server
MK = GKDF-32 (PSK[0..255], PL || PSK || CSuite_Sel || inputString)
MSK = GKDF-160 (MK, inputString)[0..63]
EMSK = GKDF-160 (MK, inputString)[64..127]
SK = GKDF-160 (MK, inputString)[128..159]
Method-ID = GKDF-16 (zero, "Method ID" || EAP_Method_Type || CSuite_Sel || inputString)
TOC |
This section defines the packet format of the EAP-GPSK messages.
TOC |
The EAP-GPSK header has the following structure:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Code | Identifier | Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Type | OP-Code | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... Payload ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 4 |
The Code, Identifier, Length, and Type fields are all part of the EAP header, and defined in [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.). IANA has allocated EAP Method Type XX for EAP-GPSK, thus the Type field in the EAP header MUST be XX.
The OP-Code field is one of four values:
All other values of this OP-Code field are available via IANA registration.
TOC |
Ciphersuites are encoded as 6-octet arrays. The first four octets indicate the CSuite/Vendor field. For vendor-specific ciphersuites, this represents the vendor Object Identifier (OID) contains the IANA assigned "SMI Network Management Private Enterprise Codes" value (see [RFC3232] (Reynolds, J., “Assigned Numbers: RFC 1700 is Replaced by an On-line Database,” January 2002.)), encoded in network byte order. The last two octets indicate the CSuite/Specifier field, which identifies the particular ciphersuite. The 4-octet CSuite/Vendor value 0x00000000 indicates ciphersuites allocated by the IETF.
Graphically, they are represented as
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | CSuite/Vendor = 0x00000000 or OID | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | CSuite/Specifier | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 5 |
CSuite_Sel is encoded as a 6-octet ciphersuite CSuite/Vendor and CSuite/Specifier pair.
CSuite_List is a variable-length octet array of ciphersuites. It is encoded by concatenating encoded ciphersuite values. Its length in octets MUST be a multiple of 6.
TOC |
Payload formatting is based on the protocol exchange description in Section 3 (Overview).
The GPSK-1 payload format is defined as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | length(ID_Server) | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... ID_Server ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... 32-octet RAND_Server ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | length(CSuite_List) | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... CSuite_List ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 6: GPSK-1 Payload |
The GPSK-2 payload format is defined as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | length(ID_Peer) | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... ID_Peer ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | length(ID_Server) | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... ID_Server ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... 32-octet RAND_Peer ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... 32-octet RAND_Server ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | length(CSuite_List) | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... CSuite_List ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | CSuite_Sel | + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | length(PD_Payload_Block) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... optional PD_Payload_Block ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... KS-octet payload MAC ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 7: GPSK-2 Payload |
If the optional protected data payload is not included, then length(PD_Payload_Block)=0 and the PD payload is excluded.
The GPSK-3 payload is defined as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... 32-octet RAND_Peer ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... 32-octet RAND_Server ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | length(ID_Server) | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... ID_Server ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | CSuite_Sel | + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | length(PD_Payload_Block) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... optional PD_Payload_Block ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... KS-octet payload MAC ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 8: GPSK-3 Payload |
If the optional protected data payload is not included, then length(PD_Payload_Block)=0 and the PD payload is excluded.
The GPSK-4 payload format is defined as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | length(PD_Payload_Block) | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | | ... optional PD_Payload_Block ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... KS-octet payload MAC ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 9: GPSK-4 Payload |
If the optional protected data payload is not included, then length(PD_Payload_Block)=0 and the PD payload is excluded. The MAC MUST always be included, regardless of the presence of PD_Payload_Block.
The GPSK-Fail payload format is defined as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Failure-Code | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 10: GPSK-Fail Payload |
The GPSK-Protected-Fail payload format is defined as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Failure-Code | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... KS-octet payload MAC ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 11: GPSK-Protected-Fail Payload |
The Failure-Code field is one of three values, but can be extended:
All other values of this field are available via IANA registration.
"PSK Not Found" indicates a key for a particular user could not be located, making authentication impossible. "Authentication Failure" indicates a MAC failure due to a PSK mismatch. "Authorization Failure" indicates that while the PSK being used is correct, the user is not authorized to connect.
TOC |
The protected data blocks are a generic mechanism for the peer and server to securely exchange data. If the specified ciphersuite has a NULL encryption primitive, then this channel only offers authenticity, and not confidentiality.
These payloads are encoded as the concatenation of type-length-value (TLV) triples called PD_Payloads.
Type values are encoded as a 6-octet string and represented by a 4-octet vendor and 2-octet specifier field. The vendor field indicates the type as either standards-specified or vendor-specific. If these four octets are 0x00000000, then the value is standards-specified, and any other value represents a vendor-specific Object Identifier (OID).
The specifier field indicates the actual type. For vendor field 0x00000000, the specifier field is maintained by IANA. For any other vendor field, the specifier field is maintained by the vendor.
Length fields are specified as 2-octet integers in network byte order, and reflect only the length of the value, and do not include the length of the type and length fields.
Graphically, this can be depicted as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | PData/Vendor | ... +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ PData/Specifier | PData/Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... PData/Value ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Protected Data Payload (PD_Payload) Formatting |
These PD_Payloads are concatenated together to form a PD_Payload_Block. The If the CSuite_Sel includes support for encryption, then the PD_Payload_Block includes fields specifying an initialization vector (IV), and the necessary padding. This can be depicted as follows:
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Initialization Vector | ... (length is block size for encryption algorithm) ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... PD_Payload ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... optional PD_Payload, etc ... | | + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | Padding (0-255 octets) | +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ | | Pad Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Protected Data Block (PD_Payload_Block) Formatting if Encryption Supported |
The Initialization Vector is a randomly chosen value whose length is equal to the block length of the underlying encryption algorithm. Recipients MUST accept any value. Senders SHOULD either pick this value pseudo-randomly and independently for each message or use the final ciphertext block of the previous message sent. Senders MUST NOT use the same value for each message, use a sequence of values with low hamming distance (e.g., a sequence number), or use ciphertext from a received message.
The concatenation of PD_Payloads along with the padding and padding length are all encrypted using the negotiated block cipher. If no block cipher is specified, then these fields are not encrypted.
The Padding field MAY contain any value chosen by the sender, and MUST have a length that makes the combination of the concatenation of PD_Payloads, the Padding, and the Pad Length to be a multiple of the encryption block size.
The Pad Length field is the length of the Padding field. The sender SHOULD set the Pad Length to the minimum value that makes the combination of the PD_Payloads, the Padding, and the Pad Length a multiple of the block size, but the recipient MUST accept any length that results in proper alignment. This field is encrypted with the negotiated cipher.
If the negotiated ciphersuite does not support encryption, then the padding field MUST be of length zero. The padding length field MUST still be present, and contain the value zero. This is depicted in the following figure.
--- bit offset ---> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... PD_Payload ... | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ... optional PD_Payload, etc +-+-+-+-+-+-+-+-+ | | 0x00 | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Protected Data Block (PD_Payload_Block) Formatting Without Encryption |
For PData/Vendor field 0x000000, the following PData/Specifier fields are defined:
All other values of this field are available via IANA registration.
TOC |
Based on the PData/Specifier allocation the following 8-bit payload is specified to be placed in the PD_Payload Value to provide the functionality of protected results indication.
0 0 1 2 3 4 5 6 7 +-+-+-+-+-+-+-+-+ |I|R|R|R|R|R|R|R| +-+-+-+-+-+-+-+-+ I: Result Indicator The bits have the following meaning: (0): Success (1): Failure R: Reserved These bits are used for padding.
The 8 bits of protected results indication functionality, which does not require confidentiality protection, MUST only be sent in GPSK-3 from the EAP server to the EAP peer.
TOC |
This section defines how the EAP peer and EAP server MUST behave when received packet is deemed invalid.
Any EAP-GPSK packet that cannot be parsed by the EAP peer or the EAP server MUST be silently discarded. An EAP peer or EAP server receiving any unexpected packet (e.g., an EAP peer receiving GPSK-3 before receiving GPSK-1 or before transmitting GPSK-2) MUST silently discard the packet.
GPSK-1 contains no MAC protection, so provided it properly parses, it MUST be accepted by the peer. Note that the ciphersuite list provided by the EAP server in CSuite_List MUST always include the mandatory-to-implement ciphersuite defined in this document. Hence, there is always at least one ciphersuite in common between the EAP peer and the EAP server. If the EAP peer decides the ID_Server is that of a AAA server to which it does not wish to authenticate, the EAP peer should respond with an EAP-NAK.
For GPSK-2, if ID_Peer is for an unknown user, the EAP server MUST send either a "PSK Not Found" GPSK-Fail message, or an "Authentication Failure" GPSK-Fail, depending on its policy, and discard the received packet. If the MAC validation fails, the server MUST transmit a GPSK-Fail message specifying "Authentication Failure" and discard the received packet. If the RAND_Server or CSuite_List field in GPSK-2 does not match the values in GPSK-1, the server MUST silently discard the packet. If server policy determines the peer is not authorized and the MAC is correct, the server MUST transmit a GPSK-Protected-Fail message indicating "Authorization Failure" and discard the received packet.
A peer receiving a GPSK-Fail / GPSK-Protected-Fail message in response to a GPSK-2 message MUST replay the received GPSK-Fail / GPSK-Protected-Fail message. Then, the EAP server returns an EAP-Failure after receiving the GPSK-Fail / GPSK-Protected-Fail message to correctly finish the EAP conversation. If MAC validation on a GPSK-Protected-Fail packet fails, then the received packet MUST be silently discarded.
For GPSK-3, a peer MUST silently discard messages where the RAND_Peer, the RAND_Server, or the CSuite_Sel fields do match those transmitted in GPSK-2. An EAP peer MUST silently discard any packet whose MAC fails.
For GPSK-4, a server MUST silently discard any packet whose MAC fails validation.
If a decryption failure of a protected payload is detected, the recipient MUST silently discard the GPSK packet.
TOC |
This section shows a couple of example message flows.
A successful EAP-GPSK message exchange is shown in Figure 1 (EAP-GPSK: Successful Exchange).
+--------+ +--------+ | | EAP-Request/Identity | | | EAP |<------------------------------------| EAP | | peer | | server | | | EAP-Response/Identity | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-1 | | | |<------------------------------------| | | | | | | | EAP-Response/EAP-NAK | | | |------------------------------------>| | | | | | | | EAP-Failure | | | |<------------------------------------| | +--------+ +--------+
EAP-GPSK: Unsuccessful Exchange (Unacceptable AAA server identity; ID_Server) |
+--------+ +--------+ | | EAP-Request/Identity | | | EAP |<------------------------------------| EAP | | peer | | server | | | EAP-Response/Identity | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-1 | | | |<------------------------------------| | | | | | | | EAP-Response/GPSK-2 | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-3 (GPSK-Fail | | | | (PSK Not Found or Authentication | | | | Failure)) | | | |<------------------------------------| | | | | | | | EAP-Response/GPSK-4 (GPSK-Fail | | | | (PSK Not Found or Authentication | | | | Failure)) | | | |------------------------------------>| | | | | | | | EAP-Failure | | | |<------------------------------------| | +--------+ +--------+
EAP-GPSK: Unsuccessful Exchange (Unknown user) |
+--------+ +--------+ | | EAP-Request/Identity | | | EAP |<------------------------------------| EAP | | peer | | server | | | EAP-Response/Identity | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-1 | | | |<------------------------------------| | | | | | | | EAP-Response/GPSK-2 | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-3 (GPSK-Fail | | | | (Authentication Failure)) | | | |<------------------------------------| | | | | | | | EAP-Response/GPSK-4 (GPSK-Fail | | | | (Authentication Failure)) | | | |------------------------------------>| | | | | | | | EAP-Failure | | | |<------------------------------------| | +--------+ +--------+
EAP-GPSK: Unsuccessful Exchange (Invalid MAC in GPSK-2) |
+--------+ +--------+ | | EAP-Request/Identity | | | EAP |<------------------------------------| EAP | | peer | | server | | | EAP-Response/Identity | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-1 | | | |<------------------------------------| | | | | | | | EAP-Response/GPSK-2 | | | |------------------------------------>| | | | | | | | EAP-Request/GPSK-3 | | | | GPSK-Protected-Fail | | | | (Authorization Failure) | | | |<------------------------------------| | | | | | | | EAP-Request/GPSK-4 | | | | GPSK-Protected-Fail | | | | (Authorization Failure) | | | |------------------------------------>| | | | | | | | EAP-Failure | | | |<------------------------------------| | +--------+ +--------+
EAP-GPSK: Unsuccessful Exchange (Authorization failure) |
TOC |
[RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.) highlights several attacks that are possible against EAP since EAP itself does not provide any security.
This section discusses the claimed security properties of EAP-GPSK as well as vulnerabilities and security recommendations in the threat model of [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.).
TOC |
EAP-GPSK provides mutual authentication.
The server believes that the peer is authentic when it successfully verifies the MAC in the GPSK-2 message and the peer believes that the server is authentic when it successfully verifies the MAC it receives with the GPSK-3 message.
The key used for mutual authentication is derived based on the long-term secret PSK, nonces contributed by both parties and other parameters. The long-term secret PSK has to provide sufficient entropy and therefore sufficient strength. The nonces (RAND_Peer and RAND_Server) need to be fresh and unique for every session. In this way EAP-GPSK is not different than other authentication protocols based on pre-shared keys.
TOC |
EAP-GPSK offers the capability to exchange protected result indications using the protected data payloads.
TOC |
EAP-GPSK provides integrity protection based on the ciphersuites suggested in this document. Integrity protection is a minimum feature every ciphersuite must provide.
TOC |
EAP-GPSK provides replay protection of its mutual authentication part thanks to the use of random numbers RAND_Server and RAND_Peer. Since RAND_Server is 32 octets long, one expects to have to record 2**64 (i.e., approximately 1.84*10**19) EAP-GPSK successful authentication before an protocol run can be replayed. Hence, EAP-GPSK provides replay protection of its mutual authentication part as long as RAND_Server and RAND_Peer are chosen at random, randomness is critical for replay protection. RFC 4086 (Eastlake, D., Schiller, J., and S. Crocker, “Randomness Requirements for Security,” June 2005.) [RFC4086] describes techniques for producing random quantities.
TOC |
EAP-GPSK provides protection against reflection attacks in case of an extended authentication because the messages are constructed in a different fashion.
TOC |
EAP-GPSK relies on a long-term shared secret (PSK) that MUST be based on at least 16 octets of entropy to guarantee security against dictionary attacks. Users who use passwords are not guaranteed protection against dictionary attacks. Derivation of the long-term shared secret from a password is strongly discouraged.
TOC |
EAP-GPSK supports key derivation as shown in Section 4 (Key Derivation).
TOC |
There are two forms of denial of service attacks relevant for this document, namely attacks that lead to vast amount of state being allocated and attacks against the computational resources. The latter onces are less problematic for EAP-GPSK since all computations are lightweight. We will consider the former one in more detail below.
In an EAP-GPSK conversation the server has to maintain state, namely the 32-octet RAND_Server, when transmitting the GPSK-1 message to the peer. An adversary could therefore flood a server with a large number of EAP-GPSK communication attempts. An EAP server may therefore ensure that established state times out after a relatively short period of time when no further messages are received. This enables a sort of garbage collection.
The client would have to potentially keep state information after receiving the GPSK-1 message. Section 4.2 of [HM2004] (He, C. and J. Mitchell, “Analysis of the 802.11i 4-Way Handshake),” October 2004.) describes a short of client-side denial of service attack and illustrates three possible solutions to avoid having the client to keep state when receiving the first message. When the client receives the GPSK-3 message then it needs to derive keying material based on the following information: RAND_Peer, ID_Peer, RAND_Server, ID_Server, RAND_Peer, RAND_Server. Hence, GPSK-3 includes all necessary parameters to allow the client to (a) avoid allocating state information with the arrival of GPSK-1 and (b) to enable deriving the keying material.
The security considerations of EAP itself, see Section 5.2 and Section 7 of RFC 3748 [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.), are also applicable to this specification (e.g., for example concerning EAP-based notifications).
TOC |
Thanks to its key derivation mechanisms, EAP-GPSK provides session independence: passive attacks (such as capture of the EAP conversation) or active attacks (including compromise of the MSK or EMSK) do not enable compromise of subsequent or prior MSKs or EMSKs. The assumption that RAND_Peer and RAND_Server are random is central for the security of EAP-GPSK in general and session independence in particular.
TOC |
EAP-GPSK does not provide perfect forward secrecy. Compromise of the PSK leads to compromise of recorded past sessions.
Compromise of the PSK enables the attacker to impersonate the peer and the server and it allows the adversary to compromise future sessions.
EAP-GPSK provides no protection against a legitimate peer sharing its PSK with a third party. Such protection may be provided by appropriate repositories for the PSK, which choice is outside the scope of this document. The PSK used by EAP-GPSK must only be shared between two parties: the peer and the server. In particular, this PSK must not be shared by a group of peers communicating with the same server.
The PSK used by EAP-GPSK must be cryptographically separated from keys used by other protocols, otherwise the security of EAP-GPSK may be compromised.
TOC |
EAP-GPSK does not support fragmentation and reassembly since the message size is relatively small.
TOC |
This document enables the ability to exchange channel binding information. It does not, however, define the encoding of channel binding information in the document.
TOC |
EAP-GPSK does not provide the fast reconnect capability since this method is already at (or close to) the lower limit of the number of roundtrips and the cryptographic operations.
TOC |
Identity protection is not specified in this document. Extensions can be defined that enhance this protocol to provide this feature.
TOC |
EAP-GPSK provides protected ciphersuite negotiation via the indication of available ciphersuites by the server in the first message and a confirmation by the peer in the subsequent message.
Note, however, that the GPSK-2 message may optionally contain a payload, ENC_PK(PD_Payload_Block), protected with an algorithm based on a selected ciphersuite before the ciphersuite list has actually been authenticated. In the classical downgrading attack an adversary would chose a ciphersuite that it weak enough to that it could break it in real-time or to turn security off. The latter is not possible since any ciphersuite defined for EAP-GPSK must at least provide authentication and integrity protection. Confidentity protection is optional. When, some time in the future, a ciphersuite contains algorithms that can be broken in real-time then a policy on peers and the server needs to indicate that such a ciphersuite must not be selected by any of parties.
Furthermore, an adversay may modify the selection of the ciphersuite to for the client to select a ciphersuite that does not provide confidentity protection. As a result this would cause the content of PD_Payload_Block to be transmitted in cleartext. When protocol designers extend EAP-GPSK to carry information in the PD_Payload_Block of the GPSK-2 message then it must be indicated whether confidentiality protection is mandatory. In case such an extension requires a ciphersuite with confidentiality protection then the policy at the peer must not transmit information of that extension in the PD_Payload_Block of the GPSK-2 message. The peer may, if possible, delay the transmission of this information element to the GPSK-4 message where the ciphersuite negotiation has been confirmed already. In general, when a ciphersuite is selected that does not provide confidentiality protection then information that demands confidentility protection must not be included in any of the PD_Payload_Block objects.
TOC |
Although EAP-GPSK provides confidentiality in its protected data payloads, it cannot claim to do so as per Section 7.2.1 of [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.).
TOC |
Since EAP-GPSK does not tunnel another EAP method, it does not implement cryptographic binding.
TOC |
This document requires IANA to allocate a new EAP Type for EAP-GPSK.
This document requires IANA to create a new registry for ciphersuites, protected data types, failure codes and op-codes. IANA is furthermore instructed to add the specified ciphersuites, protected data types, failure codes and op-codes to these registries as defined in this document. Values can be added or modified with informational RFCs defining either block-based or hash-based ciphersuites, protected data payloads, failure codes and op-codes. Each ciphersuite needs to provide processing rules and needs to specify how the following algorithms are instantiated: encryption, integrity, key derivation and key length.
Figure 3 (Ciphersuites) represents the initial ciphersuite CSuite/Specifier registry setup. The CSuite/Specifier field is 16 bits long. All other values are available via IANA registration.
The following is the initial protected data PData/Specifier registry setup:
The PData/Specifier field is 24 bits long and all other values are available via IANA registration. Each extension needs to indicate whether confidentiality protection for transmission between the EAP peer and the EAP server is mandatory. The following layout represents the initial Failure-Code registry setup:
The Failure-Code field is 32 bits long and all other values are available via IANA registration. The following layout represents the initial OP-Code registry setup:
The OP-Code field is 8 bits long and all other values are available via IANA registration.
TOC |
This work is a joint effort of the EAP Method Update (EMU) design team of the EMU Working Group that was created to develop a mechanism based on strong shared secrets that meets RFC 3748 [RFC3748] (Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” June 2004.) and RFC 4017 [RFC4017] (Stanley, D., Walker, J., and B. Aboba, “Extensible Authentication Protocol (EAP) Method Requirements for Wireless LANs,” March 2005.) requirements. The design team members (in alphabetical order) were:
Finally, we would like to thank Thomas Otto for his draft reviews, feedback and text contributions.
TOC |
We would like to thank
TOC |
TOC |
[RFC2119] | Bradner, S., “Key words for use in RFCs to Indicate Requirement Levels,” BCP 14, RFC 2119, March 1997 (TXT, HTML, XML). |
[RFC3748] | Aboba, B., Blunk, L., Vollbrecht, J., Carlson, J., and H. Levkowetz, “Extensible Authentication Protocol (EAP),” RFC 3748, June 2004 (TXT). |
[RFC4282] | Aboba, B., Beadles, M., Arkko, J., and P. Eronen, “The Network Access Identifier,” RFC 4282, December 2005 (TXT). |
TOC |
[I-D.ietf-eap-keying] | Aboba, B., Simon, D., and P. Eronen, “Extensible Authentication Protocol (EAP) Key Management Framework,” draft-ietf-eap-keying-22 (work in progress), November 2007 (TXT). |
[RFC4017] | Stanley, D., Walker, J., and B. Aboba, “Extensible Authentication Protocol (EAP) Method Requirements for Wireless LANs,” RFC 4017, March 2005 (TXT). |
[RFC4634] | Eastlake, D. and T. Hansen, “US Secure Hash Algorithms (SHA and HMAC-SHA),” RFC 4634, July 2006 (TXT). |
[AES] | National Institute of Standards and Technology, “Specification for the Advanced Encryption Standard (AES),” Federal Information Processing Standards (FIPS) 197, November 2001. |
[CMAC] | National Institute of Standards and Technology, “Recommendation for Block Cipher Modes of Operation: The CMAC Mode for Authentication,” Special Publication (SP) 800-38B, May 2005. |
[CBC] | National Institute of Standards and Technology, “Recommendation for Block Cipher Modes of Encryption. Methods and Techniques.,” Special Publication (SP) 800-38A, December 2001. |
[RFC3232] | Reynolds, J., “Assigned Numbers: RFC 1700 is Replaced by an On-line Database,” RFC 3232, January 2002 (TXT). |
[RFC4086] | Eastlake, D., Schiller, J., and S. Crocker, “Randomness Requirements for Security,” BCP 106, RFC 4086, June 2005 (TXT). |
[HM2004] | He, C. and J. Mitchell, “Analysis of the 802.11i 4-Way Handshake),” Proceedings of the Third ACM International Workshop on Wireless Security (WiSe'04), Philadelphia, PA pages 43-50, October 2004. |
TOC |
T. Charles Clancy | |
DoD Laboratory for Telecommunications Sciences | |
8080 Greenmead Drive | |
College Park, MD 20740 | |
USA | |
Email: | clancy@ltsnet.net |
Hannes Tschofenig | |
Nokia Siemens Networks | |
Otto-Hahn-Ring 6 | |
Munich, Bavaria 81739 | |
Germany | |
Email: | Hannes.Tschofenig@nsn.com |
URI: | http://www.tschofenig.com |
TOC |
Copyright © The IETF Trust (2007).
This document is subject to the rights, licenses and restrictions contained in BCP 78, and except as set forth therein, the authors retain all their rights.
This document and the information contained herein are provided on an “AS IS” basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
The IETF takes no position regarding the validity or scope of any Intellectual Property Rights or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; nor does it represent that it has made any independent effort to identify any such rights. Information on the procedures with respect to rights in RFC documents can be found in BCP 78 and BCP 79.
Copies of IPR disclosures made to the IETF Secretariat and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementers or users of this specification can be obtained from the IETF on-line IPR repository at http://www.ietf.org/ipr.
The IETF invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights that may cover technology that may be required to implement this standard. Please address the information to the IETF at ietf-ipr@ietf.org.