mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-23 08:38:09 +00:00
Remove unneeded objects
This commit is contained in:
parent
df23d5b4e9
commit
dfb88a7002
@ -1,9 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#ifndef _ATTACK_MODE_H
|
||||
#define _ATTACK_MODE_H
|
||||
|
||||
#endif // _ATTACK_MODE_H
|
@ -1,9 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#ifndef _POWERTUNE_H
|
||||
#define _POWERTUNE_H
|
||||
|
||||
#endif // _POWERTUNE_H
|
@ -1,9 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#ifndef _REMOVE_H
|
||||
#define _REMOVE_H
|
||||
|
||||
#endif // _REMOVE_H
|
@ -1,9 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#ifndef _RUNTIME_H
|
||||
#define _RUNTIME_H
|
||||
|
||||
#endif // _RUNTIME_H
|
@ -1,13 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#ifndef _SESSION_H
|
||||
#define _SESSION_H
|
||||
|
||||
void session_ctx_init (session_ctx_t *session_ctx);
|
||||
|
||||
void session_ctx_destroy (session_ctx_t *session_ctx);
|
||||
|
||||
#endif // _SESSION_H
|
@ -1,9 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#ifndef _VERSION_H
|
||||
#define _VERSION_H
|
||||
|
||||
#endif // _VERSION_H
|
@ -163,7 +163,7 @@ LFLAGS_CROSS_WIN := -lpsapi
|
||||
## Objects
|
||||
##
|
||||
|
||||
OBJS_ALL := affinity attack_mode autotune benchmark bitmap bitops combinator common convert cpu_aes cpu_crc32 cpu_des cpu_md5 cpu_sha1 cpu_sha256 data debugfile dictstat dispatch dynloader ext_ADL ext_nvapi ext_nvml ext_OpenCL ext_xnvctrl filehandling folder hash_management hlfmt hwmon induct interface locking logfile logging loopback memory monitor mpsp opencl outfile_check outfile potfile powertune remove restore rp rp_cpu rp_kernel_on_cpu runtime shared status stdout straight terminal thread timer tuningdb usage user_options version weak_hash wordlist
|
||||
OBJS_ALL := affinity autotune benchmark bitmap bitops combinator common convert cpu_aes cpu_crc32 cpu_des cpu_md5 cpu_sha1 cpu_sha256 data debugfile dictstat dispatch dynloader ext_ADL ext_nvapi ext_nvml ext_OpenCL ext_xnvctrl filehandling folder hash_management hlfmt hwmon induct interface locking logfile logging loopback memory monitor mpsp opencl outfile_check outfile potfile restore rp rp_cpu rp_kernel_on_cpu shared status stdout straight terminal thread timer tuningdb usage user_options weak_hash wordlist
|
||||
|
||||
NATIVE_OBJS := $(foreach OBJ,$(OBJS_ALL),obj/$(OBJ).NATIVE.o)
|
||||
|
||||
|
@ -1,7 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "attack_mode.h"
|
19
src/data.c
19
src/data.c
@ -5,25 +5,6 @@
|
||||
|
||||
#include "common.h"
|
||||
#include "types.h"
|
||||
#include "interface.h"
|
||||
#include "timer.h"
|
||||
#include "ext_OpenCL.h"
|
||||
#include "ext_ADL.h"
|
||||
#include "ext_nvapi.h"
|
||||
#include "ext_nvml.h"
|
||||
#include "ext_xnvctrl.h"
|
||||
#include "mpsp.h"
|
||||
#include "rp_cpu.h"
|
||||
#include "tuningdb.h"
|
||||
#include "thread.h"
|
||||
#include "opencl.h"
|
||||
#include "hwmon.h"
|
||||
#include "restore.h"
|
||||
#include "hash_management.h"
|
||||
#include "outfile.h"
|
||||
#include "potfile.h"
|
||||
#include "debugfile.h"
|
||||
#include "loopback.h"
|
||||
#include "data.h"
|
||||
|
||||
hc_global_data_t data;
|
||||
|
@ -12,43 +12,27 @@
|
||||
// basic tools
|
||||
|
||||
#include "types.h"
|
||||
#include "memory.h"
|
||||
#include "folder.h"
|
||||
#include "locking.h"
|
||||
#include "logging.h"
|
||||
#include "memory.h"
|
||||
#include "shared.h"
|
||||
#include "thread.h"
|
||||
#include "timer.h"
|
||||
|
||||
// features
|
||||
|
||||
#include "affinity.h"
|
||||
#include "attack_mode.h"
|
||||
#include "autotune.h"
|
||||
#include "benchmark.h"
|
||||
#include "bitmap.h"
|
||||
#include "bitops.h"
|
||||
#include "combinator.h"
|
||||
#include "convert.h"
|
||||
#include "cpu_aes.h"
|
||||
#include "cpu_crc32.h"
|
||||
#include "cpu_des.h"
|
||||
#include "cpu_md5.h"
|
||||
#include "cpu_sha1.h"
|
||||
#include "cpu_sha256.h"
|
||||
#include "data.h"
|
||||
#include "debugfile.h"
|
||||
#include "dictstat.h"
|
||||
#include "dispatch.h"
|
||||
#include "ext_ADL.h"
|
||||
#include "ext_nvapi.h"
|
||||
#include "ext_nvml.h"
|
||||
#include "ext_OpenCL.h"
|
||||
#include "ext_xnvctrl.h"
|
||||
#include "filehandling.h"
|
||||
#include "folder.h"
|
||||
#include "hash_management.h"
|
||||
#include "hlfmt.h"
|
||||
#include "hwmon.h"
|
||||
#include "inc_hash_constants.h"
|
||||
#include "induct.h"
|
||||
#include "interface.h"
|
||||
#include "locking.h"
|
||||
#include "logfile.h"
|
||||
#include "loopback.h"
|
||||
#include "monitor.h"
|
||||
@ -57,25 +41,14 @@
|
||||
#include "outfile_check.h"
|
||||
#include "outfile.h"
|
||||
#include "potfile.h"
|
||||
#include "powertune.h"
|
||||
#include "remove.h"
|
||||
#include "restore.h"
|
||||
#include "rp.h"
|
||||
#include "rp_cpu.h"
|
||||
#include "rp_kernel_on_cpu.h"
|
||||
#include "runtime.h"
|
||||
#include "session.h"
|
||||
#include "shared.h"
|
||||
#include "status.h"
|
||||
#include "stdout.h"
|
||||
#include "straight.h"
|
||||
#include "terminal.h"
|
||||
#include "thread.h"
|
||||
#include "timer.h"
|
||||
#include "tuningdb.h"
|
||||
#include "usage.h"
|
||||
#include "user_options.h"
|
||||
#include "version.h"
|
||||
#include "weak_hash.h"
|
||||
#include "wordlist.h"
|
||||
|
||||
|
@ -1,7 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "powertune.h"
|
@ -1,7 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "remove.h"
|
@ -1,7 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "runtime.h"
|
@ -1,16 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "types.h"
|
||||
#include "session.h"
|
||||
|
||||
void session_ctx_init (session_ctx_t *session_ctx)
|
||||
{
|
||||
}
|
||||
|
||||
void session_ctx_destroy (session_ctx_t *session_ctx)
|
||||
{
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
/**
|
||||
* Author......: See docs/credits.txt
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "version.h"
|
Loading…
Reference in New Issue
Block a user