remove rain mode

This commit is contained in:
vanhauser-thc 2021-03-11 14:00:00 +01:00
parent ac2fd35b4f
commit f423875d90
4 changed files with 7 additions and 34 deletions

4
bfg.h
View file

@ -43,8 +43,6 @@ typedef struct {
char *crs; /* internal representation of charset */
char *ptr; /* ptr to the last generated password */
uint32_t disable_symbols;
uint64_t rain;
uint64_t gcounter;
} bf_option;
extern bf_option bf_options;
@ -52,7 +50,7 @@ extern bf_option bf_options;
#ifdef HAVE_MATH_H
extern uint64_t bf_get_pcount();
extern int32_t bf_init(char *arg);
extern char *bf_next(_Bool rainy);
extern char *bf_next();
#endif
#endif