From 2af6c4499013911d7b01ce3ce1acc5aa8fef15ab Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 11 Nov 2008 19:20:32 +0000 Subject: Move most of the remaining libstate code to pk_engine.cpp, move engines back to the toplevel since most othe dependencies have been removed now (except get_cipher which still needs changes) --- src/engine/amd64_eng/eng_amd64.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/engine/amd64_eng/eng_amd64.h (limited to 'src/engine/amd64_eng/eng_amd64.h') diff --git a/src/engine/amd64_eng/eng_amd64.h b/src/engine/amd64_eng/eng_amd64.h new file mode 100644 index 000000000..efd8c2b76 --- /dev/null +++ b/src/engine/amd64_eng/eng_amd64.h @@ -0,0 +1,24 @@ +/** +* x86-64 Assembly Implementation Engines +* (C) 1999-2008 Jack Lloyd +*/ + +#ifndef BOTAN_AMD64_ASM_ENGINE_H__ +#define BOTAN_AMD64_ASM_ENGINE_H__ + +#include + +namespace Botan { + +class BOTAN_DLL AMD64_Assembler_Engine : public Engine + { + public: + std::string provider_name() const { return "amd64"; } + private: + HashFunction* find_hash(const SCAN_Name& reqeust, + Algorithm_Factory&) const; + }; + +} + +#endif -- cgit v1.2.3