diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-08-27 15:33:18 +0200 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2021-12-07 15:26:40 +0100 |
commit | d9f073575fdb07b486cd1b38974cd177687ccc1e (patch) | |
tree | d0e8bf2bb5f98e59ae5fb06a07f4115ab5468516 /apps/rsa.c | |
parent | Fix documentation for tlsext_ticket_key (diff) | |
download | openssl-d9f073575fdb07b486cd1b38974cd177687ccc1e.tar.xz openssl-d9f073575fdb07b486cd1b38974cd177687ccc1e.zip |
APPS: Improve diagnostics on missing/extra args and unknown cipher/digest
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16450)
Diffstat (limited to 'apps/rsa.c')
-rw-r--r-- | apps/rsa.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/rsa.c b/apps/rsa.c index 05a091ce4b..fb73173428 100644 --- a/apps/rsa.c +++ b/apps/rsa.c @@ -217,14 +217,11 @@ int rsa_main(int argc, char **argv) } /* No extra arguments. */ - argc = opt_num_rest(); - if (argc != 0) + if (!opt_check_rest_arg(NULL)) goto opthelp; - if (ciphername != NULL) { - if (!opt_cipher(ciphername, &enc)) - goto opthelp; - } + if (!opt_cipher(ciphername, &enc)) + goto opthelp; private = (text && !pubin) || (!pubout && !noout) ? 1 : 0; if (!app_passwd(passinarg, passoutarg, &passin, &passout)) { |