aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/geniv.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-11-17crypto: aead - Split out geniv into its own moduleHerbert Xu1-0/+176
If aead is built as a module along with cryptomgr, it creates a dependency loop due to the dependency chain aead => crypto_null => cryptomgr => aead. This is due to the presence of the AEAD geniv code. This code is not really part of the AEAD API but simply support code for IV generators such as seqiv. This patch moves the geniv code into its own module thus breaking the dependency loop. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>