mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-25 08:02:38 +01:00
eapol: Rearrange data structure members
The order follows the rough order of initialization, as information becomes available from the calling code or via steps of the 4-way handshake.
This commit is contained in:
parent
31ce761469
commit
12d529eddb
10
src/eapol.c
10
src/eapol.c
@ -426,15 +426,15 @@ struct eapol_key *eapol_create_ptk_4_of_4(
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct eapol_sm {
|
struct eapol_sm {
|
||||||
uint8_t pmk[32];
|
|
||||||
uint64_t replay_counter;
|
|
||||||
uint8_t sta_addr[6];
|
uint8_t sta_addr[6];
|
||||||
uint8_t snonce[32];
|
|
||||||
uint8_t aa_addr[6];
|
uint8_t aa_addr[6];
|
||||||
uint8_t anonce[32];
|
|
||||||
uint8_t ptk[64];
|
|
||||||
uint8_t *ap_rsn;
|
uint8_t *ap_rsn;
|
||||||
uint8_t *own_rsn;
|
uint8_t *own_rsn;
|
||||||
|
uint8_t pmk[32];
|
||||||
|
uint64_t replay_counter;
|
||||||
|
uint8_t snonce[32];
|
||||||
|
uint8_t anonce[32];
|
||||||
|
uint8_t ptk[64];
|
||||||
bool have_snonce:1;
|
bool have_snonce:1;
|
||||||
bool have_replay:1;
|
bool have_replay:1;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user