2016-09-06 17:44:27 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-06 17:44:27 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TUNINGDB_H
|
|
|
|
#define _TUNINGDB_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2016-09-07 20:06:43 +00:00
|
|
|
#define TUNING_DB_FILE "hashcat.hctune"
|
|
|
|
|
2016-09-30 10:58:06 +00:00
|
|
|
int tuning_db_init (tuning_db_t *tuning_db, const user_options_t *user_options, const folder_config_t *folder_config);
|
2016-09-06 17:44:27 +00:00
|
|
|
void tuning_db_destroy (tuning_db_t *tuning_db);
|
2016-09-30 10:58:06 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
tuning_db_entry_t *tuning_db_search (const tuning_db_t *tuning_db, const char *device_name, const cl_device_type device_type, int attack_mode, const int hash_type);
|
2016-09-06 17:44:27 +00:00
|
|
|
|
|
|
|
#endif // _TUNINGDB_H
|