I'm trying to update my Android app, but I forgot the keystore password.
When I type keytool -list -v -keystore keystore.jks
, I'm requested to enter a password, and when I hit enter for the empty password, I see
Alias name: xxxx
Creation date: Jun 24, 2020
Entry type: PrivateKeyEntry
for all other passwords I get keystore password was incorrect
Now I want to change my password, so I type keytool -storepasswd -keystore keystore.jks
, and when I'm requested to enter a password - I hit enter for an empty password, and I get an incorrect password exception.
I can not get it, if my password is empty, why I get an incorrect password error when I change it. If my password is not empty, why do I see the list of keys when I enter an empty pass?
I do also have some private key, maybe it can help