summaryrefslogtreecommitdiff
path: root/src/crypt.gaa
blob: 9b7594364074226f49d9d9b3f17f4e35c5d0a584 (plain)
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
helpnode "Srpcrypt help\nUsage : srpcrypt [options]"

#char *username;
option (u,username) STR "username" { $username = $1 } "specify username."

#char *passwd;
option (p, passwd) STR "FILE" { $passwd = $1 } "specify a password file."

#int index;
option (i, index) INT "INDEX" { $index = $1 } "specify the index of the parameters in tpasswd.conf to use."

#int salt;
option (s, salt) INT "SALT" { $salt = $1 } "specify salt/cost size for crypt algorithm."

#int verify;
option (verify) { $verify = 1 } "just verify password."

#char *passwd_conf;
option ( passwd-conf) STR "FILE" { $passwd_conf = $1 } "specify a password conf file."

#char *create_conf;
option ( create-conf) STR "FILE" { $create_conf = $1 } "Generate a tpasswd.conf file."

#int bits;
option (bits) INT "BITS" { $bits = $1 } "specify the number of bits for prime numbers (used only when create-conf option is specified)."

option (h, help) { gaa_help(); exit(0); } "shows this help text"

init { $username=NULL; $passwd=NULL; $salt=0;
       $create_conf=NULL; $passwd_conf=NULL; $verify = 0; $bits=1040; 
       $index = 1; }