diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-09-13 07:01:05 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-09-13 07:01:05 +0000 |
commit | a3ec2aa0073e108c250bd44849bb6c9689d5216e (patch) | |
tree | 09fbde5cb8e4c4607182028f74bcf2ec384c1cf6 | |
parent | b3c60f19df7da1c638f57eab18165b26d486563f (diff) | |
download | gnutls-a3ec2aa0073e108c250bd44849bb6c9689d5216e.tar.gz |
*** empty log message ***
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/crypt.c | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,6 @@ Version 0.9.8 -- Updated the SRP implementation to follow the latest draft. +- Updated the SRP implementation to follow the latest draft + (draft-ietf-tls-srp-05). - Improved the gnutls-cli behaviour in error handling. - Use versioned symbols in the library (where available). diff --git a/src/crypt.c b/src/crypt.c index 4aa05f6236..90e4a67870 100644 --- a/src/crypt.c +++ b/src/crypt.c @@ -183,6 +183,7 @@ int generate_create_conf(char *tpasswd_conf) n.size = sizeof(srp_params_2048); } + printf("\nGroup %d, of %d bits:\n", index, n.size*8); print_num("Generator", &g); print_num("Prime", &n); |