I've used Java keytool to generate a key, using this command string:
keytool -genkey -v -keystore [my_app_name].keystore -alias [my_alias] -keyalg RSA -keysize 2048 -validity 10000
I signed my app in PhoneGap Build using this key. However, when I gave the signed file to my customer, they requested I sign with an RSA key rather than DSA key. Doesn't the operator "-keyalg RSA" mean it's an RSA key? What am I missing?
keytool -genkey -v -keystore [my_app_name].keystore -alias [my_alias] -keyalg RSA -keysize 2048 -validity 10000
I signed my app in PhoneGap Build using this key. However, when I gave the signed file to my customer, they requested I sign with an RSA key rather than DSA key. Doesn't the operator "-keyalg RSA" mean it's an RSA key? What am I missing?

