Make 'openssl req -x509' more equivalent to 'openssl req -new'
authorRichard Levitte <levitte@openssl.org>
Mon, 22 Aug 2016 12:53:53 +0000 (14:53 +0200)
committerRichard Levitte <levitte@openssl.org>
Mon, 22 Aug 2016 13:28:00 +0000 (15:28 +0200)
commit599e5904b22f3d50c5f4720aa3bc8ab8af0ffa98
tree13e4067f78ea516aa6c1da2602f0f58e9fb66f82
parent3ba1ef829cf3dd36eaa5e819258d90291c6a1027
Make 'openssl req -x509' more equivalent to 'openssl req -new'

The following would fail, or rather, freeze:

    openssl genrsa -out rsa2048.pem 2048
    openssl req -x509 -key rsa2048.pem -keyform PEM -out cert.pem

In that case, the second command wants to read a certificate request
from stdin, because -x509 wasn't fully flagged as being for creating
something new.  This changes makes it fully flagged.

RT#4655

Reviewed-by: Andy Polyakov <appro@openssl.org>
apps/req.c