aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto/internal
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2016-07-12 13:17:46 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-07-18 17:35:43 +0800
commitda721302a78807e5da2902677fbe116fe052068f (patch)
tree63fc57ef2e9c3466558c165a2d1289b5e7632b17 /include/crypto/internal
parentcrypto: seqiv - Use skcipher (diff)
downloadlinux-dev-da721302a78807e5da2902677fbe116fe052068f.tar.xz
linux-dev-da721302a78807e5da2902677fbe116fe052068f.zip
crypto: aead - Remove blkcipher null for IV generators
The blkcipher null object is no longer used and can now be removed. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto/internal')
-rw-r--r--include/crypto/internal/geniv.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/crypto/internal/geniv.h b/include/crypto/internal/geniv.h
index e8447c9c14e6..2bcfb931bc5b 100644
--- a/include/crypto/internal/geniv.h
+++ b/include/crypto/internal/geniv.h
@@ -20,7 +20,6 @@
struct aead_geniv_ctx {
spinlock_t lock;
struct crypto_aead *child;
- struct crypto_blkcipher *null;
struct crypto_skcipher *sknull;
u8 salt[] __attribute__ ((aligned(__alignof__(u32))));
};