diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-12-12 02:18:59 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-12-12 02:56:01 +0100 |
commit | bd617810e4338294aa0c6b74da81274bae045f10 (patch) | |
tree | d938f496564dd1e2f20dc426a9128b74e4c9d8e9 /lib/opencdk | |
parent | 09ec28b2d701d7b27a1a2171988b98ff08690257 (diff) | |
download | gnutls-bd617810e4338294aa0c6b74da81274bae045f10.tar.gz |
Optimizations in DH parameter generation.
The larger prime is find first and the big loop needs to
find a smaller prime, increasing performance.
The _gnutls_rnd() function is now inline and GNUTLS_RND_NONCE doesn't update random generator state.
Diffstat (limited to 'lib/opencdk')
-rw-r--r-- | lib/opencdk/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/opencdk/misc.c b/lib/opencdk/misc.c index 5b6c838bbb..17e4eabc91 100644 --- a/lib/opencdk/misc.c +++ b/lib/opencdk/misc.c @@ -186,7 +186,7 @@ _cdk_tmpfile (void) FILE *fp; int fd, i; - gnutls_rnd (GNUTLS_RND_NONCE, rnd, DIM (rnd)); + _gnutls_rnd (GNUTLS_RND_NONCE, rnd, DIM (rnd)); for (i = 0; i < DIM (rnd) - 1; i++) { char c = letters[(unsigned char) rnd[i] % 26]; |