summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/DH_get_ex_new_index.pod
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2016-07-23 19:31:36 +0000
committercvs2svn <admin@example.com>2016-07-23 19:31:36 +0000
commit86c49b31af735796dfde37aa29473a30d36367db (patch)
treee9a354a92a348338fe2b361e2eda703cae23cfab /src/lib/libcrypto/doc/DH_get_ex_new_index.pod
parent19d5fe348e8926bac4521c5807aa64c45b8f7a41 (diff)
downloadopenbsd-86c49b31af735796dfde37aa29473a30d36367db.tar.gz
openbsd-86c49b31af735796dfde37aa29473a30d36367db.tar.bz2
openbsd-86c49b31af735796dfde37aa29473a30d36367db.zip
This commit was manufactured by cvs2git to create tag 'OPENBSD_6_0_BASE'.OPENBSD_6_0_BASE
Diffstat (limited to 'src/lib/libcrypto/doc/DH_get_ex_new_index.pod')
-rw-r--r--src/lib/libcrypto/doc/DH_get_ex_new_index.pod37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/lib/libcrypto/doc/DH_get_ex_new_index.pod b/src/lib/libcrypto/doc/DH_get_ex_new_index.pod
deleted file mode 100644
index 934ec094bb..0000000000
--- a/src/lib/libcrypto/doc/DH_get_ex_new_index.pod
+++ /dev/null
@@ -1,37 +0,0 @@
1=pod
2
3=head1 NAME
4
5DH_get_ex_new_index, DH_set_ex_data, DH_get_ex_data - add application specific
6data to DH structures
7
8=head1 SYNOPSIS
9
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
21=head1 DESCRIPTION
22
23These functions handle application specific data in DH
24structures. Their usage is identical to that of
25RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data()
26as described in L<RSA_get_ex_new_index(3)>.
27
28=head1 SEE ALSO
29
30L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, L<dh(3)|dh(3)>
31
32=head1 HISTORY
33
34DH_get_ex_new_index(), DH_set_ex_data() and DH_get_ex_data() are
35available since OpenSSL 0.9.5.
36
37=cut