Commit bec9ba7f authored by Eric Biggers's avatar Eric Biggers Committed by Herbert Xu
Browse files

crypto: cipher - remove struct cipher_desc



'struct cipher_desc' is unused.  Remove it.

Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 5b3b9871
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -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
 *