]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/crypto/DH_get_ex_new_index.pod
Remove BN_init
[thirdparty/openssl.git] / doc / crypto / DH_get_ex_new_index.pod
CommitLineData
4486d0cd
UM
1=pod
2
3=head1 NAME
4
38e33cef 5DH_get_ex_new_index, DH_set_ex_data, DH_get_ex_data - add application specific data to DH structures
4486d0cd
UM
6
7=head1 SYNOPSIS
8
9 #include <openssl/dh.h>
10
38e33cef
UM
11 int DH_get_ex_new_index(long argl, void *argp,
12 CRYPTO_EX_new *new_func,
13 CRYPTO_EX_dup *dup_func,
14 CRYPTO_EX_free *free_func);
4486d0cd 15
38e33cef 16 int DH_set_ex_data(DH *d, int idx, void *arg);
4486d0cd
UM
17
18 char *DH_get_ex_data(DH *d, int idx);
19
20=head1 DESCRIPTION
21
38e33cef
UM
22These functions handle application specific data in DH
23structures. Their usage is identical to that of
24RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data()
25as described in L<RSA_get_ex_new_index(3)>.
4486d0cd
UM
26
27=head1 SEE ALSO
28
9b86974e 29L<RSA_get_ex_new_index(3)>, L<dh(3)>
4486d0cd 30
4486d0cd 31=cut