Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[wpa] Add TKIP backend (legacy RC4-based cryptosystem)
Signed-off-by: Marty Connor <mdc@etherboot.org>
  • Loading branch information
rwcr authored and Marty Connor committed Jan 5, 2010
1 parent 0758111 commit 8106cb1
Show file tree
Hide file tree
Showing 4 changed files with 593 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/config/config_net80211.c
Expand Up @@ -38,3 +38,8 @@ REQUIRE_OBJECT ( wireless_errors );
#ifdef CRYPTO_80211_WEP
REQUIRE_OBJECT ( wep );
#endif

#ifdef CRYPTO_80211_WPA
REQUIRE_OBJECT ( wpa_psk );
REQUIRE_OBJECT ( wpa_tkip );
#endif
2 changes: 1 addition & 1 deletion src/config/general.h
Expand Up @@ -69,7 +69,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*
*/
#define CRYPTO_80211_WEP /* WEP encryption (deprecated and insecure!) */
#define CRYPTO_80211_WPA_PSK /* WPA "Personal" frontend using a passphrase */
#define CRYPTO_80211_WPA /* WPA Personal, authenticating with passphrase */

/*
* Name resolution modules
Expand Down
1 change: 1 addition & 0 deletions src/include/gpxe/errfile.h
Expand Up @@ -163,6 +163,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define ERRFILE_eapol ( ERRFILE_NET | 0x00250000 )
#define ERRFILE_wpa ( ERRFILE_NET | 0x00260000 )
#define ERRFILE_wpa_psk ( ERRFILE_NET | 0x00270000 )
#define ERRFILE_wpa_tkip ( ERRFILE_NET | 0x00280000 )

#define ERRFILE_image ( ERRFILE_IMAGE | 0x00000000 )
#define ERRFILE_elf ( ERRFILE_IMAGE | 0x00010000 )
Expand Down

0 comments on commit 8106cb1

Please sign in to comment.