Merge pull request #2292 from philsmd/master
Fixes #2255: new --outfile-format with support for timestamps
This commit is contained in:
@@ -14,6 +14,8 @@ int build_plain (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_para
|
||||
int build_crackpos (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, plain_t *plain, u64 *out_pos);
|
||||
int build_debugdata (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, plain_t *plain, u8 *debug_rule_buf, int *debug_rule_len, u8 *debug_plain_ptr, int *debug_plain_len);
|
||||
|
||||
u32 outfile_format_parse (const char *format_string);
|
||||
|
||||
int outfile_init (hashcat_ctx_t *hashcat_ctx);
|
||||
void outfile_destroy (hashcat_ctx_t *hashcat_ctx);
|
||||
int outfile_write_open (hashcat_ctx_t *hashcat_ctx);
|
||||
|
||||
@@ -485,7 +485,9 @@ typedef enum outfile_fmt
|
||||
OUTFILE_FMT_HASH = (1 << 0),
|
||||
OUTFILE_FMT_PLAIN = (1 << 1),
|
||||
OUTFILE_FMT_HEXPLAIN = (1 << 2),
|
||||
OUTFILE_FMT_CRACKPOS = (1 << 3)
|
||||
OUTFILE_FMT_CRACKPOS = (1 << 3),
|
||||
OUTFILE_FMT_TIME_ABS = (1 << 4),
|
||||
OUTFILE_FMT_TIME_REL = (1 << 5)
|
||||
|
||||
} outfile_fmt_t;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user