mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 04:58:57 +00:00
33 lines
807 B
C
33 lines
807 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _DICTSTAT_H
|
|
#define _DICTSTAT_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
#include <search.h>
|
|
|
|
#define MAX_DICTSTAT 100000
|
|
|
|
#define DICTSTAT_FILENAME "hashcat.dictstat2"
|
|
#define DICTSTAT_VERSION (0x6863646963740000 | 0x0002)
|
|
|
|
int sort_by_dictstat (const void *s1, const void *s2);
|
|
|
|
int dictstat_init (hashcat_ctx_t *hashcat_ctx);
|
|
void dictstat_destroy (hashcat_ctx_t *hashcat_ctx);
|
|
void dictstat_read (hashcat_ctx_t *hashcat_ctx);
|
|
int dictstat_write (hashcat_ctx_t *hashcat_ctx);
|
|
u64 dictstat_find (hashcat_ctx_t *hashcat_ctx, dictstat_t *d);
|
|
void dictstat_append (hashcat_ctx_t *hashcat_ctx, dictstat_t *d);
|
|
|
|
#endif // _DICTSTAT_H
|