Displaying 1 result from an estimated 1 matches for "gnutls_dh_params_generate2".
Did you mean:
  gnutls_dh_params_generate
  
2007 Jul 31
1
Dovecot won't build against recent version of GnuTLS
Hi all,
Dovecot won't build against recent versions of GnuTLS. The problem 
starts on line 34 of src/master/ssl-init-gnutls.c, where Dovecot 
generates DH params using gnutls_dh_params_generate(), a function which 
no longer exists [replaced with gnutls_dh_params_generate2()].
I'd fix it myself, but the signature of the function has changed to take 
gnutls_dh_params_t rather than prime & generator, and I'm not keen on 
hacking SSL code unless I really understand what's going on. It looks 
like the code goes on to save & free those values.
I'...