diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-25 05:29:33 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-27 15:36:18 +0300 |
commit | 3095e8e366b471f3bcdbf21c9c72a45718ff8756 (patch) | |
tree | d0eeca59d06f37bbe1e4934e694acf9b4463f232 /fs/ecryptfs/main.c | |
parent | cf80e0e47e0e7a8994dfadefec0e1395c622817a (diff) | |
download | linux-3095e8e366b471f3bcdbf21c9c72a45718ff8756.tar.xz |
eCryptfs: Use skcipher and shash
This patch replaces uses of ablkcipher and blkcipher with skcipher,
and the long obsolete hash interface with shash.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'fs/ecryptfs/main.c')
-rw-r--r-- | fs/ecryptfs/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index e25b6b06bacf..8b0b4a73116d 100644 --- a/fs/ecryptfs/main.c +++ b/fs/ecryptfs/main.c @@ -29,7 +29,6 @@ #include <linux/module.h> #include <linux/namei.h> #include <linux/skbuff.h> -#include <linux/crypto.h> #include <linux/mount.h> #include <linux/pagemap.h> #include <linux/key.h> |