/* * Assembly Implementation Engine * (C) 1999-2010 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_X86_32_ASM_ENGINE_H__ #define BOTAN_X86_32_ASM_ENGINE_H__ #include namespace Botan { /** * Engine for x86-32 specific implementations */ class Assembler_Engine : public Engine { public: std::string provider_name() const { return "asm"; } BlockCipher* find_block_cipher(const SCAN_Name&, Algorithm_Factory&) const; HashFunction* find_hash(const SCAN_Name& request, Algorithm_Factory&) const; }; } #endif