diff options
author | Eric Biggers <ebiggers@google.com> | 2018-12-16 19:12:18 -0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-01-11 14:16:55 +0800 |
commit | bec9ba7f37631e794cbfaa4c2274074d631217a9 (patch) | |
tree | 5cdae0eefc9dea945a7d6d1803fa32e79b0140ff /include/linux/crypto.h | |
parent | 5b3b9871cc28dbf827c41595d73595627434ff4d (diff) | |
download | blackbird-op-linux-bec9ba7f37631e794cbfaa4c2274074d631217a9.tar.gz blackbird-op-linux-bec9ba7f37631e794cbfaa4c2274074d631217a9.zip |
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>
Diffstat (limited to 'include/linux/crypto.h')
-rw-r--r-- | include/linux/crypto.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 902ec171fc6d..c3c98a62e503 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -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 * |