You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/include/mpsp.h

35 lines
1003 B

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef HC_MPSP_H
#define HC_MPSP_H
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
#define CHARSIZ 0x100
#define SP_HCSTAT "hashcat.hcstat2"
#define SP_VERSION (0x6863737461740000 | 0x0002)
#define SP_PW_MIN 2
#define SP_PW_MAX 256
#define SP_ROOT_CNT (SP_PW_MAX * CHARSIZ)
#define SP_MARKOV_CNT (SP_PW_MAX * CHARSIZ * CHARSIZ)
#define SP_FILESZ (sizeof (u64) + sizeof (u64) + (sizeof (u64) * SP_ROOT_CNT) + (sizeof (u64) * SP_MARKOV_CNT))
#define INCR_MASKS 1000
u32 mp_get_length (const char *mask, const u32 opts_type);
void sp_exec (u64 ctx, char *pw_buf, cs_t *root_css_buf, cs_t *markov_css_buf, u32 start, u32 stop);
int mask_ctx_update_loop (hashcat_ctx_t *hashcat_ctx);
int mask_ctx_init (hashcat_ctx_t *hashcat_ctx);
void mask_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
int mask_ctx_parse_maskfile (hashcat_ctx_t *hashcat_ctx);
#endif // HC_MPSP_H