]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/crypto/DSA_get_ex_new_index.pod
Remove BN_init
[thirdparty/openssl.git] / doc / crypto / DSA_get_ex_new_index.pod
CommitLineData
38e33cef
UM
1=pod
2
3=head1 NAME
4
5DSA_get_ex_new_index, DSA_set_ex_data, DSA_get_ex_data - add application specific data to DSA structures
6
7=head1 SYNOPSIS
8
1f164f5e 9 #include <openssl/dsa.h>
38e33cef
UM
10
11 int DSA_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);
15
16 int DSA_set_ex_data(DSA *d, int idx, void *arg);
17
18 char *DSA_get_ex_data(DSA *d, int idx);
19
20=head1 DESCRIPTION
21
22These functions handle application specific data in DSA
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)>.
26
27=head1 SEE ALSO
28
9b86974e 29L<RSA_get_ex_new_index(3)>, L<dsa(3)>
38e33cef 30
38e33cef 31=cut