HAL  v4.5.0-83-g30c8f0afc
The Hardware Analyzer - a comprehensive reverse engineering and manipulation framework for gate-level netlists.
plugin_hawkeye.cpp
Go to the documentation of this file.
2 
3 namespace hal
4 {
5  extern std::unique_ptr<BasePluginInterface> create_plugin_instance()
6  {
7  return std::make_unique<HawkeyePlugin>();
8  }
9 
10  std::string HawkeyePlugin::get_name() const
11  {
12  return std::string("hawkeye");
13  }
14 
15  std::string HawkeyePlugin::get_version() const
16  {
17  return std::string("0.1");
18  }
19 
20  std::string HawkeyePlugin::get_description() const
21  {
22  return "Automated tool to locate arbitrary symmetric cryptographic implementations in gate-level netlists.";
23  }
24 
25  std::set<std::string> HawkeyePlugin::get_dependencies() const
26  {
27  std::set<std::string> retval;
28  retval.insert("graph_algorithm");
29  return retval;
30  }
31 } // namespace hal
std::string get_name() const override
Get the name of the plugin.
std::set< std::string > get_dependencies() const override
Get the plugin dependencies.
std::string get_description() const override
Get a short description of the plugin.
std::string get_version() const override
Get the version of the plugin.
Definition: defines.h:45
std::unique_ptr< BasePluginInterface > create_plugin_instance()
This file contains all functions related to the HAL plugin API.