Skip to content
This repository was archived by the owner on Aug 24, 2025. It is now read-only.

Commit b701fa8

Browse files
levittemattcaswell
authored andcommitted
Fix small but important regression
In OpenSSL pre 1.1.0, 'openssl x509 -CAkeyformat engine' was possible and supported. In 1.1.0, a small typo ('F' instead of 'f') removed that possibility. This restores the pre 1.1.0 behavior. Fixes openssl#4366 Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from openssl#4643) (cherry picked from commit bd6eba7)
1 parent ab91952 commit b701fa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/x509.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ OPTIONS x509_options[] = {
123123
{"checkemail", OPT_CHECKEMAIL, 's', "Check certificate matches email"},
124124
{"checkip", OPT_CHECKIP, 's', "Check certificate matches ipaddr"},
125125
{"CAform", OPT_CAFORM, 'F', "CA format - default PEM"},
126-
{"CAkeyform", OPT_CAKEYFORM, 'F', "CA key format - default PEM"},
126+
{"CAkeyform", OPT_CAKEYFORM, 'f', "CA key format - default PEM"},
127127
{"sigopt", OPT_SIGOPT, 's', "Signature parameter in n:v form"},
128128
{"force_pubkey", OPT_FORCE_PUBKEY, '<', "Force the Key to put inside certificate"},
129129
{"next_serial", OPT_NEXT_SERIAL, '-', "Increment current certificate serial number"},

0 commit comments

Comments
 (0)