summaryrefslogtreecommitdiff
path: root/sha.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2009-03-15 03:53:58 +0000
committerweidai <weidai11@users.noreply.github.com>2009-03-15 03:53:58 +0000
commit13c3aa2f4e56933dc308972c7ef8733396e352d6 (patch)
treeb44599a84f8936aeb1175ede422f778e614f4c36 /sha.cpp
parent2f070fe411282915c78d0d068f64e6a6ab7abd30 (diff)
downloadcryptopp-git-13c3aa2f4e56933dc308972c7ef8733396e352d6.tar.gz
fix compile on MSVC 6 and MSVC 2003
Diffstat (limited to 'sha.cpp')
-rw-r--r--sha.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/sha.cpp b/sha.cpp
index a0f696c6..fd0b0a25 100644
--- a/sha.cpp
+++ b/sha.cpp
@@ -125,8 +125,17 @@ extern const word32 SHA256_K[64] = {
#pragma warning(disable: 4731) // frame pointer register 'ebp' modified by inline assembly code
-static void CRYPTOPP_FASTCALL X86_SHA256_HashBlocks(word32 *state, const word32 *data, size_t len)
+static void CRYPTOPP_FASTCALL X86_SHA256_HashBlocks(word32 *state, const word32 *data, size_t len
+#if defined(_MSC_VER) && (_MSC_VER == 1200)
+ , ... // VC60 workaround: prevent VC 6 from inlining this function
+#endif
+ )
{
+#if defined(_MSC_VER) && (_MSC_VER == 1200)
+ AS2(mov ecx, [state])
+ AS2(mov edx, [data])
+#endif
+
#define LOCALS_SIZE 8*4 + 16*4 + 4*WORD_SZ
#define H(i) [BASE+ASM_MOD(1024+7-(i),8)*4]
#define G(i) H(i+1)
@@ -252,7 +261,7 @@ static void CRYPTOPP_FASTCALL X86_SHA256_HashBlocks(word32 *state, const word32
AS2( mov edi, [len])
AS2( lea WORD_REG(si), [SHA256_K+48*4])
#endif
- #if !defined(_MSC_VER) || (_MSC_VER < 1300)
+ #if !defined(_MSC_VER) || (_MSC_VER < 1400)
AS_PUSH_IF86(bx)
#endif
@@ -397,7 +406,7 @@ static void CRYPTOPP_FASTCALL X86_SHA256_HashBlocks(word32 *state, const word32
AS_POP_IF86(sp)
AS_POP_IF86(bp)
- #if !defined(_MSC_VER) || (_MSC_VER < 1300)
+ #if !defined(_MSC_VER) || (_MSC_VER < 1400)
AS_POP_IF86(bx)
#endif