2016-09-06 19:44:27 +02:00
|
|
|
/**
|
2016-09-11 22:20:15 +02:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-06 19:44:27 +02:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TUNINGDB_H
|
|
|
|
#define _TUNINGDB_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2016-09-07 22:06:43 +02:00
|
|
|
#define TUNING_DB_FILE "hashcat.hctune"
|
|
|
|
|
2016-10-06 16:51:01 +02:00
|
|
|
int tuning_db_init (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void tuning_db_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-30 12:58:06 +02:00
|
|
|
|
2019-02-12 15:30:42 +01:00
|
|
|
tuning_db_entry_t *tuning_db_search (hashcat_ctx_t *hashcat_ctx, const char *device_name, const cl_device_type device_type, int attack_mode, const int hash_mode);
|
2016-09-06 19:44:27 +02:00
|
|
|
|
|
|
|
#endif // _TUNINGDB_H
|