diff options
Diffstat (limited to 'src/lib/libcrypto/doc/DSA_get_ex_new_index.pod')
-rw-r--r-- | src/lib/libcrypto/doc/DSA_get_ex_new_index.pod | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/lib/libcrypto/doc/DSA_get_ex_new_index.pod b/src/lib/libcrypto/doc/DSA_get_ex_new_index.pod deleted file mode 100644 index e2fcabf370..0000000000 --- a/src/lib/libcrypto/doc/DSA_get_ex_new_index.pod +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | =pod | ||
2 | |||
3 | =head1 NAME | ||
4 | |||
5 | DSA_get_ex_new_index, DSA_set_ex_data, DSA_get_ex_data - add application | ||
6 | specific data to DSA structures | ||
7 | |||
8 | =head1 SYNOPSIS | ||
9 | |||
10 | #include <openssl/dsa.h> | ||
11 | |||
12 | int DSA_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 DSA_set_ex_data(DSA *d, int idx, void *arg); | ||
18 | |||
19 | char *DSA_get_ex_data(DSA *d, int idx); | ||
20 | |||
21 | =head1 DESCRIPTION | ||
22 | |||
23 | These functions handle application specific data in DSA | ||
24 | structures. Their usage is identical to that of | ||
25 | RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data() | ||
26 | as described in L<RSA_get_ex_new_index(3)>. | ||
27 | |||
28 | =head1 SEE ALSO | ||
29 | |||
30 | L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, L<dsa(3)|dsa(3)> | ||
31 | |||
32 | =head1 HISTORY | ||
33 | |||
34 | DSA_get_ex_new_index(), DSA_set_ex_data() and DSA_get_ex_data() are | ||
35 | available since OpenSSL 0.9.5. | ||
36 | |||
37 | =cut | ||