I filed report upstream
(http://rt.openssl.org/Ticket/Display.html?id=2534&user=guest&pass=guest) describing
your report and my analysis.
In the meantime, can you verify that you can remove the passphrase (or
use the key for other operations) by using either/both of the alternate
means of specifying the passphrase; i.e.
1) Using -passin pass:XXXXXX, where XXXXXX is passphrase. E.g
Assuming your passphrase is the single character "1":
$ openssl rsa -passin pass:1 -in my.key -out my.key.insecure
2) Using -passin file:FILENAME where FILENAME contains passphrase. E.g.:
$ echo "1" > ./psw
$ openssl rsa -passin file:./psw -in my.key -out my.key.insecure
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]