Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ handshakes are performed divided evenly among each thread. It take 2 optional
and two required arguments:

```
handshake [-t] [-s] [-f] <certsdir> <threadcount>
handshake [-t] [-s] <certsdir> <threadcount>
-t - produce terse output
-s - create an ssl_ctx per connection, rather than a single thread-shared ctx
-p - use ossl_lib_ctx per thread
Expand Down Expand Up @@ -225,7 +225,7 @@ Three modes of operation:
- evp_shared (default): Use EVP API and allow shared data between threads

```
Usage: evp_hash [-h] [-t] [-f] [-o operation] [-u update-times] [-a algorithm] thread-count
Usage: evp_hash [-h] [-t] [-o operation] [-u update-times] [-a algorithm] thread-count
-h - print this help output
-t - terse output
-o operation - mode of operation. One of [deprecated, evp_isolated, evp_shared] (default: evp_shared)
Expand Down Expand Up @@ -277,7 +277,7 @@ Two modes of operation:
- evp_shared (default): Use EVP API and allow shared data between threads

```
Usage: evp_cipher [-h] [-t] [-f] [-o operation] [-u update-times] [-a algorithm] thread-count
Usage: evp_cipher [-h] [-t] [-o operation] [-u update-times] [-a algorithm] thread-count
-h - print this help output
-t - terse output
-o operation - mode of operation. One of [evp_isolated, evp_shared] (default: evp_shared)
Expand Down Expand Up @@ -326,7 +326,7 @@ Four modes of operation:
- deprecated_isolated: Use legacy API and don't allow shared data between computations

```
Usage: evp_kdf [-h] [-t] [-f] [-o operation] [-V] thread-count
Usage: evp_kdf [-h] [-t] [-o operation] [-V] thread-count
-h - print this help output
-t - terse output
-o operation - mode of operation. One of [evp_isolated, evp_shared, deprecated_isolated, deprecated_shared] (default: evp_shared)
Expand All @@ -348,7 +348,7 @@ Two modes of operation:
- evp_isolated: Use EVP API and don't allow shared data between computations

```
Usage: evp_rand [-h] [-t] [-f] [-o operation] [-V] thread-count
Usage: evp_rand [-h] [-t] [-o operation] [-V] thread-count
-h - print this help output
-t - terse output
-o operation - mode of operation. One of [evp_isolated, evp_shared] (default: evp_shared)
Expand Down
Loading