rsn: Allow WPA1 TKIP EAPOL-Key under FIPS with PSA MD5#144
Closed
krish2718 wants to merge 1 commit into
Closed
Conversation
Zephyr hostap builds with CONFIG_FIPS, which strips HMAC-MD5 and RC4 call sites even when the PSA backend provides them. WPA-PSK (WPA1) APs require EAPOL-Key descriptor version 1: HMAC-MD5 for the 4-way MIC and RC4 for group-key unwrap. That breaks association with legacy and QuickTrack WPA-PSK test APs. When CONFIG_PSA_WANT_ALG_MD5 is set (personal STA crypto backends that explicitly enable legacy TKIP interop), allow the ver=1 MIC and RC4 key data paths. Builds without PSA MD5 keep the existing FIPS blocks. Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no> Assisted-by: Cursor:Auto
Collaborator
Author
|
Closing this as fix is now purely contained in the Zephyr hostap module shim (zephyrproject-rtos/zephyr#111137) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Zephyr hostap builds with CONFIG_FIPS, which strips HMAC-MD5 and RC4 call sites even when the PSA backend provides them. WPA-PSK (WPA1) APs require EAPOL-Key descriptor version 1: HMAC-MD5 for the 4-way MIC and RC4 for group-key unwrap. That breaks association with legacy and QuickTrack WPA-PSK test APs.
When CONFIG_PSA_WANT_ALG_MD5 is set (personal STA crypto backends that explicitly enable legacy TKIP interop), allow the ver=1 MIC and RC4 key data paths. Builds without PSA MD5 keep the existing FIPS blocks.
Assisted-by: Cursor:Auto