Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / crypto / DSA_dup_DH.pod
blob7f6f0d1115ad95bfa8f12a8a8247bc181fae3cf3
1 =pod
3 =head1 NAME
5 DSA_dup_DH - create a DH structure out of DSA structure
7 =head1 SYNOPSIS
9  #include <openssl/dsa.h>
11  DH * DSA_dup_DH(const DSA *r);
13 =head1 DESCRIPTION
15 DSA_dup_DH() duplicates DSA parameters/keys as DH parameters/keys. q
16 is lost during that conversion, but the resulting DH parameters
17 contain its length.
19 =head1 RETURN VALUE
21 DSA_dup_DH() returns the new B<DH> structure, and NULL on error. The
22 error codes can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>.
24 =head1 NOTE
26 Be careful to avoid small subgroup attacks when using this.
28 =head1 SEE ALSO
30 L<dh(3)|dh(3)>, L<dsa(3)|dsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)>
32 =head1 HISTORY
34 DSA_dup_DH() was added in OpenSSL 0.9.4.
36 =cut