1*2175Sjp161948=pod 2*2175Sjp161948 3*2175Sjp161948=head1 NAME 4*2175Sjp161948 5*2175Sjp161948d2i_DHparams, i2d_DHparams - PKCS#3 DH parameter functions. 6*2175Sjp161948 7*2175Sjp161948=head1 SYNOPSIS 8*2175Sjp161948 9*2175Sjp161948 #include <openssl/dh.h> 10*2175Sjp161948 11*2175Sjp161948 DH *d2i_DHparams(DH **a, unsigned char **pp, long length); 12*2175Sjp161948 int i2d_DHparams(DH *a, unsigned char **pp); 13*2175Sjp161948 14*2175Sjp161948=head1 DESCRIPTION 15*2175Sjp161948 16*2175Sjp161948These functions decode and encode PKCS#3 DH parameters using the 17*2175Sjp161948DHparameter structure described in PKCS#3. 18*2175Sjp161948 19*2175Sjp161948Othewise these behave in a similar way to d2i_X509() and i2d_X509() 20*2175Sjp161948described in the L<d2i_X509(3)|d2i_X509(3)> manual page. 21*2175Sjp161948 22*2175Sjp161948=head1 SEE ALSO 23*2175Sjp161948 24*2175Sjp161948L<d2i_X509(3)|d2i_X509(3)> 25*2175Sjp161948 26*2175Sjp161948=head1 HISTORY 27*2175Sjp161948 28*2175Sjp161948TBA 29*2175Sjp161948 30*2175Sjp161948=cut 31