Remove '=for openssl ifdef'
[openssl.git] / doc / man1 / openssl-pkeyparam.pod.in
1 =pod
2
3 =begin comment
4 {- join("\n", @autowarntext) -}
5
6 =end comment
7
8 =head1 NAME
9
10 openssl-pkeyparam - public key algorithm parameter processing command
11
12 =head1 SYNOPSIS
13
14 B<openssl> B<pkeyparam>
15 [B<-help>]
16 [B<-in> I<filename>]
17 [B<-out> I<filename>]
18 [B<-text>]
19 [B<-noout>]
20 [B<-check>]
21 {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
22
23 =head1 DESCRIPTION
24
25 This command processes public key algorithm parameters.
26 They can be checked for correctness and their components printed out.
27
28 =head1 OPTIONS
29
30 =over 4
31
32 =item B<-help>
33
34 Print out a usage message.
35
36 =item B<-in> I<filename>
37
38 This specifies the input filename to read parameters from or standard input if
39 this option is not specified.
40
41 =item B<-out> I<filename>
42
43 This specifies the output filename to write parameters to or standard output if
44 this option is not specified.
45
46 =item B<-text>
47
48 Prints out the parameters in plain text in addition to the encoded version.
49
50 =item B<-noout>
51
52 Do not output the encoded version of the parameters.
53
54 =item B<-check>
55
56 This option checks the correctness of parameters.
57
58 {- $OpenSSL::safe::opt_engine_item -}
59
60 {- $OpenSSL::safe::opt_provider_item -}
61
62 =back
63
64 =head1 EXAMPLES
65
66 Print out text version of parameters:
67
68  openssl pkeyparam -in param.pem -text
69
70 =head1 NOTES
71
72 There are no B<-inform> or B<-outform> options for this command because only
73 PEM format is supported because the key type is determined by the PEM headers.
74
75 =head1 SEE ALSO
76
77 L<openssl(1)>,
78 L<openssl-genpkey(1)>,
79 L<openssl-rsa(1)>,
80 L<openssl-pkcs8(1)>,
81 L<openssl-dsa(1)>,
82 L<openssl-genrsa(1)>,
83 L<openssl-gendsa(1)>
84
85 =head1 HISTORY
86
87 The B<-engine> option was deprecated in OpenSSL 3.0.
88
89 =head1 COPYRIGHT
90
91 Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.
92
93 Licensed under the Apache License 2.0 (the "License").  You may not use
94 this file except in compliance with the License.  You can obtain a copy
95 in the file LICENSE in the source distribution or at
96 L<https://www.openssl.org/source/license.html>.
97
98 =cut