mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
code indent
This commit is contained in:
parent
531ee7734b
commit
720bdb3f96
83 changed files with 6377 additions and 6240 deletions
16
bfg.h
16
bfg.h
|
@ -24,7 +24,9 @@
|
|||
#define BF_WEBSITE "http://houbysoft.com/bfg/"
|
||||
|
||||
#define BF_BUFLEN 1024
|
||||
#define BF_CHARSMAX 256 /* how many max possibilities there are for characters, normally it's 2^8 = 256 */
|
||||
#define BF_CHARSMAX \
|
||||
256 /* how many max possibilities there are for characters, normally it's \
|
||||
2^8 = 256 */
|
||||
|
||||
#define BF_LOWER 1
|
||||
#define BF_UPPER 2
|
||||
|
@ -35,13 +37,13 @@ typedef struct {
|
|||
unsigned char to;
|
||||
unsigned char current;
|
||||
unsigned char state[BF_CHARSMAX]; /* which position has which character */
|
||||
unsigned char pos; /* where in current string length is the position */
|
||||
unsigned char crs_len; /* length of selected charset */
|
||||
char *arg; /* argument received for bfg commandline option */
|
||||
char *crs; /* internal representation of charset */
|
||||
char *ptr; /* ptr to the last generated password */
|
||||
unsigned char pos; /* where in current string length is the position */
|
||||
unsigned char crs_len; /* length of selected charset */
|
||||
char *arg; /* argument received for bfg commandline option */
|
||||
char *crs; /* internal representation of charset */
|
||||
char *ptr; /* ptr to the last generated password */
|
||||
uint32_t disable_symbols;
|
||||
uint64_t rain; /* accumulator for the rain */
|
||||
uint64_t rain; /* accumulator for the rain */
|
||||
} bf_option;
|
||||
|
||||
extern bf_option bf_options;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue