diff options
author | Ahmad Fatoum <a.fatoum@pengutronix.de> | 2021-01-22 09:43:21 +0100 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2021-02-03 16:13:00 +0100 |
commit | 363880c4eb36bd2a70104c165fbc7a6d49858a91 (patch) | |
tree | a926470ab7bf9193df4aa1e54527645e3ef47a7f /drivers/md/Kconfig | |
parent | dm crypt: replaced #if defined with IS_ENABLED (diff) | |
download | linux-363880c4eb36bd2a70104c165fbc7a6d49858a91.tar.xz linux-363880c4eb36bd2a70104c165fbc7a6d49858a91.zip |
dm crypt: support using trusted keys
Commit 27f5411a718c ("dm crypt: support using encrypted keys") extended
dm-crypt to allow use of "encrypted" keys along with "user" and "logon".
Along the same lines, teach dm-crypt to support "trusted" keys as well.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
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 9e44c09f6410..f2014385d48b 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig @@ -270,6 +270,7 @@ config DM_CRYPT tristate "Crypt target support" depends on BLK_DEV_DM depends on (ENCRYPTED_KEYS || ENCRYPTED_KEYS=n) + depends on (TRUSTED_KEYS || TRUSTED_KEYS=n) select CRYPTO select CRYPTO_CBC select CRYPTO_ESSIV |