diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-03-06 08:14:18 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-03-06 08:14:18 -0800 |
commit | b881502666783b2d9ca2fc7a056d0f773073a808 (patch) | |
tree | b5ebcd71f8ffdb5f994e39d4808dfee6bb93576e /crypto/digest.c | |
parent | 910da1a48eeb3be53a8247f6c494aa9d67ab1422 (diff) | |
parent | 2f40a178e70030c4712fe63807c883f34c3645eb (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
[CRYPTO] xcbc: Fix crash with IPsec
[CRYPTO] xts: Use proper alignment
[CRYPTO] digest: Include internal.h for prototypes
[CRYPTO] authenc: Add missing Kconfig dependency on BLKCIPHER
[CRYPTO] skcipher: Move chainiv/seqiv into crypto_blkcipher module
Diffstat (limited to 'crypto/digest.c')
-rw-r--r-- | crypto/digest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/digest.c b/crypto/digest.c index 6fd43bddd54..b526cc348b7 100644 --- a/crypto/digest.c +++ b/crypto/digest.c @@ -21,6 +21,8 @@ #include <linux/module.h> #include <linux/scatterlist.h> +#include "internal.h" + static int init(struct hash_desc *desc) { struct crypto_tfm *tfm = crypto_hash_tfm(desc->tfm); |