summaryrefslogtreecommitdiff
path: root/xutils.h
AgeCommit message (Expand)AuthorFilesLines
2013-05-12xutils: Make set_nonblocking() voidTobias Klauser1-1/+1
2013-03-15all: import netsniff-ng 0.5.8-rc0 sourceDaniel Borkmann1-0/+94
e>
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2017-02-06 10:49:28 +0000
committerJohannes Berg <johannes.berg@intel.com>2017-02-08 09:19:33 +0100
commit26717828b75dd5c46e97f7f4a9b937d038bb2852 (patch)
treecb192493dd8bb60c52260932877cd7e23de96a81
parentfe8de3da13bdbcbe8b583a3bbadf677da0f04f83 (diff)
mac80211: aes-cmac: switch to shash CMAC driver
Instead of open coding the CMAC algorithm in the mac80211 driver using byte wide xors and calls into the crypto layer for each block of data, instantiate a cmac(aes) synchronous hash and pass all the data into it directly. This does not only simplify the code, it also allows the use of more efficient and more secure implementations, especially on platforms where SIMD ciphers have a considerable setup cost. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat
-rw-r--r--net/mac80211/aes_cmac.c126
-rw-r--r--net/mac80211/aes_cmac.h11
-rw-r--r--net/mac80211/key.h2
3 files changed, 32 insertions, 107 deletions
diff --git a/net/mac80211/aes_cmac.c b/net/mac80211/aes_cmac.c