Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 45d44eb5 authored by Herbert Xu's avatar Herbert Xu
Browse files

[CRYPTO] skcipher: Remove crypto_spawn_ablkcipher



Now that gcm and authenc have been converted to crypto_spawn_skcipher,
this patch removes the obsolete crypto_spawn_ablkcipher function.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 1472e5eb
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -198,14 +198,6 @@ static inline struct crypto_instance *crypto_aead_alg_instance(
	return crypto_tfm_alg_instance(&aead->base);
}

static inline struct crypto_ablkcipher *crypto_spawn_ablkcipher(
	struct crypto_spawn *spawn)
{
	return __crypto_ablkcipher_cast(
		crypto_spawn_tfm(spawn, crypto_skcipher_type(0),
				 crypto_skcipher_mask(0)));
}

static inline struct crypto_blkcipher *crypto_spawn_blkcipher(
	struct crypto_spawn *spawn)
{