diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-08-13 11:40:28 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-08-13 11:40:28 +0300 |
commit | 4c9e03e0b25218f89aed3c1cc0cbc69ee7eb91f9 (patch) | |
tree | ab9effaefe09f6db71d44c1508d53fff7d1e5187 /eap_example | |
parent | 6b5c4c3359b5a2b3d6a0db9febc32b66be21b73a (diff) | |
download | external_wpa_supplicant_8_ti-4c9e03e0b25218f89aed3c1cc0cbc69ee7eb91f9.zip external_wpa_supplicant_8_ti-4c9e03e0b25218f89aed3c1cc0cbc69ee7eb91f9.tar.gz external_wpa_supplicant_8_ti-4c9e03e0b25218f89aed3c1cc0cbc69ee7eb91f9.tar.bz2 |
Crypto build cleanup: remove CONFIG_NO_AES_*
Instead of using a defines and conditional building of AES parts,
move the conditional functionality into separate files.
Diffstat (limited to 'eap_example')
-rw-r--r-- | eap_example/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eap_example/Makefile b/eap_example/Makefile index b5a78e3..86e5051 100644 --- a/eap_example/Makefile +++ b/eap_example/Makefile @@ -34,7 +34,13 @@ OBJS_both += ../src/utils/wpabuf.o OBJS_both += ../src/crypto/rc4.o OBJS_both += ../src/crypto/md4-internal.o OBJS_both += ../src/crypto/sha1.o -OBJS_both += ../src/crypto/aes_wrap.o +OBJS_both += ../src/crypto/aes-cbc.o +OBJS_both += ../src/crypto/aes-ctr.o +OBJS_both += ../src/crypto/aes-eax.o +OBJS_both += ../src/crypto/aes-encblock.o +OBJS_both += ../src/crypto/aes-omac1.o +OBJS_both += ../src/crypto/aes-unwrap.o +OBJS_both += ../src/crypto/aes-wrap.o OBJS_both += ../src/crypto/ms_funcs.o ifeq ($(CONFIG_TLS), internal) |