]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man1/openssl-pkeyparam.pod
Deprecate unprefixed manual entries for openssl commands
[thirdparty/openssl.git] / doc / man1 / openssl-pkeyparam.pod
CommitLineData
e4549295
DSH
1=pod
2
3=head1 NAME
4
b6b66573 5openssl-pkeyparam - public key algorithm parameter processing tool
e4549295
DSH
6
7=head1 SYNOPSIS
8
9B<openssl> B<pkeyparam>
169394d4 10[B<-help>]
e4549295
DSH
11[B<-in filename>]
12[B<-out filename>]
13[B<-text>]
14[B<-noout>]
15[B<-engine id>]
b0004708 16[B<-check>]
e4549295
DSH
17
18=head1 DESCRIPTION
19
856f231b
DMSP
20The B<pkeyparam> command processes public key algorithm parameters.
21They can be checked for correctness and their components printed out.
e4549295 22
3dfda1a6 23=head1 OPTIONS
e4549295
DSH
24
25=over 4
26
169394d4
MR
27=item B<-help>
28
29Print out a usage message.
30
e4549295
DSH
31=item B<-in filename>
32
33This specifies the input filename to read parameters from or standard input if
34this option is not specified.
35
36=item B<-out filename>
37
38This specifies the output filename to write parameters to or standard output if
39this option is not specified.
40
41=item B<-text>
42
c4de074e 43Prints out the parameters in plain text in addition to the encoded version.
e4549295
DSH
44
45=item B<-noout>
46
c4de074e 47Do not output the encoded version of the parameters.
e4549295
DSH
48
49=item B<-engine id>
50
c4de074e 51Specifying an engine (by its unique B<id> string) will cause B<pkeyparam>
e4549295
DSH
52to attempt to obtain a functional reference to the specified engine,
53thus initialising it if needed. The engine will then be set as the default
54for all available algorithms.
55
b0004708
PY
56=item B<-check>
57
58This option checks the correctness of parameters.
59
e4549295
DSH
60=back
61
cda77422 62=head1 EXAMPLES
e4549295
DSH
63
64Print out text version of parameters:
65
66 openssl pkeyparam -in param.pem -text
67
68=head1 NOTES
69
70There are no B<-inform> or B<-outform> options for this command because only
71PEM format is supported because the key type is determined by the PEM headers.
72
73=head1 SEE ALSO
74
b6b66573
DMSP
75L<openssl(1)>,
76L<openssl-genpkey(1)>,
77L<openssl-rsa(1)>,
78L<openssl-pkcs8(1)>,
79L<openssl-dsa(1)>,
80L<openssl-genrsa(1)>,
81L<openssl-gendsa(1)>
e4549295 82
e2f92610
RS
83=head1 COPYRIGHT
84
b6b66573 85Copyright 2006-2019 The OpenSSL Project Authors. All Rights Reserved.
e2f92610 86
449040b4 87Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
88this file except in compliance with the License. You can obtain a copy
89in the file LICENSE in the source distribution or at
90L<https://www.openssl.org/source/license.html>.
91
92=cut