blob: 956a1ce38983f8298eeaf2035fc4760d335a7724 (
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
|
/*
* Engine for AES instructions
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/internal/aes_isa_engine.h>
#include <botan/cpuid.h>
#if defined(BOTAN_HAS_AES_NI)
#include <botan/aes_ni.h>
#endif
namespace Botan {
BlockCipher*
AES_ISA_Engine::find_block_cipher(const SCAN_Name& request,
Algorithm_Factory&) const
{
#if defined(BOTAN_HAS_AES_NI)
if(CPUID::has_aes_ni())
{
if(request.algo_name() == "AES-128")
return new AES_128_NI;
if(request.algo_name() == "AES-192")
return new AES_192_NI;
if(request.algo_name() == "AES-256")
return new AES_256_NI;
}
#endif
return nullptr;
}
}
|