aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4_ia32/md4_ia32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md4_ia32/md4_ia32.cpp')
-rw-r--r--src/hash/md4_ia32/md4_ia32.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/hash/md4_ia32/md4_ia32.cpp b/src/hash/md4_ia32/md4_ia32.cpp
index 1e3cd64c3..98d3c7a19 100644
--- a/src/hash/md4_ia32/md4_ia32.cpp
+++ b/src/hash/md4_ia32/md4_ia32.cpp
@@ -9,7 +9,15 @@
namespace Botan {
-extern "C" void botan_md4_ia32_compress(u32bit[4], const byte[64], u32bit[16]);
+/**
+* MD4 compression function in IA-32 asm
+* @param digest the current digest
+* @param input the input block
+* @param M the message buffer
+*/
+extern "C" void botan_md4_ia32_compress(u32bit digest[4],
+ const byte input[64],
+ u32bit M[16]);
/*
* MD4 Compression Function