mirror of
https://github.com/hashcat/hashcat.git
synced 2024-10-31 20:48:57 +00:00
18 lines
358 B
C
18 lines
358 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _STRAIGHT_H
|
|
#define _STRAIGHT_H
|
|
|
|
#include <string.h>
|
|
|
|
#define INCR_DICTS 1000
|
|
|
|
int straight_ctx_update_loop (hashcat_ctx_t *hashcat_ctx);
|
|
int straight_ctx_init (hashcat_ctx_t *hashcat_ctx);
|
|
void straight_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
#endif // _STRAIGHT_H
|