aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md5_ia32/md5_ia32.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-04-22 13:08:05 +0000
committerlloyd <[email protected]>2011-04-22 13:08:05 +0000
commit8b40f974e65b7cc7d21a8e72b5f18f6e14208e57 (patch)
tree1192bdf14dbab29218db64abbef9ec0217ce30c8 /src/hash/md5_ia32/md5_ia32.cpp
parent7b96a4844bf97b9c04a18565334e21dc89b8ba0b (diff)
Rename all references of ia32 to x86-32 and amd64 to x86-64.
Back the reported version from 1.10.0 to 1.9.17 for the time being. Still on the fence if this will be 1.10.0 or another release candidate instead.
Diffstat (limited to 'src/hash/md5_ia32/md5_ia32.cpp')
-rw-r--r--src/hash/md5_ia32/md5_ia32.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/hash/md5_ia32/md5_ia32.cpp b/src/hash/md5_ia32/md5_ia32.cpp
deleted file mode 100644
index 6ae235d2b..000000000
--- a/src/hash/md5_ia32/md5_ia32.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
-* MD5 (IA-32)
-* (C) 1999-2007 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#include <botan/md5_ia32.h>
-
-namespace Botan {
-
-namespace {
-
-extern "C"
-void botan_md5_ia32_compress(u32bit[4], const byte[64], u32bit[16]);
-
-}
-
-/*
-* MD5 Compression Function
-*/
-void MD5_IA32::compress_n(const byte input[], size_t blocks)
- {
- for(size_t i = 0; i != blocks; ++i)
- {
- botan_md5_ia32_compress(digest, input, M);
- input += hash_block_size();
- }
- }
-
-}