Hello, I 'd like to know what is the real signature of d2i_DHhparams. When I run my appli, I have got this error :
error: cannot convert ‘unsigned char (*)[256]’ to ‘const unsigned char**’ for argument ‘2’ to ‘DH* d2i_DHparams(DH**, const unsigned char**, long int)’ In openssl doc, we have : DH * d2i_DHparams(DH **a, unsigned char **pp, long length); and when I put a const unsigned char** in arg 2, it works ... was there any change in the signature and so, openssl doc is not updated ? Thanks.