diff options
author | schwarze <> | 2017-08-20 19:21:20 +0000 |
---|---|---|
committer | schwarze <> | 2017-08-20 19:21:20 +0000 |
commit | fd1c161b911b1304c14f1759e0049b894fe4b81c (patch) | |
tree | 80d59a42325b64b530c2292f4f2d37ad997008d7 /src/lib | |
parent | 9b2197d89a4ce39f6175cdfa70d518473502d269 (diff) | |
download | openbsd-fd1c161b911b1304c14f1759e0049b894fe4b81c.tar.gz openbsd-fd1c161b911b1304c14f1759e0049b894fe4b81c.tar.bz2 openbsd-fd1c161b911b1304c14f1759e0049b894fe4b81c.zip |
import EVP_PKEY_meth_get_count.pod from OpenSSL, pruning the functions we
don't have, which implies renaming the file to EVP_PKEY_meth_get0_info.3
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/man/EVP_PKEY_meth_get0_info.3 | 73 | ||||
-rw-r--r-- | src/lib/libcrypto/man/Makefile | 3 |
2 files changed, 75 insertions, 1 deletions
diff --git a/src/lib/libcrypto/man/EVP_PKEY_meth_get0_info.3 b/src/lib/libcrypto/man/EVP_PKEY_meth_get0_info.3 new file mode 100644 index 0000000000..a5d8ad92b3 --- /dev/null +++ b/src/lib/libcrypto/man/EVP_PKEY_meth_get0_info.3 | |||
@@ -0,0 +1,73 @@ | |||
1 | .\" $OpenBSD: EVP_PKEY_meth_get0_info.3,v 1.1 2017/08/20 19:21:20 schwarze Exp $ | ||
2 | .\" OpenSSL EVP_PKEY_meth_get_count.pod 6a2da303 Aug 9 11:25:19 2017 -0400 | ||
3 | .\" OpenSSL EVP_PKEY_meth_get_count.pod 48ed9c23 Jul 25 17:48:26 2017 +0100 | ||
4 | .\" | ||
5 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. | ||
6 | .\" Copyright (c) 2017 The OpenSSL Project. All rights reserved. | ||
7 | .\" | ||
8 | .\" Redistribution and use in source and binary forms, with or without | ||
9 | .\" modification, are permitted provided that the following conditions | ||
10 | .\" are met: | ||
11 | .\" | ||
12 | .\" 1. Redistributions of source code must retain the above copyright | ||
13 | .\" notice, this list of conditions and the following disclaimer. | ||
14 | .\" | ||
15 | .\" 2. Redistributions in binary form must reproduce the above copyright | ||
16 | .\" notice, this list of conditions and the following disclaimer in | ||
17 | .\" the documentation and/or other materials provided with the | ||
18 | .\" distribution. | ||
19 | .\" | ||
20 | .\" 3. All advertising materials mentioning features or use of this | ||
21 | .\" software must display the following acknowledgment: | ||
22 | .\" "This product includes software developed by the OpenSSL Project | ||
23 | .\" for use in the OpenSSL Toolkit. (http://www.openssl.org/)" | ||
24 | .\" | ||
25 | .\" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
26 | .\" endorse or promote products derived from this software without | ||
27 | .\" prior written permission. For written permission, please contact | ||
28 | .\" openssl-core@openssl.org. | ||
29 | .\" | ||
30 | .\" 5. Products derived from this software may not be called "OpenSSL" | ||
31 | .\" nor may "OpenSSL" appear in their names without prior written | ||
32 | .\" permission of the OpenSSL Project. | ||
33 | .\" | ||
34 | .\" 6. Redistributions of any form whatsoever must retain the following | ||
35 | .\" acknowledgment: | ||
36 | .\" "This product includes software developed by the OpenSSL Project | ||
37 | .\" for use in the OpenSSL Toolkit (http://www.openssl.org/)" | ||
38 | .\" | ||
39 | .\" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
40 | .\" EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
41 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
42 | .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
43 | .\" ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
44 | .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
45 | .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
46 | .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
47 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
48 | .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
49 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
50 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | ||
51 | .\" | ||
52 | .Dd $Mdocdate: August 20 2017 $ | ||
53 | .Dt EVP_PKEY_METH_GET0_INFO 3 | ||
54 | .Os | ||
55 | .Sh NAME | ||
56 | .Nm EVP_PKEY_meth_get0_info | ||
57 | .Nd enumerate public key methods | ||
58 | .Sh SYNOPSIS | ||
59 | .In openssl/evp.h | ||
60 | .Ft void | ||
61 | .Fo EVP_PKEY_meth_get0_info | ||
62 | .Fa "int *ppkey_id" | ||
63 | .Fa "int *pflags" | ||
64 | .Fa "const EVP_PKEY_METHOD *meth" | ||
65 | .Fc | ||
66 | .Sh DESCRIPTION | ||
67 | The function | ||
68 | .Fn EVP_PKEY_meth_get0_info | ||
69 | retrieves the public key ID (a NID) and any flags associated with the | ||
70 | public key method | ||
71 | .Pf * Fa meth . | ||
72 | .Sh SEE ALSO | ||
73 | .Xr EVP_PKEY_new 3 | ||
diff --git a/src/lib/libcrypto/man/Makefile b/src/lib/libcrypto/man/Makefile index cd14bdcdb3..733e6730ab 100644 --- a/src/lib/libcrypto/man/Makefile +++ b/src/lib/libcrypto/man/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.121 2017/08/20 15:01:20 schwarze Exp $ | 1 | # $OpenBSD: Makefile,v 1.122 2017/08/20 19:21:20 schwarze Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | 4 | ||
@@ -121,6 +121,7 @@ MAN= \ | |||
121 | EVP_PKEY_encrypt.3 \ | 121 | EVP_PKEY_encrypt.3 \ |
122 | EVP_PKEY_get_default_digest_nid.3 \ | 122 | EVP_PKEY_get_default_digest_nid.3 \ |
123 | EVP_PKEY_keygen.3 \ | 123 | EVP_PKEY_keygen.3 \ |
124 | EVP_PKEY_meth_get0_info.3 \ | ||
124 | EVP_PKEY_new.3 \ | 125 | EVP_PKEY_new.3 \ |
125 | EVP_PKEY_print_private.3 \ | 126 | EVP_PKEY_print_private.3 \ |
126 | EVP_PKEY_set1_RSA.3 \ | 127 | EVP_PKEY_set1_RSA.3 \ |