diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-08-13 11:16:21 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-08-13 11:16:21 +0300 |
commit | 381fcbc9f4ee449afc61615b0da6d303cc5f17b1 (patch) | |
tree | 6533fe4037c4eee6b82718b8419b810023e4ae93 /eap_example | |
parent | 18abe7acb016ae3ef35c82e446437359bbd8de2f (diff) | |
download | external_wpa_supplicant_8_ti-381fcbc9f4ee449afc61615b0da6d303cc5f17b1.zip external_wpa_supplicant_8_ti-381fcbc9f4ee449afc61615b0da6d303cc5f17b1.tar.gz external_wpa_supplicant_8_ti-381fcbc9f4ee449afc61615b0da6d303cc5f17b1.tar.bz2 |
Crypto build cleanup: remove CONFIG_NO_AES_DECRYPT
Instead of using a define and conditional building of AES parts,
move the AES decryption routines into a separate file.
Diffstat (limited to 'eap_example')
-rw-r--r-- | eap_example/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eap_example/Makefile b/eap_example/Makefile index 86ea9e1..38a39fd 100644 --- a/eap_example/Makefile +++ b/eap_example/Makefile @@ -40,7 +40,7 @@ OBJS_both += ../src/crypto/ms_funcs.o ifeq ($(CONFIG_TLS), internal) OBJS_both += ../src/crypto/sha1-internal.o OBJS_both += ../src/crypto/des-internal.o -OBJS_both += ../src/crypto/aes-internal.o +OBJS_both += ../src/crypto/aes-internal.o ../src/crypto/aes-internal-dec.o endif SHA256OBJS = ../src/crypto/sha256.o |