From 43a191b89095e28874f436a5af04afa48a5d784f Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Mon, 8 Jun 2020 17:09:56 +0300 Subject: [PATCH] tests: Remove too short SAE-PK passwords This is in preparation of implementation changes to check SAE-PK password length more accurately based on the Sec value. Signed-off-by: Jouni Malinen --- src/common/common_module_tests.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common/common_module_tests.c b/src/common/common_module_tests.c index 8a7d9fe25..b6e714f68 100644 --- a/src/common/common_module_tests.c +++ b/src/common/common_module_tests.c @@ -563,9 +563,6 @@ static int sae_pk_tests(void) { "aaaa-aaaa-aaaa", (u8 *) "\x00\x00\x00\x00\x00\x00\x00\x00" }, { "aaaa-aaaa-aa", (u8 *) "\x00\x00\x00\x00\x00\x00\x00" }, { "aaaa-aaaa", (u8 *) "\x00\x00\x00\x00\x00" }, - { "7777-7777", (u8 *) "\xff\xff\xff\xff\xff" }, - { "7777-7777-7", (u8 *) "\xff\xff\xff\xff\xff\xf8" }, - { "7777-7777-77", (u8 *) "\xff\xff\xff\xff\xff\xff\xc0" }, { "7777-7777-777", (u8 *) "\xff\xff\xff\xff\xff\xff\xfe" }, { "7777-7777-7777", (u8 *) "\xff\xff\xff\xff\xff\xff\xff\xf0" }, { "7777-7777-7777-7", -- 2.47.3