summaryrefslogtreecommitdiff
path: root/fs/ext4/ext4_crypto.h
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2016-01-24 16:17:38 +0300
committerHerbert Xu <herbert@gondor.apana.org.au>2016-01-27 15:35:55 +0300
commit3f32a5bee0c8b2d4f25138af21620ae164fdb0ff (patch)
treec2f98f78bfa3024a1abca9171698e6504425bfe8 /fs/ext4/ext4_crypto.h
parent9651ddbac81f9c2676a963ce836d2f02ba2fe9c0 (diff)
downloadlinux-3f32a5bee0c8b2d4f25138af21620ae164fdb0ff.tar.xz
ext4: Use skcipher
This patch replaces uses of ablkcipher with skcipher. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'fs/ext4/ext4_crypto.h')
-rw-r--r--fs/ext4/ext4_crypto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ext4_crypto.h b/fs/ext4/ext4_crypto.h
index ac7d4e813796..1f73c29717e1 100644
--- a/fs/ext4/ext4_crypto.h
+++ b/fs/ext4/ext4_crypto.h
@@ -77,7 +77,7 @@ struct ext4_crypt_info {
char ci_data_mode;
char ci_filename_mode;
char ci_flags;
- struct crypto_ablkcipher *ci_ctfm;
+ struct crypto_skcipher *ci_ctfm;
struct key *ci_keyring_key;
char ci_master_key[EXT4_KEY_DESCRIPTOR_SIZE];
};