Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7d / doc / crypto / DSA_get_ex_new_index.pod
blob4612e708ecc0512073ff7435b4040e7676d5acef
1 =pod
3 =head1 NAME
5 DSA_get_ex_new_index, DSA_set_ex_data, DSA_get_ex_data - add application specific data to DSA structures
7 =head1 SYNOPSIS
9  #include <openssl/DSA.h>
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);
16  int DSA_set_ex_data(DSA *d, int idx, void *arg);
18  char *DSA_get_ex_data(DSA *d, int idx);
20 =head1 DESCRIPTION
22 These functions handle application specific data in DSA
23 structures. Their usage is identical to that of
24 RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data()
25 as described in L<RSA_get_ex_new_index(3)>.
27 =head1 SEE ALSO
29 L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, L<dsa(3)|dsa(3)>
31 =head1 HISTORY
33 DSA_get_ex_new_index(), DSA_set_ex_data() and DSA_get_ex_data() are
34 available since OpenSSL 0.9.5.
36 =cut