diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-24 14:17:49 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-27 13:35:55 +0100 |
commit | 2731a944f6512b3a2684ebc1d78e2d59c18b06fc (patch) | |
tree | 32359a7fccfba60763f08e9a0cf7a701c95c45f7 /fs/f2fs/f2fs_crypto.h | |
parent | ext4: Use skcipher (diff) | |
download | linux-2731a944f6512b3a2684ebc1d78e2d59c18b06fc.tar.xz linux-2731a944f6512b3a2684ebc1d78e2d59c18b06fc.zip |
f2fs: Use skcipher
This patch replaces uses of ablkcipher with skcipher.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r-- | fs/f2fs/f2fs_crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/f2fs_crypto.h b/fs/f2fs/f2fs_crypto.h index c2c1c2b63b25..ea3d1d7c97f3 100644 --- a/fs/f2fs/f2fs_crypto.h +++ b/fs/f2fs/f2fs_crypto.h @@ -78,7 +78,7 @@ struct f2fs_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[F2FS_KEY_DESCRIPTOR_SIZE]; }; |