d8d5f6f22b690a4b1dc03849ab9d09ccd0fd2865
[openssl.git] / doc / man1 / speed.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-speed,
6 speed - test library performance
7
8 =head1 SYNOPSIS
9
10 B<openssl speed>
11 [B<-help>]
12 [B<-engine id>]
13 [B<-elapsed>]
14 [B<-evp algo>]
15 [B<-decrypt>]
16 [B<-rand file...>]
17 [B<-writerand file>]
18 [B<algorithm...>]
19
20 =head1 DESCRIPTION
21
22 This command is used to test the performance of cryptographic algorithms.
23 To see the list of supported algorithms, use the I<list --digest-commands>
24 or I<list --cipher-commands> command. The global CSPRNG is denoted by
25 the I<rand> algorithm name.
26
27 =head1 OPTIONS
28
29 =over 4
30
31 =item B<-help>
32
33 Print out a usage message.
34
35 =item B<-engine id>
36
37 Specifying an engine (by its unique B<id> string) will cause B<speed>
38 to attempt to obtain a functional reference to the specified engine,
39 thus initialising it if needed. The engine will then be set as the default
40 for all available algorithms.
41
42 =item B<-elapsed>
43
44 Measure time in real time instead of CPU time. It can be useful when testing
45 speed of hardware engines.
46
47 =item B<-evp algo>
48
49 Use the specified cipher or message digest algorithm via the EVP interface.
50
51 =item B<-decrypt>
52
53 Time the decryption instead of encryption. Affects only the EVP testing.
54
55 =item B<-rand file...>
56
57 A file or files containing random data used to seed the random number
58 generator.
59 Multiple files can be specified separated by an OS-dependent character.
60 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
61 all others.
62
63 =item [B<-writerand file>]
64
65 Writes random data to the specified I<file> upon exit.
66 This can be used with a subsequent B<-rand> flag.
67
68 =item B<[zero or more test algorithms]>
69
70 If any options are given, B<speed> tests those algorithms, otherwise all of
71 the above are tested.
72
73 =back
74
75 =head1 COPYRIGHT
76
77 Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
78
79 Licensed under the OpenSSL license (the "License").  You may not use
80 this file except in compliance with the License.  You can obtain a copy
81 in the file LICENSE in the source distribution or at
82 L<https://www.openssl.org/source/license.html>.
83
84 =cut