openssl dgst, openssl enc: check for end of input
[openssl.git] / doc / man1 / openssl-list.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-list - list algorithms and features
6
7 =head1 SYNOPSIS
8
9 B<openssl list>
10 [B<-help>]
11 [B<-verbose>]
12 [B<-1>]
13 [B<-commands>]
14 [B<-digest-commands>]
15 [B<-digest-algorithms>]
16 [B<-mac-algorithms>]
17 [B<-cipher-commands>]
18 [B<-cipher-algorithms>]
19 [B<-public-key-algorithms>]
20 [B<-public-key-methods>]
21 [B<-engines>]
22 [B<-disabled>]
23
24 =head1 DESCRIPTION
25
26 This command is used to generate list of algorithms or disabled
27 features.
28
29 =head1 OPTIONS
30
31 =over 4
32
33 =item B<-help>
34
35 Display a usage message.
36
37 =item B<-verbose>
38
39 Displays extra information.
40 The options below where verbosity applies say a bit more about what that means.
41
42 =item B<-1>
43
44 List the commands, digest-commands, or cipher-commands in a single column.
45 If used, this option must be given first.
46
47 =item B<-commands>
48
49 Display a list of standard commands.
50
51 =item B<-digest-commands>
52
53 Display a list of message digest commands, which are typically used
54 as input to the L<dgst(1)> or L<speed(1)> commands.
55
56 =item B<-digest-algorithms>
57
58 Display a list of message digest algorithms.
59 If a line is of the form C<foo =E<gt> bar> then B<foo> is an alias for the
60 official algorithm name, B<bar>.
61 If a line is of the form C<foo @ bar>, then B<foo> is provided by the provider
62 B<bar>.
63
64 In verbose mode, the algorithms provided by a provider will get additional
65 information on what parameters each implementation supports.
66
67 =item B<-mac-algorithms>
68
69 Display a list of message authentication code algorithms.
70 If a line is of the form C<foo =E<gt> bar> then B<foo> is an alias for the
71 official algorithm name, B<bar>.
72
73 =item B<-cipher-commands>
74
75 Display a list of cipher commands, which are typically used as input
76 to the L<dgst(1)> or L<speed(1)> commands.
77
78 =item B<-cipher-algorithms>
79
80 Display a list of cipher algorithms.
81 If a line is of the form C<foo =E<gt> bar> then B<foo> is an alias for the
82 official algorithm name, B<bar>.
83 If a line is of the form C<foo @ bar>, then B<foo> is provided by the provider
84 B<bar>.
85
86 In verbose mode, the algorithms provided by a provider will get additional
87 information on what parameters each implementation supports.
88
89 =item B<-public-key-algorithms>
90
91 Display a list of public key algorithms, with each algorithm as
92 a block of multiple lines, all but the first are indented.
93
94 =item B<-public-key-methods>
95
96 Display a list of public key method OIDs: this also includes public key methods
97 without an associated ASN.1 method, for example, KDF algorithms.
98
99 =item B<-engines>
100
101 Display a list of loaded engines.
102
103 =item B<-disabled>
104
105 Display a list of disabled features, those that were compiled out
106 of the installation.
107
108 =item B<-objects>
109
110 Display a list of built in objects, i.e. OIDs with names.  They're listed in the
111 format described in L<config(5)/ASN1 Object Configuration Module>.
112
113 =back
114
115 =head1 COPYRIGHT
116
117 Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
118
119 Licensed under the Apache License 2.0 (the "License").  You may not use
120 this file except in compliance with the License.  You can obtain a copy
121 in the file LICENSE in the source distribution or at
122 L<https://www.openssl.org/source/license.html>.
123
124 =cut