summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2018-12-16 19:12:18 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2019-01-11 14:16:55 +0800
commitbec9ba7f37631e794cbfaa4c2274074d631217a9 (patch)
tree5cdae0eefc9dea945a7d6d1803fa32e79b0140ff /include
parent5b3b9871cc28dbf827c41595d73595627434ff4d (diff)
downloadlinux-bec9ba7f37631e794cbfaa4c2274074d631217a9.tar.gz
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')
-rw-r--r--include/linux/crypto.h8
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
  *