mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-26 17:28:29 -05:00
18 lines
343 B
C
18 lines
343 B
C
|
/*
|
||
|
* Simultaneous authentication of equals
|
||
|
* Copyright (c) 2012, Jouni Malinen <j@w1.fi>
|
||
|
*
|
||
|
* This software may be distributed under the terms of the BSD license.
|
||
|
* See README for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef SAE_H
|
||
|
#define SAE_H
|
||
|
|
||
|
struct sae_data {
|
||
|
enum { SAE_INIT, SAE_COMMIT, SAE_CONFIRM } state;
|
||
|
u16 send_confirm;
|
||
|
};
|
||
|
|
||
|
#endif /* SAE_H */
|