1
mirror of https://github.com/hashcat/hashcat synced 2024-11-28 05:21:38 +01:00
hashcat/include/loopback.h

24 lines
665 B
C
Raw Normal View History

2016-09-11 11:42:19 +02:00
/**
* Author......: See docs/credits.txt
2016-09-11 11:42:19 +02:00
* License.....: MIT
*/
#ifndef _LOOPBACK_H
#define _LOOPBACK_H
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
2016-10-06 17:01:29 +02:00
static const char LOOPBACK_FILE[] = "hashcat.loopback";
2016-10-06 17:26:15 +02:00
int loopback_init (hashcat_ctx_t *hashcat_ctx);
2016-10-06 17:01:29 +02: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 11:42:19 +02:00
#endif // _LOOPBACK_H