diff options
author | Pauli <paul.dale@oracle.com> | 2018-08-14 06:04:47 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2018-09-12 00:54:21 +0200 |
commit | f88b9b79152b48541b780dfd30bb34e1c7a91e1b (patch) | |
tree | dea958153cd93fe22dc783eef1679619981b989b /doc/man1/speed.pod | |
parent | Add a note to CHANGES indicating that AES-XTS now enforces two different (diff) | |
download | openssl-f88b9b79152b48541b780dfd30bb34e1c7a91e1b.tar.xz openssl-f88b9b79152b48541b780dfd30bb34e1c7a91e1b.zip |
Speed for HMACs.
Add support for HMAC over any evp supported digest.
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6945)
Diffstat (limited to '')
-rw-r--r-- | doc/man1/speed.pod | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/man1/speed.pod b/doc/man1/speed.pod index 523da0d3b1..16dc839e17 100644 --- a/doc/man1/speed.pod +++ b/doc/man1/speed.pod @@ -12,6 +12,7 @@ B<openssl speed> [B<-engine id>] [B<-elapsed>] [B<-evp algo>] +[B<-hmac algo>] [B<-decrypt>] [B<-rand file...>] [B<-writerand file>] @@ -55,6 +56,10 @@ If B<algo> is an AEAD cipher, then you can pass <-aead> to benchmark a TLS-like sequence. And if B<algo> is a multi-buffer capable cipher, e.g. aes-128-cbc-hmac-sha1, then B<-mb> will time multi-buffer operation. +=item B<-hmac digest> + +Time the HMAC algorithm using the specified message digest. + =item B<-decrypt> Time the decryption instead of encryption. Affects only the EVP testing. |