diff options
author | cvs2svn <admin@example.com> | 2016-07-23 19:31:36 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2016-07-23 19:31:36 +0000 |
commit | 86c49b31af735796dfde37aa29473a30d36367db (patch) | |
tree | e9a354a92a348338fe2b361e2eda703cae23cfab /src/lib/libcrypto/doc/DSA_new.pod | |
parent | 19d5fe348e8926bac4521c5807aa64c45b8f7a41 (diff) | |
download | openbsd-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/DSA_new.pod')
-rw-r--r-- | src/lib/libcrypto/doc/DSA_new.pod | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/lib/libcrypto/doc/DSA_new.pod b/src/lib/libcrypto/doc/DSA_new.pod deleted file mode 100644 index e1e30b9a07..0000000000 --- a/src/lib/libcrypto/doc/DSA_new.pod +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | =pod | ||
2 | |||
3 | =head1 NAME | ||
4 | |||
5 | DSA_new, DSA_free - allocate and free DSA objects | ||
6 | |||
7 | =head1 SYNOPSIS | ||
8 | |||
9 | #include <openssl/dsa.h> | ||
10 | |||
11 | DSA* DSA_new(void); | ||
12 | |||
13 | void DSA_free(DSA *dsa); | ||
14 | |||
15 | =head1 DESCRIPTION | ||
16 | |||
17 | DSA_new() allocates and initializes a B<DSA> structure. It is equivalent to | ||
18 | calling DSA_new_method(NULL). | ||
19 | |||
20 | DSA_free() frees the B<DSA> structure and its components. The values are | ||
21 | erased before the memory is returned to the system. | ||
22 | |||
23 | =head1 RETURN VALUES | ||
24 | |||
25 | If the allocation fails, DSA_new() returns B<NULL> and sets an error | ||
26 | code that can be obtained by | ||
27 | L<ERR_get_error(3)|ERR_get_error(3)>. Otherwise it returns a pointer | ||
28 | to the newly allocated structure. | ||
29 | |||
30 | =head1 SEE ALSO | ||
31 | |||
32 | L<dsa(3)|dsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, | ||
33 | L<DSA_generate_parameters(3)|DSA_generate_parameters(3)>, | ||
34 | L<DSA_generate_key(3)|DSA_generate_key(3)> | ||
35 | |||
36 | =head1 HISTORY | ||
37 | |||
38 | DSA_new() and DSA_free() are available in all versions of SSLeay and OpenSSL. | ||
39 | |||
40 | =cut | ||