aboutsummaryrefslogtreecommitdiff
path: root/cryptopp/pch.h
diff options
context:
space:
mode:
author--author=Satoshi Nakamoto <satoshin@gmx.com>2010-07-27 20:43:55 +0000
committerGavin Andresen <gavinandresen@gmail.com>2010-07-27 20:43:55 +0000
commit3dd20ff2f87958a440c9dceae8abe3967aa48fcf (patch)
tree5cf88b4e9ba89460a83488561d9fd23feaa87365 /cryptopp/pch.h
parent9f35575ca34eb15b20d1d5374b56ac9d4c8cc2bf (diff)
downloadbitcoin-3dd20ff2f87958a440c9dceae8abe3967aa48fcf.tar.xz
added a subset of Crypto++ 5.6.0 with 48% faster ASM SHA-256, combined speedup 2.5x faster vs 0.3.3, thanks BlackEye for figuring out the alignment problem
Diffstat (limited to 'cryptopp/pch.h')
-rw-r--r--cryptopp/pch.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/cryptopp/pch.h b/cryptopp/pch.h
new file mode 100644
index 0000000000..418c39076d
--- /dev/null
+++ b/cryptopp/pch.h
@@ -0,0 +1,21 @@
+#ifndef CRYPTOPP_PCH_H
+#define CRYPTOPP_PCH_H
+
+#ifdef CRYPTOPP_GENERATE_X64_MASM
+
+ #include "cpu.h"
+
+#else
+
+ #include "config.h"
+
+ #ifdef USE_PRECOMPILED_HEADERS
+ #include "simple.h"
+ #include "secblock.h"
+ #include "misc.h"
+ #include "smartptr.h"
+ #endif
+
+#endif
+
+#endif