diff options
author | Eric Biggers <ebiggers@google.com> | 2019-11-29 10:23:08 -0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-12-11 16:36:56 +0800 |
commit | 89873b4411348325c5e513ea8086f0193eda5163 (patch) | |
tree | 534c268e831977e6e4bab12bf4df275469ec6053 /crypto/skcipher.c | |
parent | 7e1c10991822de1c7a2d64647da56d96f430606c (diff) | |
download | linux-89873b4411348325c5e513ea8086f0193eda5163.tar.bz2 |
crypto: skcipher - remove crypto_skcipher_extsize()
Due to the removal of the blkcipher and ablkcipher algorithm types,
crypto_skcipher_extsize() now simply calls crypto_alg_extsize(). So
remove it and just use crypto_alg_extsize().
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.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/crypto/skcipher.c b/crypto/skcipher.c index e4e4a445dc66..39a718d99220 100644 --- a/crypto/skcipher.c +++ b/crypto/skcipher.c @@ -578,11 +578,6 @@ int skcipher_walk_aead_decrypt(struct skcipher_walk *walk, } EXPORT_SYMBOL_GPL(skcipher_walk_aead_decrypt); -static unsigned int crypto_skcipher_extsize(struct crypto_alg *alg) -{ - return crypto_alg_extsize(alg); -} - static void skcipher_set_needkey(struct crypto_skcipher *tfm) { if (crypto_skcipher_max_keysize(tfm) != 0) @@ -749,7 +744,7 @@ static int crypto_skcipher_report(struct sk_buff *skb, struct crypto_alg *alg) #endif static const struct crypto_type crypto_skcipher_type = { - .extsize = crypto_skcipher_extsize, + .extsize = crypto_alg_extsize, .init_tfm = crypto_skcipher_init_tfm, .free = crypto_skcipher_free_instance, #ifdef CONFIG_PROC_FS |