summaryrefslogtreecommitdiff
path: root/lib/libcrypto/md5
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2024-03-28 08:00:09 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2024-03-28 08:00:09 +0000
commit60ff034ea78920a78e043852dbcf6cd6c339890d (patch)
treec12e7081aef788ec9e2f786d9434c88b6ec6b728 /lib/libcrypto/md5
parentcbf22e464f934837fe6f171090cea321556ab3d6 (diff)
Load in the top of the loop, as we do for other hash implementations.
Diffstat (limited to 'lib/libcrypto/md5')
-rw-r--r--lib/libcrypto/md5/md5.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libcrypto/md5/md5.c b/lib/libcrypto/md5/md5.c
index 6b1afb4444a..35d1ac91446 100644
--- a/lib/libcrypto/md5/md5.c
+++ b/lib/libcrypto/md5/md5.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: md5.c,v 1.21 2024/03/26 05:55:15 jsing Exp $ */
+/* $OpenBSD: md5.c,v 1.22 2024/03/28 08:00:08 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -137,12 +137,12 @@ md5_block_data_order(MD5_CTX *c, const void *_in, size_t num)
MD5_LONG X0, X1, X2, X3, X4, X5, X6, X7,
X8, X9, X10, X11, X12, X13, X14, X15;
- A = c->A;
- B = c->B;
- C = c->C;
- D = c->D;
-
while (num-- > 0) {
+ A = c->A;
+ B = c->B;
+ C = c->C;
+ D = c->D;
+
if ((uintptr_t)in % 4 == 0) {
/* Input is 32 bit aligned. */
in32 = (const MD5_LONG *)in;
@@ -251,10 +251,10 @@ md5_block_data_order(MD5_CTX *c, const void *_in, size_t num)
md5_round4(&C, D, A, B, X2, 0x2ad7d2bbL, 15);
md5_round4(&B, C, D, A, X9, 0xeb86d391L, 21);
- A = c->A += A;
- B = c->B += B;
- C = c->C += C;
- D = c->D += D;
+ c->A += A;
+ c->B += B;
+ c->C += C;
+ c->D += D;
}
}
#endif