Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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: Herbert Xu <herbert@gondor.apana.org.au>

-8
-8
include/crypto/algapi.h
··· 198 198 return crypto_tfm_alg_instance(&aead->base); 199 199 } 200 200 201 - static inline struct crypto_ablkcipher *crypto_spawn_ablkcipher( 202 - struct crypto_spawn *spawn) 203 - { 204 - return __crypto_ablkcipher_cast( 205 - crypto_spawn_tfm(spawn, crypto_skcipher_type(0), 206 - crypto_skcipher_mask(0))); 207 - } 208 - 209 201 static inline struct crypto_blkcipher *crypto_spawn_blkcipher( 210 202 struct crypto_spawn *spawn) 211 203 {