aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-08-17 04:04:30 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2008-08-29 01:50:00 -0400
commit5be5e667a9a5d8d5553e009e67bc692d95e5916a (patch)
treea3a64ea1ec9d303a21319ee72579522a5f42a101 /crypto/Makefile
parent1aa4ecd95d8d67d21731a00646326a71295dafa3 (diff)
crypto: skcipher - Move IV generators into their own modules
This patch moves the default IV generators into their own modules in order to break a dependency loop between cryptomgr, rng, and blkcipher. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 59ab5008eb99..256e33e81e3e 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -13,9 +13,9 @@ obj-$(CONFIG_CRYPTO_AEAD) += aead.o
13 13
14crypto_blkcipher-objs := ablkcipher.o 14crypto_blkcipher-objs := ablkcipher.o
15crypto_blkcipher-objs += blkcipher.o 15crypto_blkcipher-objs += blkcipher.o
16crypto_blkcipher-objs += chainiv.o
17crypto_blkcipher-objs += eseqiv.o
18obj-$(CONFIG_CRYPTO_BLKCIPHER) += crypto_blkcipher.o 16obj-$(CONFIG_CRYPTO_BLKCIPHER) += crypto_blkcipher.o
17obj-$(CONFIG_CRYPTO_BLKCIPHER) += chainiv.o
18obj-$(CONFIG_CRYPTO_BLKCIPHER) += eseqiv.o
19obj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o 19obj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o
20 20
21crypto_hash-objs := hash.o 21crypto_hash-objs := hash.o