Move loopback related stuff to loopback.c
This commit is contained in:
@@ -142,7 +142,7 @@ typedef struct
|
||||
char *induction_directory;
|
||||
char *outfile_check_directory;
|
||||
uint loopback;
|
||||
char *loopback_file;
|
||||
|
||||
uint restore;
|
||||
uint restore_timer;
|
||||
uint restore_disable;
|
||||
@@ -177,8 +177,8 @@ typedef struct
|
||||
hashconfig_t *hashconfig;
|
||||
|
||||
outfile_ctx_t *outfile_ctx;
|
||||
|
||||
potfile_ctx_t *potfile_ctx;
|
||||
loopback_ctx_t *loopback_ctx;
|
||||
|
||||
#if defined (HAVE_HWMON)
|
||||
uint gpu_temp_disable;
|
||||
|
||||
@@ -6,4 +6,27 @@
|
||||
#ifndef _LOOPBACK_H
|
||||
#define _LOOPBACK_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
|
||||
#define LOOPBACK 0
|
||||
#define LOOPBACK_FILE "hashcat.loopback"
|
||||
|
||||
typedef struct
|
||||
{
|
||||
FILE *fp;
|
||||
char *filename;
|
||||
|
||||
} loopback_ctx_t;
|
||||
|
||||
void loopback_init (loopback_ctx_t *loopback_ctx);
|
||||
void loopback_destroy (loopback_ctx_t *loopback_ctx);
|
||||
int loopback_write_open (loopback_ctx_t *loopback_ctx, const char *induction_directory);
|
||||
void loopback_write_close (loopback_ctx_t *loopback_ctx);
|
||||
void loopback_format_plain (loopback_ctx_t *loopback_ctx, const u8 *plain_ptr, const unsigned int plain_len);
|
||||
void loopback_write_append (loopback_ctx_t *loopback_ctx, const u8 *plain_ptr, const unsigned int plain_len);
|
||||
void loopback_write_unlink (loopback_ctx_t *loopback_ctx);
|
||||
|
||||
#endif // _LOOPBACK_H
|
||||
|
||||
Reference in New Issue
Block a user