Add copy_extensions option to 'ca' utility.
[openssl.git] / doc / apps / speed.pod
1 =pod
2
3 =head1 NAME
4
5 speed - test library performance
6
7 =head1 SYNOPSIS
8
9 B<openssl speed>
10 [B<-engine id>]
11 [B<md2>]
12 [B<mdc2>]
13 [B<md5>]
14 [B<hmac>]
15 [B<sha1>]
16 [B<rmd160>]
17 [B<idea-cbc>]
18 [B<rc2-cbc>]
19 [B<rc5-cbc>]
20 [B<bf-cbc>]
21 [B<des-cbc>]
22 [B<des-ede3>]
23 [B<rc4>]
24 [B<rsa512>]
25 [B<rsa1024>]
26 [B<rsa2048>]
27 [B<rsa4096>]
28 [B<dsa512>]
29 [B<dsa1024>]
30 [B<dsa2048>]
31 [B<idea>]
32 [B<rc2>]
33 [B<des>]
34 [B<rsa>]
35 [B<blowfish>]
36
37 =head1 DESCRIPTION
38
39 This command is used to test the performance of cryptographic algorithms.
40
41 =head1 OPTIONS
42
43 =over 4
44
45 =item B<-engine id>
46
47 specifying an engine (by it's unique B<id> string) will cause B<speed>
48 to attempt to obtain a functional reference to the specified engine,
49 thus initialising it if needed. The engine will then be set as the default
50 for all available algorithms.
51
52 =item B<[zero or more test algorithms]>
53
54 If any options are given, B<speed> tests those algorithms, otherwise all of
55 the above are tested.
56
57 =cut