diff options
author | Bob Copeland <me@bobcopeland.com> | 2014-09-01 04:23:28 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-10-19 09:43:38 (GMT) |
commit | f7072600be1ed59bb904b850d1ae92f8e8b70401 (patch) | |
tree | acef210d8cd9dcb229a43292c1132898a391d959 /wpa_supplicant/Makefile | |
parent | 6293f9ed079583842d508290b69aa911b497b9ff (diff) | |
download | hostap-f7072600be1ed59bb904b850d1ae92f8e8b70401.zip hostap-f7072600be1ed59bb904b850d1ae92f8e8b70401.tar.gz hostap-f7072600be1ed59bb904b850d1ae92f8e8b70401.tar.bz2 |
Implement RFC 5297 AES-SIV
Add an implementation of Synthetic Initialization Vector (SIV)
Authenticated Encryption Using the Advanced Encryption Standard (AES).
This mode of AES is used to protect peering frames when using
the authenticated mesh peering exchange.
Signed-off-by: Javier Lopez <jlopex@gmail.com>
Signed-off-by: Jason Mobarak <x@jason.mobarak.name>
Signed-off-by: Bob Copeland <me@bobcopeland.com>
Diffstat (limited to 'wpa_supplicant/Makefile')
-rw-r--r-- | wpa_supplicant/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 7851fa3..7a68246 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -1145,6 +1145,9 @@ else AESOBJS += ../src/crypto/aes-omac1.o endif endif +ifdef NEED_AES_SIV +AESOBJS += ../src/crypto/aes-siv.o +endif ifdef NEED_AES_WRAP NEED_AES_ENC=y AESOBJS += ../src/crypto/aes-wrap.o |