projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
81cebb8
)
Fix usage message for pkeyutl.
author
Dr. Stephen Henson
<steve@openssl.org>
Wed, 26 Apr 2006 15:42:29 +0000
(15:42 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Wed, 26 Apr 2006 15:42:29 +0000
(15:42 +0000)
apps/pkeyutl.c
patch
|
blob
|
history
diff --git
a/apps/pkeyutl.c
b/apps/pkeyutl.c
index 6f2abcf54839e16ca258eac6182199549e3523a8..33dd9f3b615863dffd316f849a90d42b993ed573 100644
(file)
--- a/
apps/pkeyutl.c
+++ b/
apps/pkeyutl.c
@@
-387,20
+387,23
@@
static void usage()
BIO_printf(bio_err, "Usage: pkeyutl [options]\n");
BIO_printf(bio_err, "-in file input file\n");
BIO_printf(bio_err, "-out file output file\n");
BIO_printf(bio_err, "Usage: pkeyutl [options]\n");
BIO_printf(bio_err, "-in file input file\n");
BIO_printf(bio_err, "-out file output file\n");
+ BIO_printf(bio_err, "-signature file signature file (verify operation only)\n");
BIO_printf(bio_err, "-inkey file input key\n");
BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
BIO_printf(bio_err, "-inkey file input key\n");
BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
- BIO_printf(bio_err, "-pubin input is a
n RSA public
\n");
- BIO_printf(bio_err, "-certin input is a certificate carrying a
n RSA
public key\n");
- BIO_printf(bio_err, "-
ctrl X:Y control parameter
s\n");
+ BIO_printf(bio_err, "-pubin input is a
public key
\n");
+ BIO_printf(bio_err, "-certin input is a certificate carrying a public key\n");
+ BIO_printf(bio_err, "-
pkeyopt X:Y public key option
s\n");
BIO_printf(bio_err, "-sign sign with private key\n");
BIO_printf(bio_err, "-verify verify with public key\n");
BIO_printf(bio_err, "-sign sign with private key\n");
BIO_printf(bio_err, "-verify verify with public key\n");
+ BIO_printf(bio_err, "-verifyrecover verify with public key, recover original data\n");
BIO_printf(bio_err, "-encrypt encrypt with public key\n");
BIO_printf(bio_err, "-decrypt decrypt with private key\n");
BIO_printf(bio_err, "-encrypt encrypt with public key\n");
BIO_printf(bio_err, "-decrypt decrypt with private key\n");
+ BIO_printf(bio_err, "-derive derive shared secret\n");
BIO_printf(bio_err, "-hexdump hex dump output\n");
#ifndef OPENSSL_NO_ENGINE
BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
BIO_printf(bio_err, "-hexdump hex dump output\n");
#ifndef OPENSSL_NO_ENGINE
BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
- BIO_printf(bio_err, "-passin arg pass phrase source\n");
#endif
#endif
+ BIO_printf(bio_err, "-passin arg pass phrase source\n");
}
}