aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/engine/asm_engine/asm_engine.h
blob: cb27e19c16a425772858f520eeca06905ac42e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*************************************************
* Assembly Implementation Engine Header File     *
* (C) 1999-2007 Jack Lloyd                       *
*************************************************/

#ifndef BOTAN_ASM_ENGINE_H__
#define BOTAN_ASM_ENGINE_H__

#include <botan/engine.h>

namespace Botan {

class BOTAN_DLL Assembler_Engine : public Engine
   {
   public:
      std::string provider_name() const { return "asm"; }
   private:
      //BlockCipher* find_block_cipher(const std::string&) const;

      HashFunction* find_hash(const SCAN_Name& reqeust,
                              Algorithm_Factory&) const;
   };

}

#endif