2016-09-10 15:35:58 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-10 15:35:58 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _OUTFILE_H
|
|
|
|
#define _OUTFILE_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2016-09-21 19:14:06 +00:00
|
|
|
void outfile_init (outfile_ctx_t *outfile_ctx, const user_options_t *user_options);
|
2016-09-16 15:01:18 +00:00
|
|
|
void outfile_destroy (outfile_ctx_t *outfile_ctx);
|
|
|
|
void outfile_format_plain (outfile_ctx_t *outfile_ctx, const unsigned char *plain_ptr, const uint plain_len);
|
|
|
|
void outfile_write_open (outfile_ctx_t *outfile_ctx);
|
|
|
|
void outfile_write_close (outfile_ctx_t *outfile_ctx);
|
|
|
|
void outfile_write (outfile_ctx_t *outfile_ctx, const char *out_buf, const unsigned char *plain_ptr, const uint plain_len, const u64 crackpos, const unsigned char *username, const uint user_len, const hashconfig_t *hashconfig);
|
2016-09-16 15:31:31 +00:00
|
|
|
int outfile_and_hashfile (outfile_ctx_t *outfile_ctx, const char *hashfile);
|
2016-09-10 15:35:58 +00:00
|
|
|
|
|
|
|
#endif // _OUTFILE_H
|