mirror of
https://github.com/ipxe/ipxe
synced 2025-12-21 12:30:20 +03:00
[802.11] Add support for WEP-protected networks
WEP is a highly flawed cryptosystem, barely better than no encryption at all, but many people still use it. It does have the advantage of being very simple and small in code size. Signed-off-by: Marty Connor <mdc@etherboot.org>
This commit is contained in:
committed by
Marty Connor
parent
1327a787eb
commit
01b4f52089
@@ -31,3 +31,10 @@ REQUIRE_OBJECT ( iwmgmt_cmd );
|
||||
REQUIRE_OBJECT ( wireless_errors );
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Drag in 802.11 cryptosystems and handshaking protocols
|
||||
*
|
||||
*/
|
||||
#ifdef CRYPTO_80211_WEP
|
||||
REQUIRE_OBJECT ( wep );
|
||||
#endif
|
||||
|
||||
@@ -64,6 +64,12 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||
//#undef SANBOOT_PROTO_AOE /* AoE protocol */
|
||||
//#undef SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
|
||||
|
||||
/*
|
||||
* 802.11 cryptosystems and handshaking protocols
|
||||
*
|
||||
*/
|
||||
#define CRYPTO_80211_WEP /* WEP encryption (deprecated and insecure!) */
|
||||
|
||||
/*
|
||||
* Name resolution modules
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user