tests: Check DPP3 support in the build for netAccessKey curve changes

These test cases need to be skipped if CONFIG_DPP3=y is not defined in
the build.

Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
Jouni Malinen 2022-03-09 21:26:28 +02:00 committed by Jouni Malinen
parent 2b406eecee
commit 800ae647df
2 changed files with 6 additions and 4 deletions

View file

@ -376,10 +376,11 @@ def run_dpp_qr_code_auth_unicast(dev, apdev, curve, netrole=None, key=None,
configurator=False, conf_curve=None,
net_access_key_curve=None,
conf=None, qr=None, stop_responder=True):
min_ver = 3 if net_access_key_curve else 1
brainpool = (curve and "brainpool" in curve) or \
(conf_curve and "brainpool" in conf_curve)
check_dpp_capab(dev[0], brainpool)
check_dpp_capab(dev[1], brainpool)
check_dpp_capab(dev[0], brainpool, min_ver=min_ver)
check_dpp_capab(dev[1], brainpool, min_ver=min_ver)
if configurator:
conf_id = dev[1].dpp_configurator_add(curve=conf_curve,
net_access_key_curve=net_access_key_curve)

View file

@ -1552,8 +1552,9 @@ def run_sigma_dut_dpp_qr_resp(dev, apdev, conf_idx, chan_list=None,
listen_chan=None, status_query=False,
enrollee_role="STA", cert_path=None,
net_access_key_curve=None):
check_dpp_capab(dev[0])
check_dpp_capab(dev[1])
min_ver = 3 if net_access_key_curve else 1
check_dpp_capab(dev[0], min_ver=min_ver)
check_dpp_capab(dev[1], min_ver=min_ver)
sigma = start_sigma_dut(dev[0].ifname, cert_path=cert_path)
try:
cmd = "dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR"