2016-09-11 09:42:19 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 09:42:19 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LOOPBACK_H
|
|
|
|
#define _LOOPBACK_H
|
|
|
|
|
2016-09-12 12:58:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2016-10-06 15:01:29 +00:00
|
|
|
static const char LOOPBACK_FILE[] = "hashcat.loopback";
|
2016-09-12 12:58:25 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
int loopback_init (hashcat_ctx_t *hashcat_ctx);
|
2016-10-06 15:01:29 +00:00
|
|
|
void loopback_destroy (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
int loopback_write_open (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void loopback_write_close (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void loopback_write_append (hashcat_ctx_t *hashcat_ctx, const u8 *plain_ptr, const unsigned int plain_len);
|
|
|
|
void loopback_write_unlink (hashcat_ctx_t *hashcat_ctx);
|
2016-09-12 12:58:25 +00:00
|
|
|
|
2016-09-11 09:42:19 +00:00
|
|
|
#endif // _LOOPBACK_H
|