-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpwgen.h
51 lines (41 loc) · 1.12 KB
/
pwgen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* pwgen.h --- header file for password generator
*
* Copyright (C) 2001,2002 by Theodore Ts'o
*
* This file may be distributed under the terms of the GNU Public
* License.
*/
struct pw_element {
const char *str;
int flags;
};
/*
* Flags for the pw_element
*/
#define CONSONANT 0x0001
#define VOWEL 0x0002
#define DIPTHONG 0x0004
#define NOT_FIRST 0x0008
/*
* Flags for the pwgen function
*/
#define PW_DIGITS 0x0001 /* At least one digit */
#define PW_UPPERS 0x0002 /* At least one upper letter */
#define PW_SYMBOLS 0x0004
#define PW_AMBIGUOUS 0x0008
#define PW_NO_VOWELS 0x0010
/* pointer to choose between random or sha1 pseudo random number generator */
extern int (*pw_number)(int max_num);
extern const char *pw_symbols;
extern const char *pw_ambiguous;
/* Function prototypes */
/* pw_phonemes.c */
extern void pw_phonemes(char *buf, int size, int pw_flags, char *remove);
/* pw_rand.c */
extern void pw_rand(char *buf, int size, int pw_flags, char *remove);
/* randnum.c */
extern int pw_random_number(int max_num);
/* sha1num.c */
extern void pw_sha1_init(char *sha1);
extern int pw_sha1_number(int max_num);