wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Functions
eap_sake_common.c File Reference

EAP server/peer: EAP-SAKE shared routines. More...

#include "includes.h"
#include "common.h"
#include "wpabuf.h"
#include "crypto/sha1.h"
#include "eap_defs.h"
#include "eap_sake_common.h"

Functions

int eap_sake_parse_attributes (const u8 *buf, size_t len, struct eap_sake_parse_attr *attr)
 Parse EAP-SAKE attributes. More...
 
void eap_sake_derive_keys (const u8 *root_secret_a, const u8 *root_secret_b, const u8 *rand_s, const u8 *rand_p, u8 *tek, u8 *msk, u8 *emsk)
 Derive EAP-SAKE keys. More...
 
int eap_sake_compute_mic (const u8 *tek_auth, const u8 *rand_s, const u8 *rand_p, const u8 *serverid, size_t serverid_len, const u8 *peerid, size_t peerid_len, int peer, const u8 *eap, size_t eap_len, const u8 *mic_pos, u8 *mic)
 Compute EAP-SAKE MIC for an EAP packet. More...
 
void eap_sake_add_attr (struct wpabuf *buf, u8 type, const u8 *data, size_t len)
 

Detailed Description

EAP server/peer: EAP-SAKE shared routines.

Function Documentation

int eap_sake_compute_mic ( const u8 *  tek_auth,
const u8 *  rand_s,
const u8 *  rand_p,
const u8 *  serverid,
size_t  serverid_len,
const u8 *  peerid,
size_t  peerid_len,
int  peer,
const u8 *  eap,
size_t  eap_len,
const u8 *  mic_pos,
u8 *  mic 
)

Compute EAP-SAKE MIC for an EAP packet.

Parameters
tek_auth16-byte TEK-Auth
rand_s16-byte RAND_S
rand_p16-byte RAND_P
serveridSERVERID
serverid_lenSERVERID length
peeridPEERID
peerid_lenPEERID length
peerMIC calculation for 0 = Server, 1 = Peer message
eapEAP packet
eap_lenEAP packet length
mic_posMIC position in the EAP packet (must be [eap .. eap + eap_len])
micBuffer for the computed 16-byte MIC
void eap_sake_derive_keys ( const u8 *  root_secret_a,
const u8 *  root_secret_b,
const u8 *  rand_s,
const u8 *  rand_p,
u8 *  tek,
u8 *  msk,
u8 *  emsk 
)

Derive EAP-SAKE keys.

Parameters
root_secret_a16-byte Root-Secret-A
root_secret_b16-byte Root-Secret-B
rand_s16-byte RAND_S
rand_p16-byte RAND_P
tekBuffer for Temporary EAK Keys (TEK-Auth[16] | TEK-Cipher[16])
mskBuffer for 64-byte MSK
emskBuffer for 64-byte EMSK

This function derives EAP-SAKE keys as defined in RFC 4763, section 3.2.6.

int eap_sake_parse_attributes ( const u8 *  buf,
size_t  len,
struct eap_sake_parse_attr attr 
)

Parse EAP-SAKE attributes.

Parameters
bufPacket payload (starting with the first attribute)
lenPayload length
attrStructure to be filled with found attributes
Returns
0 on success or -1 on failure