3
0
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:
James Prestwood 2025-05-28 12:27:59 -07:00 committed by Denis Kenzior
parent 9dce36fe3d
commit ea9ff2dcaf

View File

@ -169,6 +169,14 @@ static int sae_choose_next_group(struct sae_sm *sm)
!sm->handshake->ecc_sae_pts[sm->group_retry])
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;
}