summaryrefslogtreecommitdiffstats
path: root/doc/man1/openssl-dgst.pod.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-11-30 07:25:46 +0100
committerRichard Levitte <levitte@openssl.org>2020-12-02 20:19:31 +0100
commitf91d003a0ef0c748a11ccdb19c7661a3f2df9ab0 (patch)
tree20ead7bd3ed8cee5bd59e1076644526959709a5b /doc/man1/openssl-dgst.pod.in
parent0b27381fd544beca44df905991923a7fa374d80a (diff)
APPS: Adapt load_key() and load_pubkey() for the engine: loader
These two functions react when the FORMAT_ENGINE format is given, and use the passed ENGINE |e| and the passed key argument to form a URI suitable for the engine: loader. Co-authored-by: David von Oheimb <david.von.oheimb@siemens.com> Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/13570)
Diffstat (limited to 'doc/man1/openssl-dgst.pod.in')
-rw-r--r--doc/man1/openssl-dgst.pod.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man1/openssl-dgst.pod.in b/doc/man1/openssl-dgst.pod.in
index 533f30725c..6276fab434 100644
--- a/doc/man1/openssl-dgst.pod.in
+++ b/doc/man1/openssl-dgst.pod.in
@@ -19,7 +19,7 @@ B<openssl> B<dgst>|I<digest>
[B<-xoflen> I<length>]
[B<-r>]
[B<-out> I<filename>]
-[B<-sign> I<filename>]
+[B<-sign> I<filename>|I<uri>]
[B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>]
[B<-passin> I<arg>]
[B<-verify> I<filename>]
@@ -100,9 +100,9 @@ Used by programs like L<sha1sum(1)>.
Filename to output to, or standard output by default.
-=item B<-sign> I<filename>
+=item B<-sign> I<filename>|I<uri>
-Digitally sign the digest using the private key in "filename". Note this option
+Digitally sign the digest using the given private key. Note this option
does not support Ed25519 or Ed448 private keys. Use the L<openssl-pkeyutl(1)>
command instead for this.