diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-12-10 09:50:36 +1100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-10 10:18:57 -0800 |
commit | 3263263f7091eccab6fdc23f28f09b17c0466629 (patch) | |
tree | 72880f0ebb001c64650e2f44e0378c3ea7054a32 /drivers/md/Kconfig | |
parent | 0258736a0a2cde8ab30725b601aeca4cf8bc93ab (diff) | |
download | linux-3.10-3263263f7091eccab6fdc23f28f09b17c0466629.tar.gz linux-3.10-3263263f7091eccab6fdc23f28f09b17c0466629.tar.bz2 linux-3.10-3263263f7091eccab6fdc23f28f09b17c0466629.zip |
[CRYPTO] dm-crypt: Select CRYPTO_CBC
As CBC is the default chaining method for cryptoloop, we should select
it from cryptoloop to ease the transition. Spotted by Rene Herman.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/Kconfig')
-rw-r--r-- | drivers/md/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index c92c1521546..4540ade6b6b 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig @@ -215,6 +215,7 @@ config DM_CRYPT tristate "Crypt target support" depends on BLK_DEV_DM && EXPERIMENTAL select CRYPTO + select CRYPTO_CBC ---help--- This device-mapper target allows you to create a device that transparently encrypts the data on it. You'll need to activate |