blob: fdb1644d06629baa767b671baf02bb08be331a10 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/**
* SIMD Engine
* (C) 1999-2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/simd_engine.h>
#include <botan/simd_32.h>
#include <botan/cpuid.h>
#if defined(BOTAN_HAS_SERPENT_SIMD)
#include <botan/serp_simd.h>
#endif
#if defined(BOTAN_HAS_XTEA_SIMD)
#include <botan/xtea_simd.h>
#endif
#if defined(BOTAN_HAS_SHA1_SSE2)
#include <botan/sha1_sse2.h>
#endif
namespace Botan {
BlockCipher*
SIMD_Engine::find_block_cipher(const SCAN_Name& request,
Algorithm_Factory&) const
{
if(!SIMD_32::enabled())
return 0;
#if defined(BOTAN_HAS_SERPENT_SIMD)
if(request.algo_name() == "Serpent")
return new Serpent_SIMD;
#endif
#if defined(BOTAN_HAS_XTEA_SIMD)
if(request.algo_name() == "XTEA")
return new XTEA_SIMD;
#endif
return 0;
}
HashFunction*
SIMD_Engine::find_hash(const SCAN_Name& request,
Algorithm_Factory&) const
{
#if defined(BOTAN_HAS_SHA1_SSE2)
if(request.algo_name() == "SHA-160" && CPUID::has_sse2())
return new SHA_160_SSE2;
#endif
return 0;
}
}
|