X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fsec%2Fhash%2Fmd5.c;h=306bacc029da9aa2fd84b1dadb71bced17d0b263;hb=5e615954460b48f828c99e03166687f0a91668dc;hp=8e89907b40084979e8da6b2f77acf9c95624b3b8;hpb=a7f5f68b9e3cdfc949edef0a5047cf911f13137f;p=bertos.git diff --git a/bertos/sec/hash/md5.c b/bertos/sec/hash/md5.c index 8e89907b..306bacc0 100644 --- a/bertos/sec/hash/md5.c +++ b/bertos/sec/hash/md5.c @@ -37,7 +37,7 @@ static void byteReverse(uint32_t *buf, unsigned longs) static void MD5_begin(Hash *h) { MD5_Context *ctx = (MD5_Context *)h; - + ctx->buf[0] = 0x67452301; ctx->buf[1] = 0xefcdab89; ctx->buf[2] = 0x98badcfe; @@ -136,7 +136,7 @@ static uint8_t* MD5_final(struct Hash *h) PURGE(ctx->in); PURGE(ctx->bits); - return ctx->buf; + return (uint8_t *)ctx->buf; }