1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 01:43:08 +02:00

A WPA(2) pre-shared key can either be specified as a 8 to 63 character passphrase which is hashed to a 256 bit key together with the SSID, or a 64 character hex key. Currently, the latter option is supported by the broadcom wifi type, but no by hostapd. The attached patch allows using a 64 character hex key. (#3935)

Signed-off-by: thomas@archlinux.org


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12394 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2008-08-26 17:19:00 +00:00
parent f814b55b45
commit 833c6d3623

View File

@ -39,7 +39,11 @@ hostapd_setup_vif() {
case "$enc" in
*psk*|*PSK*)
config_get psk "$vif" key
append hostapd_cfg "wpa_passphrase=$psk" "$N"
if [ ${#psk} -eq 64 ]; then
append hostapd_cfg "wpa_psk=$psk" "$N"
else
append hostapd_cfg "wpa_passphrase=$psk" "$N"
fi
;;
*wpa*|*WPA*)
# required fields? formats?