diff options
author | Herbert Xu | 2016-01-24 21:17:38 +0800 |
---|---|---|
committer | Herbert Xu | 2016-01-27 20:35:55 +0800 |
commit | 3f32a5bee0c8b2d4f25138af21620ae164fdb0ff (patch) | |
tree | c2f98f78bfa3024a1abca9171698e6504425bfe8 /fs/ext4/ext4_crypto.h | |
parent | 9651ddbac81f9c2676a963ce836d2f02ba2fe9c0 (diff) |
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.h | 2 |
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]; }; |