tests: Skip fils_sk_pfs_25 with BoringSSL
It looks like BoringSSL has dropped support for group 25 (192-bit Random ECP Group). Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
9626bfbb8d
commit
8f08315737
1 changed files with 3 additions and 0 deletions
|
@ -1369,6 +1369,9 @@ def run_fils_sk_pfs(dev, apdev, group, params):
|
|||
check_erp_capa(dev[0])
|
||||
|
||||
tls = dev[0].request("GET tls_library")
|
||||
if int(group) in [ 25 ]:
|
||||
if not (tls.startswith("OpenSSL") and ("build=OpenSSL 1.0.2" in tls or "build=OpenSSL 1.1" in tls) and ("run=OpenSSL 1.0.2" in tls or "run=OpenSSL 1.1" in tls)):
|
||||
raise HwsimSkip("EC group not supported")
|
||||
if int(group) in [ 27, 28, 29, 30 ]:
|
||||
if not (tls.startswith("OpenSSL") and ("build=OpenSSL 1.0.2" in tls or "build=OpenSSL 1.1" in tls) and ("run=OpenSSL 1.0.2" in tls or "run=OpenSSL 1.1" in tls)):
|
||||
raise HwsimSkip("Brainpool EC group not supported")
|
||||
|
|
Loading…
Reference in a new issue