diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-07-12 13:17:46 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-07-18 17:35:43 +0800 |
commit | da721302a78807e5da2902677fbe116fe052068f (patch) | |
tree | 63fc57ef2e9c3466558c165a2d1289b5e7632b17 /include/crypto/internal | |
parent | ef22871f20e6da987e32719a4ba5e3a9b7d81ae8 (diff) | |
download | blackbird-obmc-linux-da721302a78807e5da2902677fbe116fe052068f.tar.gz blackbird-obmc-linux-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.h | 1 |
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)))); }; |