Sometimes it might be handy to use an existing keystore in eclipse (Android -> Build -> CustomKeystore) to build from within eclipse.
The Eclipse plugin does not allow to change the keystore password, key-alias and key password though.
Is there a way to convert an existing keystore to match the default requirements?
The following keytool commands should do the trick. There definitly is a simpler way, but it already took enough time figuring this one out :)
keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -keyalg RSA -keysize 2048 -validity 10000
keytool -delete -alias androiddebugkey -keystore debug.keystore
keytool -importkeystore -srckeystore src.keystore -destkeystore debug.keystore
keytool -changealias -alias srcalias -destalias androiddebugkey -keystore debug.keystore
keytool -keypasswd -alias androiddebugkey -keystore debug.keystore
use 'keytool -list -keystore debug.keystore' to check the result.