Libor Bubik wrote: > > I need remove encryption from my private key. It's encrypted by IDEA cipher. > I want to use 'openssl rsa' command, but it doesn't work. > In OpenSSL documentation is -idea option, but command 'openssl rsa' doesn't > know this option. >
You don't need the -idea option to decrypt a key. It automatically works out the encryption algorithm used so that: openssl rsa -in key.pem -out unencryptedkey.pem would work. The -idea option is only used to use IDEA when encrypting the key. However if your version of 'openssl rsa' doesn't recognise the -idea option its possible that OpenSSL was compiled without IDEA support. You may have to recompile it. See what 'openssl version -a' outputs. Steve. -- Dr Stephen N. Henson. http://www.drh-consultancy.demon.co.uk/ Personal Email: [EMAIL PROTECTED] Senior crypto engineer, Gemplus: http://www.gemplus.com/ Core developer of the OpenSSL project: http://www.openssl.org/ Business Email: [EMAIL PROTECTED] PGP key: via homepage. ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]