I am playing around with WEP(Shared key authentication) challenge/response mechanism at the moment and I hope someone could help me out.
- The AP sends a challenge text to the STA. The challenge text is 128 bytes
- The STA encrypts the challenge and sends it back to the AP. This is 136 bytes (data) in wireshark.
My Question:
Can someone tell me the make-up of the 136 byte data challenge response and why it is this size.
Why is it not Enc([challengetext (128)] + [icv(4)]) = 132 bytes?
Thanks.
You forgot the 4 bytes of the IV in the beginning.