Skip to content

Commit

Permalink
[CRYPTO] skcipher: Remove crypto_spawn_ablkcipher
Browse files Browse the repository at this point in the history
Now that gcm and authenc have been converted to crypto_spawn_skcipher,
this patch removes the obsolete crypto_spawn_ablkcipher function.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
herbertx committed Jan 10, 2008
1 parent 1472e5e commit 45d44eb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions include/crypto/algapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 45d44eb

Please sign in to comment.