summaryrefslogtreecommitdiff
path: root/crypto/md5.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-03-05 10:47:57 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-05 10:47:57 -0800
commit2f025d4565dbc47c29b515ed52d68bbfbfbfc17b (patch)
tree0afb3dab837615c7ba7cfba301d1e8eae8f4d701 /crypto/md5.c
parent7f88704951271e35e632de9d959dfa6d2bbe4369 (diff)
parent7f964674351051bcd7dd6fe5d15f33d823022c65 (diff)
downloadlinux-crypto-2f025d4565dbc47c29b515ed52d68bbfbfbfc17b.tar.gz
linux-crypto-2f025d4565dbc47c29b515ed52d68bbfbfbfc17b.zip
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: padata: Allocate the cpumask for the padata instance crypto: authenc - Move saved IV in front of the ablkcipher request crypto: hash - Fix handling of unaligned buffers crypto: authenc - Use correct ahash complete functions crypto: md5 - Set statesize
Diffstat (limited to '')
-rw-r--r--crypto/md5.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/md5.c b/crypto/md5.c
index 9fda213a..30efc7da 100644
--- a/crypto/md5.c
+++ b/crypto/md5.c
@@ -234,6 +234,7 @@ static struct shash_alg alg = {
.export = md5_export,
.import = md5_import,
.descsize = sizeof(struct md5_state),
+ .statesize = sizeof(struct md5_state),
.base = {
.cra_name = "md5",
.cra_flags = CRYPTO_ALG_TYPE_SHASH,