diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-08-28 14:08:32 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-08-28 14:08:32 +0000 |
commit | 7d5104e60f8b854577b81bb392b037f65e58b9b1 (patch) | |
tree | 0033047448a78a693d0b84dc9fd0f0741d5e771e /src/crypt.gaa | |
parent | c75750a9866b32e34ae744aa47918ef704c35806 (diff) | |
download | gnutls-7d5104e60f8b854577b81bb392b037f65e58b9b1.tar.gz |
Added support for the new SRP draft by D. Taylor. This includes the
removal of the blowfish crypt hash option, and the change of SRP cipher
suite numbers.
Diffstat (limited to 'src/crypt.gaa')
-rw-r--r-- | src/crypt.gaa | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/crypt.gaa b/src/crypt.gaa index 4408a1d841..9b75943640 100644 --- a/src/crypt.gaa +++ b/src/crypt.gaa @@ -9,9 +9,6 @@ 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." -#char *crypt; -option (c, crypt) STR "CRYPT" { $crypt = $1 } "specify crypt algorithm (bcrypt/srpsha)." - #int salt; option (s, salt) INT "SALT" { $salt = $1 } "specify salt/cost size for crypt algorithm." @@ -29,7 +26,7 @@ option (bits) INT "BITS" { $bits = $1 } "specify the number of bits for prime nu option (h, help) { gaa_help(); exit(0); } "shows this help text" -init { $username=NULL; $passwd=NULL; $crypt=NULL; $salt=0; +init { $username=NULL; $passwd=NULL; $salt=0; $create_conf=NULL; $passwd_conf=NULL; $verify = 0; $bits=1040; $index = 1; } |