blob: cf5a65114fefe53b802444756aa1390db3d3880f (
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
|
/**
* SSE2 Assembly Engine
* (C) 1999-2008 Jack Lloyd
*/
#include <botan/eng_sse2.h>
#if defined(BOTAN_HAS_SHA1_SSE2)
#include <botan/sha1_sse2.h>
#endif
namespace Botan {
HashFunction* SSE2_Assembler_Engine::find_hash(const SCAN_Name& request,
Algorithm_Factory&) const
{
#if defined(BOTAN_HAS_SHA1_SSE2)
if(request.algo_name() == "SHA-160")
return new SHA_160_SSE2;
#endif
return 0;
}
}
|