I have an openssl key file encrypted with an empty passphrase. I'm trying to remove the passphrase using this command
openssl rsa -in ca.key -out ca.key.clear
I then try to enter the empty passphrase when it asks for the current passphrase, but I get this error:
140592616367776:error:28069065:lib(40):UI_set_result:result too small:ui_lib.c:869:You must type in 4 to 8191 characters
So it seems I cannot remove a passphrase if it is less than 4 characters.
How do I remove the passphrase, ideally using openssl.