mirror of
https://github.com/torvalds/linux.git
synced 2026-09-15 15:01:08 -04:00
[CRYPTO] Remove unused iv field from context structure
The iv field in des_ctx/des3_ede_ctx/serpent_ctx has never been used. This was noticed by Dag Arne Osvik. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a2a892a236
commit
a9df3597fe
@@ -38,12 +38,10 @@
|
||||
#define ROR(d,c,o) ((d) = (d) >> (c) | (d) << (o))
|
||||
|
||||
struct des_ctx {
|
||||
u8 iv[DES_BLOCK_SIZE];
|
||||
u32 expkey[DES_EXPKEY_WORDS];
|
||||
};
|
||||
|
||||
struct des3_ede_ctx {
|
||||
u8 iv[DES_BLOCK_SIZE];
|
||||
u32 expkey[DES3_EDE_EXPKEY_WORDS];
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user