| OLD | NEW |
| 1 =pod | 1 =pod |
| 2 | 2 |
| 3 =head1 NAME | 3 =head1 NAME |
| 4 | 4 |
| 5 speed - test library performance | 5 speed - test library performance |
| 6 | 6 |
| 7 =head1 SYNOPSIS | 7 =head1 SYNOPSIS |
| 8 | 8 |
| 9 B<openssl speed> | 9 B<openssl speed> |
| 10 [B<-engine id>] | 10 [B<-engine id>] |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 =head1 DESCRIPTION | 37 =head1 DESCRIPTION |
| 38 | 38 |
| 39 This command is used to test the performance of cryptographic algorithms. | 39 This command is used to test the performance of cryptographic algorithms. |
| 40 | 40 |
| 41 =head1 OPTIONS | 41 =head1 OPTIONS |
| 42 | 42 |
| 43 =over 4 | 43 =over 4 |
| 44 | 44 |
| 45 =item B<-engine id> | 45 =item B<-engine id> |
| 46 | 46 |
| 47 specifying an engine (by it's unique B<id> string) will cause B<speed> | 47 specifying an engine (by its unique B<id> string) will cause B<speed> |
| 48 to attempt to obtain a functional reference to the specified engine, | 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 | 49 thus initialising it if needed. The engine will then be set as the default |
| 50 for all available algorithms. | 50 for all available algorithms. |
| 51 | 51 |
| 52 =item B<[zero or more test algorithms]> | 52 =item B<[zero or more test algorithms]> |
| 53 | 53 |
| 54 If any options are given, B<speed> tests those algorithms, otherwise all of | 54 If any options are given, B<speed> tests those algorithms, otherwise all of |
| 55 the above are tested. | 55 the above are tested. |
| 56 | 56 |
| 57 =back | 57 =back |
| 58 | 58 |
| 59 =cut | 59 =cut |
| OLD | NEW |