diff options
| author | James Morris <jmorris@intercode.com.au> | 2002-11-25 22:33:18 -0800 |
|---|---|---|
| committer | David S. Miller <davem@nuts.ninka.net> | 2002-11-25 22:33:18 -0800 |
| commit | 177b43280c87538be027ff4f09ed25018c20a653 (patch) | |
| tree | 2d50a7c904573f13807bbfe5f66164d4777bd8c4 /include/linux | |
| parent | 13860608b52443da7c75b49834a3058be80e249e (diff) | |
[CRYPTO]: Add twofish algorithm.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 960e54133e29..f82c74decefe 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -58,7 +58,6 @@ */ #define CRYPTO_UNSPEC 0 #define CRYPTO_MAX_ALG_NAME 64 -#define CRYPTO_MAX_CIPHER_BLOCK_SIZE 16 struct scatterlist; @@ -135,6 +134,7 @@ struct cipher_tfm { struct scatterlist *sg, unsigned int nsg); int (*cit_decrypt)(struct crypto_tfm *tfm, struct scatterlist *sg, unsigned int nsg); + void (*cit_xor_block)(u8 *dst, const u8 *src); }; struct digest_tfm { |
