blob: 129697e8fee451c3a205ce9be480bca187c87c2e (
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
|
/**
* SSE2 Assembly Engine
* (C) 1999-2008 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_SSE2_ASM_ENGINE_H__
#define BOTAN_SSE2_ASM_ENGINE_H__
#include <botan/engine.h>
namespace Botan {
class BOTAN_DLL SSE2_Assembler_Engine : public Engine
{
public:
std::string provider_name() const { return "sse2"; }
private:
HashFunction* find_hash(const SCAN_Name& reqeust,
Algorithm_Factory&) const;
};
}
#endif
|