From ea206efb69d1f64bf5ea0754108d551b8ff551a4 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 14 Aug 2005 22:51:51 +0000 Subject: Correctly deterimine key size --- usr/local/www/interfaces_wlan.inc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'usr/local/www/interfaces_wlan.inc') diff --git a/usr/local/www/interfaces_wlan.inc b/usr/local/www/interfaces_wlan.inc index 08dee1a..224e319 100755 --- a/usr/local/www/interfaces_wlan.inc +++ b/usr/local/www/interfaces_wlan.inc @@ -76,9 +76,15 @@ function wireless_config_post() { /* loop through keys and enforce size */ for ($i = 1; $i <= 4; $i++) { if ($_POST['key' . $i]) { - if(strlen($_POST['key' . $i]) <> 40 and strlen($_POST['key' . $i]) <> 104) { - $input_errors[] = "Invalid wep key size. Sizes should be 40 (64) bit keys or 104 (128) bit."; - } + if(strlen($_POST['key' . $i]) == 5) + continue; + if(strlen($_POST['key' . $i]) == 10) + continue; + if(strlen($_POST['key' . $i]) == 13) + continue; + if(strlen($_POST['key' . $i]) == 26) + continue; + $input_errors[] = "Invalid wep key size. Sizes should be 40 (64) bit keys or 104 (128) bit."; } } -- cgit v1.1