mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-06-07 22:07:23 +02:00
sae: prevent groups 21, 25, and 26 from being used
These groups are not working reliably and until that is fixed they should be disabled.
This commit is contained in:
parent
9dce36fe3d
commit
ea9ff2dcaf
@ -169,6 +169,14 @@ static int sae_choose_next_group(struct sae_sm *sm)
|
|||||||
!sm->handshake->ecc_sae_pts[sm->group_retry])
|
!sm->handshake->ecc_sae_pts[sm->group_retry])
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TODO: Groups for P192, P224 and P521 are currently
|
||||||
|
* non-functional with SAE. Until this is fixed we need to
|
||||||
|
* avoid these groups from being used.
|
||||||
|
*/
|
||||||
|
if (group == 21 || group == 25 || group == 26)
|
||||||
|
continue;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user