In openssl.conf.sample, the option ECDSA has been removed since OpenSSL_1_1_0-pre1 in this commit.
It seems harmless, but if the parser encountered an invalid option, it will exit silently. Meaning, everything come after the line default_algorithms = RSA,ECDSA are ignored.
Maybe to cleanup the openssl.conf.sample so user will not run into trouble such as pondering why SET_TCTI does not work.
In
openssl.conf.sample
, the optionECDSA
has been removed since OpenSSL_1_1_0-pre1 in this commit.It seems harmless, but if the parser encountered an invalid option, it will exit silently. Meaning, everything come after the line
default_algorithms = RSA,ECDSA
are ignored.Maybe to cleanup the
openssl.conf.sample
so user will not run into trouble such as pondering whySET_TCTI
does not work.