diff options
author | Daiki Ueno <dueno@redhat.com> | 2020-10-26 13:23:14 +0100 |
---|---|---|
committer | Tomas Mraz <tmraz@fedoraproject.org> | 2020-12-02 16:46:46 +0100 |
commit | c39f43534d4f359bdfee617f70f89b114c9f2cca (patch) | |
tree | 3049586263b57fce903d7b9019ed49c2632303f0 /doc/man1 | |
parent | Adapt everything else to the updated OSSL_ENCODER_CTX_new_by_EVP_PKEY() (diff) | |
download | openssl-c39f43534d4f359bdfee617f70f89b114c9f2cca.tar.xz openssl-c39f43534d4f359bdfee617f70f89b114c9f2cca.zip |
openssl dgst: add option to specify output length for XOF
This adds the -xoflen option to control the output length of the XOF
algorithms, such as SHAKE128 and SHAKE256.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/13245)
Diffstat (limited to 'doc/man1')
-rw-r--r-- | doc/man1/openssl-dgst.pod.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/man1/openssl-dgst.pod.in b/doc/man1/openssl-dgst.pod.in index 4667aeea34..533f30725c 100644 --- a/doc/man1/openssl-dgst.pod.in +++ b/doc/man1/openssl-dgst.pod.in @@ -16,6 +16,7 @@ B<openssl> B<dgst>|I<digest> [B<-list>] [B<-hex>] [B<-binary>] +[B<-xoflen> I<length>] [B<-r>] [B<-out> I<filename>] [B<-sign> I<filename>] @@ -84,6 +85,10 @@ signatures using B<-hex>. Output the digest or signature in binary form. +=item B<-xoflen> I<length> + +Set the output length for XOF algorithms, such as B<shake128>. + =item B<-r> =for openssl foreign manual sha1sum(1) |