From: Ilan Peer Date: Thu, 8 Apr 2021 09:06:21 +0000 (+0300) Subject: tests: Add coverage for PASN authentication with KDK derivation X-Git-Tag: hostap_2_10~316 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab7109f007fa64641681f49020bcecabafdaf044;p=thirdparty%2Fhostap.git tests: Add coverage for PASN authentication with KDK derivation Signed-off-by: Ilan Peer --- diff --git a/tests/hwsim/test_pasn.py b/tests/hwsim/test_pasn.py index bf9343833..150a21d01 100644 --- a/tests/hwsim/test_pasn.py +++ b/tests/hwsim/test_pasn.py @@ -803,3 +803,20 @@ def test_pasn_comeback_multi(dev, apdev): raise Exception("PASN: unexpected status") check_pasn_ptk(dev[i], hapd, "CCMP") + +def test_pasn_kdk_derivation(dev, apdev): + """PASN authentication with forced KDK derivation""" + check_pasn_capab(dev[0]) + + params = pasn_ap_params("PASN", "CCMP", "19") + hapd0 = start_pasn_ap(apdev[0], params) + + params['force_kdk_derivation'] = "1" + hapd1 = start_pasn_ap(apdev[1], params) + + try: + check_pasn_akmp_cipher(dev[0], hapd0, "PASN", "CCMP") + dev[0].set("force_kdk_derivation", "1") + check_pasn_akmp_cipher(dev[0], hapd1, "PASN", "CCMP") + finally: + dev[0].set("force_kdk_derivation", "0")