summaryrefslogtreecommitdiffstats
path: root/old/botan/src/engine/amd64_eng/eng_amd64.cpp
blob: eed2cf3032ac0d26ff9f1897d5bb4b5f857f4514 (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
/**
* AMD64 Assembly Implementation Engine
* (C) 1999-2008 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#include <botan/eng_amd64.h>

#if defined(BOTAN_HAS_SHA1_AMD64)
  #include <botan/sha1_amd64.h>
#endif

namespace Botan {

HashFunction* AMD64_Assembler_Engine::find_hash(const SCAN_Name& request,
                                                Algorithm_Factory&) const
   {
#if defined(BOTAN_HAS_SHA1_AMD64)
   if(request.algo_name() == "SHA-160")
      return new SHA_160_AMD64;
#endif

   return 0;
   }

}