summaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
authorEric Biggers2019-01-04 05:16:13 +0100
committerHerbert Xu2019-01-11 07:16:57 +0100
commit251b7aea34ba3c4d4fdfa9447695642eb8b8b098 (patch)
tree4e2b2ce50c7f79ac784abfc4332f2301d51cf4e9 /include/crypto
parentcrypto: ofb - fix handling partial blocks and make thread-safe (diff)
downloadkernel-qcow2-linux-251b7aea34ba3c4d4fdfa9447695642eb8b8b098.tar.gz
kernel-qcow2-linux-251b7aea34ba3c4d4fdfa9447695642eb8b8b098.tar.xz
kernel-qcow2-linux-251b7aea34ba3c4d4fdfa9447695642eb8b8b098.zip
crypto: pcbc - remove bogus memcpy()s with src == dest
The memcpy()s in the PCBC implementation use walk->iv as both the source and destination, which has undefined behavior. These memcpy()'s are actually unneeded, because walk->iv is already used to hold the previous plaintext block XOR'd with the previous ciphertext block. Thus, walk->iv is already updated to its final value. So remove the broken and unnecessary memcpy()s. Fixes: 91652be5d1b9 ("[CRYPTO] pcbc: Add Propagated CBC template") Cc: <stable@vger.kernel.org> # v2.6.21+ Cc: David Howells <dhowells@redhat.com> Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
0 files changed, 0 insertions, 0 deletions