summaryrefslogtreecommitdiff
path: root/crypto/authencesn.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2016-10-28 09:52:19 -0700
committerHerbert Xu <herbert@gondor.apana.org.au>2016-11-01 08:37:17 +0800
commitbb98368a8fb13c0ddbfcd29a6b09d33135aed1c0 (patch)
tree45f3f3bd77b6b2fd2dc5e23ad53ed0650adf0de7 /crypto/authencesn.c
parent93333f1378165d078517a8328076f7b90f1fa8b7 (diff)
downloadlinux-crypto-bb98368a8fb13c0ddbfcd29a6b09d33135aed1c0.tar.gz
linux-crypto-bb98368a8fb13c0ddbfcd29a6b09d33135aed1c0.zip
crypto: skcipher - Get rid of crypto_spawn_skcipher2()
Since commit 142ab044a5c4 ("crypto: skcipher - Remove top-level givcipher interface"), crypto_spawn_skcipher2() and crypto_spawn_skcipher() are equivalent. So switch callers of crypto_spawn_skcipher2() to crypto_spawn_skcipher() and remove it. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/authencesn.c')
-rw-r--r--crypto/authencesn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/authencesn.c b/crypto/authencesn.c
index bad6ef46..6f8f6b86 100644
--- a/crypto/authencesn.c
+++ b/crypto/authencesn.c
@@ -342,7 +342,7 @@ static int crypto_authenc_esn_init_tfm(struct crypto_aead *tfm)
if (IS_ERR(auth))
return PTR_ERR(auth);
- enc = crypto_spawn_skcipher2(&ictx->enc);
+ enc = crypto_spawn_skcipher(&ictx->enc);
err = PTR_ERR(enc);
if (IS_ERR(enc))
goto err_free_ahash;