md5: length should be stored in *little-endian* order! fixing...
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
parent
9ff50b8697
commit
e08ef581af
@ -415,9 +415,9 @@ void FAST_FUNC md5_end(md5_ctx_t *ctx, void *resbuf)
|
|||||||
memset(ctx->wbuffer + bufpos, 0, remaining);
|
memset(ctx->wbuffer + bufpos, 0, remaining);
|
||||||
/* Do we have enough space for the length count? */
|
/* Do we have enough space for the length count? */
|
||||||
if (remaining >= 8) {
|
if (remaining >= 8) {
|
||||||
/* Store the 64-bit counter of bits in the buffer in BE format */
|
/* Store the 64-bit counter of bits in the buffer in LE format */
|
||||||
uint64_t t = ctx->total64 << 3;
|
uint64_t t = ctx->total64 << 3;
|
||||||
t = SWAP_BE64(t);
|
t = SWAP_LE64(t);
|
||||||
/* wbuffer is suitably aligned for this */
|
/* wbuffer is suitably aligned for this */
|
||||||
*(uint64_t *) (&ctx->wbuffer[64 - 8]) = t;
|
*(uint64_t *) (&ctx->wbuffer[64 - 8]) = t;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user