SHA 1 or SHA-256 and Key Hash
  • Overview
  • How to download JDK
  • Find SHA-1 & SHA-256
    • Setup pre-processing
    • Find debug SHA-1 & SHA-256
    • Find release SHA-1 & SHA-256
  • Find Hash Key
    • Setup Pre-processing
    • Find Debug Hash key
    • Find Debug Hash key using Code
    • Find Release Hash Key
Powered by GitBook
On this page
  1. Find Hash Key

Find Debug Hash key

PreviousSetup Pre-processingNextFind Debug Hash key using Code

Last updated 1 year ago

After you set your JDK path in CMD, we need to write commands into CMD.

keytool -exportcert -alias androiddebugkey -keystore "C:\Users\YOUR_USER\.android/debug.keystore" | "C:\OpenSSL\bin\openssl" sha1 -binary |"C:\OpenSSL\bin\openssl" base64

after you write this command into CMD, and Press the Enter, the CMD was asking about Enter keystore password: like this

Enter androiddebugkey as your password

Now press the Enter key again.

And now you need to wait until the process ends.

And then you get your Hash Key in your CMD, Like this:

Hurray! you have get debug Hash-Key successfully.

Example