Displaying 1 result from an estimated 1 matches for "md5_asm_x86_64".
2020 May 22
2
[PATCH] Optimized assembler version of md5_process() for x86-64
...2001
From: Jorrit Jongma <git at jongma.org>
Date: Fri, 22 May 2020 19:38:37 +0200
Subject: [PATCH] Optimized assembler version of md5_process() for x86-64
Originally created by Marc Bevand and placed in the public domain
---
Makefile.in | 7 +-
lib/md5.c | 13 +
lib/md5_asm_x86_64.s | 693 +++++++++++++++++++++++++++++++++++++++++++
3 files changed, 712 insertions(+), 1 deletion(-)
create mode 100644 lib/md5_asm_x86_64.s
diff --git a/Makefile.in b/Makefile.in
index af5aaa56..fbe22ccc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -33,8 +33,10 @@ VERSION=@RSYNC_VERSION@
.SU...