diff options
author | Joshua Oreman <oremanj@rwcr.net> | 2009-06-24 00:37:52 -0700 |
---|---|---|
committer | Marty Connor <mdc@etherboot.org> | 2010-01-05 09:14:08 -0500 |
commit | 01b4f520893b369da1fffd148dfa4b882ea4f0e5 (patch) | |
tree | 01718afbb55cfa117105187c24d3759d811e8ab4 /src/config/general.h | |
parent | 1327a787eb5c7e3563b23bf689455fa887f3e3ed (diff) | |
download | ipxe-01b4f520893b369da1fffd148dfa4b882ea4f0e5.tar.gz |
[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>
Diffstat (limited to 'src/config/general.h')
-rw-r--r-- | src/config/general.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config/general.h b/src/config/general.h index 0acc00d3d..c0370ca40 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -65,6 +65,12 @@ FILE_LICENCE ( GPL2_OR_LATER ); //#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 * */ |