Browse Source

crypto: md5 - Set statesize

As md5 now has export/import functions, it must set the attribute
statesize.  Otherwise anything that relies on import/export may
fail as they will see a zero statesize.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Herbert Xu 15 năm trước cách đây
mục cha
commit
eebb111f5f
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      crypto/md5.c

+ 1 - 0
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,