mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-04-28 18:54:36 +00:00
apps/req.c: Make sure -verify option takes effect also with -x509
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13658)
This commit is contained in:
parent
0ae8d4ca9e
commit
04a1b3fa7b
@ -104,7 +104,7 @@ const OPTIONS req_options[] = {
|
||||
#endif
|
||||
{"in", OPT_IN, '<', "X.509 request input file"},
|
||||
{"inform", OPT_INFORM, 'F', "Input format - DER or PEM"},
|
||||
{"verify", OPT_VERIFY, '-', "Verify signature on REQ"},
|
||||
{"verify", OPT_VERIFY, '-', "Verify self-signature on the request"},
|
||||
|
||||
OPT_SECTION("Certificate"),
|
||||
{"new", OPT_NEW, '-', "New request"},
|
||||
@ -932,7 +932,7 @@ int req_main(int argc, char **argv)
|
||||
}
|
||||
}
|
||||
|
||||
if (verify && !gen_x509) {
|
||||
if (verify) {
|
||||
EVP_PKEY *tpubkey = pkey;
|
||||
|
||||
if (tpubkey == NULL) {
|
||||
|
@ -142,7 +142,7 @@ Prints out the value of the modulus of the public key contained in the request.
|
||||
|
||||
=item B<-verify>
|
||||
|
||||
Verifies the signature on the request.
|
||||
Verifies the self-signature on the request.
|
||||
|
||||
=item B<-new>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user