Keytool gives different certificates for different passwords for an Android app -


given command-

keytool -list -keystore "path\debug.keystore"

when entering 'android' password, can see 1 certificate.

but when using-

keytool -exportcert -alias androiddebugkey -keystore "path\debug.keystore" | openssl sha1 -binary | openssl base65

what happens different password given keytool ('android' among them) results in different output. given no password (just clicking enter) output same when entering 'android' password, plus warning message integrity. (which not printed when entering arbitrary passwords)

so, figured out means 1 certificate in keystore, output different different passwords? that?


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -