summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/DH_get_ex_new_index.pod
diff options
context:
space:
mode:
authorschwarze <>2016-11-02 09:11:53 +0000
committerschwarze <>2016-11-02 09:11:53 +0000
commitb50ac7faef96a45291b0c3201b82185f7579e826 (patch)
tree9166b196a2c833fc7a0154973d11551824a6bfb9 /src/lib/libcrypto/doc/DH_get_ex_new_index.pod
parent506350d1237710b9d86fdb3a794c6e6265f71221 (diff)
downloadopenbsd-b50ac7faef96a45291b0c3201b82185f7579e826.tar.gz
openbsd-b50ac7faef96a45291b0c3201b82185f7579e826.tar.bz2
openbsd-b50ac7faef96a45291b0c3201b82185f7579e826.zip
convert DES and DH manuals from pod to mdoc
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