aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/engine/amd64_eng/eng_amd64.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-11 04:55:51 +0000
committerlloyd <[email protected]>2008-11-11 04:55:51 +0000
commit1a3ab9bf2aba7910e0cfff760635b68589089888 (patch)
tree66ce9d822fe5f8163d60b86ffe252be639503645 /src/libstate/engine/amd64_eng/eng_amd64.cpp
parent54f82a91844808eb1612080427fb64d44c486aad (diff)
Split asm_engine into three engines (ia32, amd64, sse2). This allows
them to be individually requested as providers on lookup.
Diffstat (limited to 'src/libstate/engine/amd64_eng/eng_amd64.cpp')
-rw-r--r--src/libstate/engine/amd64_eng/eng_amd64.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libstate/engine/amd64_eng/eng_amd64.cpp b/src/libstate/engine/amd64_eng/eng_amd64.cpp
new file mode 100644
index 000000000..bdc73fdd6
--- /dev/null
+++ b/src/libstate/engine/amd64_eng/eng_amd64.cpp
@@ -0,0 +1,25 @@
+/**
+* AMD64 Assembly Implementation Engine
+* (C) 1999-2008 Jack Lloyd
+*/
+
+#include <botan/eng_amd64.h>
+
+#if defined(BOTAN_HAS_SHA1_AMD64)
+ #include <botan/sha1_amd64.h>
+#endif
+
+namespace Botan {
+
+HashFunction* AMD64_Assembler_Engine::find_hash(const SCAN_Name& request,
+ Algorithm_Factory&) const
+ {
+#if defined(BOTAN_HAS_SHA1_AMD64)
+ if(request.algo_name() == "SHA-160")
+ return new SHA_160_AMD64;
+#endif
+
+ return 0;
+ }
+
+}