EAP-pwd server: Add support for salted password databases
These changes add support for salted password databases to EAP-pwd per RFC 8146. This commits introduces the framework for enabling this and the salting mechanisms based on SHA-1, SHA256, and SHA512 hash algorithms. Signed-off-by: Dan Harkins <dharkins@lounge.org>
This commit is contained in:
parent
a8712ce5b3
commit
d52ead3db7
8 changed files with 167 additions and 6 deletions
|
@ -415,6 +415,7 @@ void hostapd_config_free_eap_user(struct hostapd_eap_user *user)
|
|||
hostapd_config_free_radius_attr(user->accept_attr);
|
||||
os_free(user->identity);
|
||||
bin_clear_free(user->password, user->password_len);
|
||||
bin_clear_free(user->salt, user->salt_len);
|
||||
os_free(user);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue