mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
EAP-pwd peer: Comment out MS password hash if CONFIG_FIPS=y
The needed hash functions are not available in FIPS mode. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
cd94f0d159
commit
4549607b04
@ -288,6 +288,12 @@ eap_pwd_perform_id_exchange(struct eap_sm *sm, struct eap_pwd_data *data,
|
||||
}
|
||||
|
||||
if (id->prep == EAP_PWD_PREP_MS) {
|
||||
#ifdef CONFIG_FIPS
|
||||
wpa_printf(MSG_ERROR,
|
||||
"EAP-PWD (peer): MS password hash not supported in FIPS mode");
|
||||
eap_pwd_state(data, FAILURE);
|
||||
return;
|
||||
#else /* CONFIG_FIPS */
|
||||
if (data->password_hash) {
|
||||
res = hash_nt_password_hash(data->password, pwhashhash);
|
||||
} else {
|
||||
@ -307,6 +313,7 @@ eap_pwd_perform_id_exchange(struct eap_sm *sm, struct eap_pwd_data *data,
|
||||
|
||||
password = pwhashhash;
|
||||
password_len = sizeof(pwhashhash);
|
||||
#endif /* CONFIG_FIPS */
|
||||
} else {
|
||||
password = data->password;
|
||||
password_len = data->password_len;
|
||||
|
Loading…
Reference in New Issue
Block a user