Get Android Hash Key and MD5 Fingerprint

To get android key hash code follow these steps:
  1. Download the openssl for windows
  2. now unzip to c drive
  3. open cmd prompt
  4. type cd C:\Program Files\Java\jdk1.6.0_26\bin
  5. then type only
  6. keytool -export -alias myAlias -keystore C:\Users\your user name\.android\myKeyStore | C:\openssl-0.9.8k_WIN32 \bin\openssl sha1 -binary | C:\openssl-0.9.8k_WIN32\bin\openssl enc -a -e
  7. Done
To get Certificate fingerprint(MD5) code follow these steps:
  1. go to – C:\Program Files\Java\jdk1.6.0_26\bin
  2. inside the bin folder run the jarsigner.exe file
  3. open cmd prompt
  4. type cd C:\Program Files\Java\jdk1.6.0_26\bin
  5. then again type on cmd
  6. keytool -list -keystore “C:/Documents and Settings/your user name/.android/debug.keystore”
  7. it will ask for Keystore password now. The default is “android” type and enter
  8. Done.

Leave a comment