提交 8087d8f7 编写于 作者: G Geoff Thorpe

Make md32_common.h friendlier to compiler warnings.

Obtained from: Andy Polyakov <appro@openssl.org>
上级 31166ec8
...@@ -484,7 +484,7 @@ int HASH_UPDATE (HASH_CTX *c, const void *data_, unsigned long len) ...@@ -484,7 +484,7 @@ int HASH_UPDATE (HASH_CTX *c, const void *data_, unsigned long len)
if ((((unsigned long)data)%4) == 0) if ((((unsigned long)data)%4) == 0)
{ {
/* data is properly aligned so that we can cast it: */ /* data is properly aligned so that we can cast it: */
HASH_BLOCK_DATA_ORDER_ALIGNED (c,(HASH_LONG *)data,sw); HASH_BLOCK_DATA_ORDER_ALIGNED (c,(const HASH_LONG *)data,sw);
sw*=HASH_CBLOCK; sw*=HASH_CBLOCK;
data+=sw; data+=sw;
len-=sw; len-=sw;
...@@ -532,7 +532,7 @@ void HASH_TRANSFORM (HASH_CTX *c, const unsigned char *data) ...@@ -532,7 +532,7 @@ void HASH_TRANSFORM (HASH_CTX *c, const unsigned char *data)
#if defined(HASH_BLOCK_DATA_ORDER_ALIGNED) #if defined(HASH_BLOCK_DATA_ORDER_ALIGNED)
if ((((unsigned long)data)%4) == 0) if ((((unsigned long)data)%4) == 0)
/* data is properly aligned so that we can cast it: */ /* data is properly aligned so that we can cast it: */
HASH_BLOCK_DATA_ORDER_ALIGNED (c,(HASH_LONG *)data,1); HASH_BLOCK_DATA_ORDER_ALIGNED (c,(const HASH_LONG *)data,1);
else else
#if !defined(HASH_BLOCK_DATA_ORDER) #if !defined(HASH_BLOCK_DATA_ORDER)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册