summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/DH_new.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_new.pod
parent19d5fe348e8926bac4521c5807aa64c45b8f7a41 (diff)
downloadopenbsd-OPENBSD_6_0_BASE.tar.gz
openbsd-OPENBSD_6_0_BASE.tar.bz2
openbsd-OPENBSD_6_0_BASE.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_new.pod')
-rw-r--r--src/lib/libcrypto/doc/DH_new.pod38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/lib/libcrypto/doc/DH_new.pod b/src/lib/libcrypto/doc/DH_new.pod
deleted file mode 100644
index 0fdb7b9680..0000000000
--- a/src/lib/libcrypto/doc/DH_new.pod
+++ /dev/null
@@ -1,38 +0,0 @@
1=pod
2
3=head1 NAME
4
5DH_new, DH_free - allocate and free DH objects
6
7=head1 SYNOPSIS
8
9 #include <openssl/dh.h>
10
11 DH* DH_new(void);
12
13 void DH_free(DH *dh);
14
15=head1 DESCRIPTION
16
17DH_new() allocates and initializes a B<DH> structure.
18
19DH_free() frees the B<DH> structure and its components. The values are
20erased before the memory is returned to the system.
21
22=head1 RETURN VALUES
23
24If the allocation fails, DH_new() returns B<NULL> and sets an error code that
25can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>. Otherwise it returns a
26pointer to the newly allocated structure.
27
28=head1 SEE ALSO
29
30L<dh(3)|dh(3)>, L<ERR_get_error(3)|ERR_get_error(3)>,
31L<DH_generate_parameters(3)|DH_generate_parameters(3)>,
32L<DH_generate_key(3)|DH_generate_key(3)>
33
34=head1 HISTORY
35
36DH_new() and DH_free() are available in all versions of SSLeay and OpenSSL.
37
38=cut