crypto: cipher - remove struct cipher_desc

'struct cipher_desc' is unused.  Remove it.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Eric Biggers 2018-12-16 19:12:18 -08:00 committed by Herbert Xu
parent 5b3b9871cc
commit bec9ba7f37
1 changed files with 0 additions and 8 deletions

View File

@ -188,14 +188,6 @@ struct blkcipher_desc {
u32 flags;
};
struct cipher_desc {
struct crypto_tfm *tfm;
void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst,
const u8 *src, unsigned int nbytes);
void *info;
};
/**
* DOC: Block Cipher Algorithm Definitions
*