diff options
author | schwarze <> | 2016-11-02 09:11:53 +0000 |
---|---|---|
committer | schwarze <> | 2016-11-02 09:11:53 +0000 |
commit | b50ac7faef96a45291b0c3201b82185f7579e826 (patch) | |
tree | 9166b196a2c833fc7a0154973d11551824a6bfb9 /src/lib/libcrypto/doc/DH_get_ex_new_index.pod | |
parent | 506350d1237710b9d86fdb3a794c6e6265f71221 (diff) | |
download | openbsd-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.pod | 37 |
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 | |||
5 | DH_get_ex_new_index, DH_set_ex_data, DH_get_ex_data - add application specific | ||
6 | data 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 | |||
23 | These functions handle application specific data in DH | ||
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<dh(3)|dh(3)> | ||
31 | |||
32 | =head1 HISTORY | ||
33 | |||
34 | DH_get_ex_new_index(), DH_set_ex_data() and DH_get_ex_data() are | ||
35 | available since OpenSSL 0.9.5. | ||
36 | |||
37 | =cut | ||