unit: Excercise eapol_verify_ptk_4_of_4

This commit is contained in:
Denis Kenzior 2015-02-13 18:38:29 -06:00
parent 85e54c66fe
commit a1d00805a4
1 changed files with 5 additions and 0 deletions

View File

@ -500,6 +500,7 @@ static void eapol_4way_test(const void *data)
const struct eapol_key *step1;
const struct eapol_key *step2;
const struct eapol_key *step3;
const struct eapol_key *step4;
step1 = eapol_verify_ptk_1_of_4(eapol_key_data_3,
sizeof(eapol_key_data_3));
@ -546,6 +547,10 @@ static void eapol_4way_test(const void *data)
assert(step3);
assert(!memcmp(anonce, step3->key_nonce, sizeof(step3->key_nonce)));
step4 = eapol_verify_ptk_4_of_4(eapol_key_data_6,
sizeof(eapol_key_data_6));
assert(step4);
l_free(ptk);
}