mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-08 14:23:19 +00: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:
parent
a2a892a236
commit
a9df3597fe
@ -38,12 +38,10 @@
|
|||||||
#define ROR(d,c,o) ((d) = (d) >> (c) | (d) << (o))
|
#define ROR(d,c,o) ((d) = (d) >> (c) | (d) << (o))
|
||||||
|
|
||||||
struct des_ctx {
|
struct des_ctx {
|
||||||
u8 iv[DES_BLOCK_SIZE];
|
|
||||||
u32 expkey[DES_EXPKEY_WORDS];
|
u32 expkey[DES_EXPKEY_WORDS];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct des3_ede_ctx {
|
struct des3_ede_ctx {
|
||||||
u8 iv[DES_BLOCK_SIZE];
|
|
||||||
u32 expkey[DES3_EDE_EXPKEY_WORDS];
|
u32 expkey[DES3_EDE_EXPKEY_WORDS];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -210,7 +210,6 @@
|
|||||||
x4 ^= x2;
|
x4 ^= x2;
|
||||||
|
|
||||||
struct serpent_ctx {
|
struct serpent_ctx {
|
||||||
u8 iv[SERPENT_BLOCK_SIZE];
|
|
||||||
u32 expkey[SERPENT_EXPKEY_WORDS];
|
u32 expkey[SERPENT_EXPKEY_WORDS];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user