1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 09:58:57 +00:00
hashcat/include/loopback.h

24 lines
665 B
C
Raw Normal View History

2016-09-11 09:42:19 +00:00
/**
* Author......: See docs/credits.txt
2016-09-11 09:42:19 +00:00
* License.....: MIT
*/
#ifndef _LOOPBACK_H
#define _LOOPBACK_H
#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-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-11 09:42:19 +00:00
#endif // _LOOPBACK_H