]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Use a valid key exchange value in eap_proto_ikev2
authorSean Parkinson <sean@wolfssl.com>
Thu, 29 Mar 2018 04:55:55 +0000 (14:55 +1000)
committerJouni Malinen <j@w1.fi>
Tue, 1 May 2018 21:37:38 +0000 (00:37 +0300)
Signed-off-by: Sean Parkinson <sean@wolfssl.com>
tests/hwsim/test_eap_proto.py

index d97a6f15e33ee4e2ccbc9fd6188c5f7bd99fb7f4..2ff67430c53a7b72802085dd93fa7df8c0c8e0ed 100644 (file)
@@ -5124,7 +5124,7 @@ def test_eap_proto_ikev2(dev, apdev):
 
         def build_ke(next=0):
             ke = struct.pack(">BBHHH", next, 0, 4 + 4 + 192, 5, 0)
-            ke += 192*'\x00'
+            ke += 191*'\x00'+'\x02'
             return ke
 
         idx += 1