lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20200512233251.118314-5-ebiggers@kernel.org> Date: Tue, 12 May 2020 16:32:51 -0700 From: Eric Biggers <ebiggers@...nel.org> To: linux-fscrypt@...r.kernel.org Cc: linux-ext4@...r.kernel.org, linux-f2fs-devel@...ts.sourceforge.net, Jaegeuk Kim <jaegeuk@...nel.org>, "Theodore Y . Ts'o" <tytso@....edu>, Daniel Rosenberg <drosen@...gle.com> Subject: [PATCH 4/4] fscrypt: make test_dummy_encryption use v2 by default From: Eric Biggers <ebiggers@...gle.com> Since v1 encryption policies are deprecated, make test_dummy_encryption test v2 policies by default. Note that this causes ext4/023 and ext4/028 to start failing due to known bugs in those tests (see previous commit). Signed-off-by: Eric Biggers <ebiggers@...gle.com> --- fs/crypto/policy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/crypto/policy.c b/fs/crypto/policy.c index ca0ee337c9627f..cb7fd8f7f0eca1 100644 --- a/fs/crypto/policy.c +++ b/fs/crypto/policy.c @@ -632,7 +632,7 @@ int fscrypt_set_test_dummy_encryption(struct super_block *sb, const substring_t *arg, struct fscrypt_dummy_context *dummy_ctx) { - const char *argstr = "v1"; + const char *argstr = "v2"; const char *argstr_to_free = NULL; struct fscrypt_key_specifier key_spec = { 0 }; int version; -- 2.26.2
Powered by blists - more mailing lists