diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-19 02:33:39 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-19 02:33:39 +0200 |
commit | 7ab94ca3516db95b53ee944c9bddb6c3b75641ae (patch) | |
tree | 2c724bd48ef7ca478d9a5a1345510427085e9033 | |
parent | 302ad1450e104460abd3aae60b7f40d8a88f43df (diff) | |
download | busybox-w32-7ab94ca3516db95b53ee944c9bddb6c3b75641ae.tar.gz busybox-w32-7ab94ca3516db95b53ee944c9bddb6c3b75641ae.tar.bz2 busybox-w32-7ab94ca3516db95b53ee944c9bddb6c3b75641ae.zip |
md5: remove outdated comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/hash_md5_sha.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libbb/hash_md5_sha.c b/libbb/hash_md5_sha.c index f5f875a64..aeacddef8 100644 --- a/libbb/hash_md5_sha.c +++ b/libbb/hash_md5_sha.c | |||
@@ -461,9 +461,7 @@ void FAST_FUNC md5_end(md5_ctx_t *ctx, void *resbuf) | |||
461 | /* MD5 stores total in LE, need to swap on BE arches: */ | 461 | /* MD5 stores total in LE, need to swap on BE arches: */ |
462 | common64_end(ctx, /*swap_needed:*/ BB_BIG_ENDIAN); | 462 | common64_end(ctx, /*swap_needed:*/ BB_BIG_ENDIAN); |
463 | 463 | ||
464 | /* The MD5 result is in little endian byte order. | 464 | /* The MD5 result is in little endian byte order */ |
465 | * We (ab)use the fact that A-D are consecutive in memory. | ||
466 | */ | ||
467 | #if BB_BIG_ENDIAN | 465 | #if BB_BIG_ENDIAN |
468 | ctx->hash[0] = SWAP_LE32(ctx->hash[0]); | 466 | ctx->hash[0] = SWAP_LE32(ctx->hash[0]); |
469 | ctx->hash[1] = SWAP_LE32(ctx->hash[1]); | 467 | ctx->hash[1] = SWAP_LE32(ctx->hash[1]); |