1DH_get_ex_new_index(3) OpenSSL DH_get_ex_new_index(3)
2
3
4
6 DH_get_ex_new_index, DH_set_ex_data, DH_get_ex_data - add application
7 specific data to DH structures
8
10 #include <openssl/dh.h>
11
12 int DH_get_ex_new_index(long argl, void *argp,
13 CRYPTO_EX_new *new_func,
14 CRYPTO_EX_dup *dup_func,
15 CRYPTO_EX_free *free_func);
16
17 int DH_set_ex_data(DH *d, int idx, void *arg);
18
19 char *DH_get_ex_data(DH *d, int idx);
20
22 These functions handle application specific data in DH structures.
23 Their usage is identical to that of RSA_get_ex_new_index(),
24 RSA_set_ex_data() and RSA_get_ex_data() as described in
25 RSA_get_ex_new_index(3).
26
28 RSA_get_ex_new_index(3), dh(3)
29
31 DH_get_ex_new_index(), DH_set_ex_data() and DH_get_ex_data() are
32 available since OpenSSL 0.9.5.
33
34
35
361.0.1e 2013-02-11 DH_get_ex_new_index(3)