mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
2135ea3329
WPA: Changed format for outfile_check from essid:mac1:mac2 to hash
30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _POTFILE_H
|
|
#define _POTFILE_H
|
|
|
|
#include <stdio.h>
|
|
#include <stddef.h>
|
|
#include <errno.h>
|
|
|
|
#define INCR_POT 1000
|
|
|
|
int potfile_init (hashcat_ctx_t *hashcat_ctx);
|
|
int potfile_read_open (hashcat_ctx_t *hashcat_ctx);
|
|
void potfile_read_close (hashcat_ctx_t *hashcat_ctx);
|
|
int potfile_write_open (hashcat_ctx_t *hashcat_ctx);
|
|
void potfile_write_close (hashcat_ctx_t *hashcat_ctx);
|
|
void potfile_write_append (hashcat_ctx_t *hashcat_ctx, const char *out_buf, u8 *plain_ptr, unsigned int plain_len);
|
|
int potfile_remove_parse (hashcat_ctx_t *hashcat_ctx);
|
|
void potfile_destroy (hashcat_ctx_t *hashcat_ctx);
|
|
int potfile_handle_show (hashcat_ctx_t *hashcat_ctx);
|
|
int potfile_handle_left (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void potfile_update_hash (hashcat_ctx_t *hashcat_ctx, hash_t *found, char *line_pw_buf, int line_pw_len);
|
|
void potfile_update_hashes (hashcat_ctx_t *hashcat_ctx, hash_t *found, hash_t *hashes_buf, u32 hashes_cnt, int (*compar) (const void *, const void *, void *), char *line_pw_buf, int line_pw_len);
|
|
|
|
#endif // _POTFILE_H
|