summaryrefslogtreecommitdiff
path: root/crypto/skcipher.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2019-12-30 13:41:15 -0600
committerHerbert Xu <herbert@gondor.apana.org.au>2020-01-09 11:30:51 +0800
commitaf26a3506ddba62a884f142c9c8263b92cdeb51c (patch)
tree64db8823fb240f188d7213c3451a5b105ddb9422 /crypto/skcipher.c
parente4f1d787e0ab800c1d0ad6c45e5df2ec3ad98fe1 (diff)
downloadlinux-crypto-af26a3506ddba62a884f142c9c8263b92cdeb51c.tar.gz
linux-crypto-af26a3506ddba62a884f142c9c8263b92cdeb51c.zip
crypto: skcipher - remove skcipher_walk_aead()
skcipher_walk_aead() is unused and is identical to skcipher_walk_aead_encrypt(), so remove it. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/skcipher.c')
-rw-r--r--crypto/skcipher.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/crypto/skcipher.c b/crypto/skcipher.c
index 37adb71f..457e4ddc 100644
--- a/crypto/skcipher.c
+++ b/crypto/skcipher.c
@@ -549,15 +549,6 @@ static int skcipher_walk_aead_common(struct skcipher_walk *walk,
return err;
}
-int skcipher_walk_aead(struct skcipher_walk *walk, struct aead_request *req,
- bool atomic)
-{
- walk->total = req->cryptlen;
-
- return skcipher_walk_aead_common(walk, req, atomic);
-}
-EXPORT_SYMBOL_GPL(skcipher_walk_aead);
-
int skcipher_walk_aead_encrypt(struct skcipher_walk *walk,
struct aead_request *req, bool atomic)
{