diff options
author | Jouni Malinen <j@w1.fi> | 2009-08-16 17:13:14 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-08-16 17:13:14 (GMT) |
commit | ac73690c06e8c05a9e36483b104a431c26171512 (patch) | |
tree | ed7f06db4091c9f1c71fed7e746f9257fd283c99 /src/eapol_supp/eapol_supp_sm.c | |
parent | 8ef168311557982dd6b88cfcf26453aeb4dad6ac (diff) | |
download | hostap-ac73690c06e8c05a9e36483b104a431c26171512.zip hostap-ac73690c06e8c05a9e36483b104a431c26171512.tar.gz hostap-ac73690c06e8c05a9e36483b104a431c26171512.tar.bz2 |
Move RC4 into crypto.h as a replaceable crypto function
This allows crypto library wrappers to override the internal RC4
implementation in the same way as can already be done for other crypto
algorithms.
Diffstat (limited to 'src/eapol_supp/eapol_supp_sm.c')
-rw-r--r-- | src/eapol_supp/eapol_supp_sm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eapol_supp/eapol_supp_sm.c b/src/eapol_supp/eapol_supp_sm.c index 58e6221..19d57b9 100644 --- a/src/eapol_supp/eapol_supp_sm.c +++ b/src/eapol_supp/eapol_supp_sm.c @@ -20,7 +20,7 @@ #include "eloop.h" #include "eapol_common.h" #include "md5.h" -#include "rc4.h" +#include "crypto.h" #include "state_machine.h" #include "wpabuf.h" |