]> git.baikalelectronics.ru Git - kernel.git/commit
fscrypt: fix the test_dummy_encryption mount option
authorTheodore Ts'o <tytso@mit.edu>
Wed, 28 Dec 2016 00:46:27 +0000 (19:46 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 28 Dec 2016 00:46:27 +0000 (19:46 -0500)
commitfb5a4bea65514748d74d0d4744e6238c5109a280
tree636b0df413a417e6bb976510df150e0edae9ae8f
parent4184c0ec1ade2b73b58c41e1084d8b22fc53d09b
fscrypt: fix the test_dummy_encryption mount option

Commit 8a006845e8940: "crypto: xts - Convert to skcipher" now fails
the setkey operation if the AES key is the same as the tweak key.
Previously this check was only done if FIPS mode is enabled.  Now this
check is also done if weak key checking was requested.  This is
reasonable, but since we were using the dummy key which was a constant
series of 0x42 bytes, it now caused dummy encrpyption test mode to
fail.

Fix this by using 0x42... and 0x24... for the two keys, so they are
different.

Fixes: 8a006845e89405bd4d4d417bdc2a1c1ac6f10e6b
Cc: stable@vger.kernel.org
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/crypto/keyinfo.c