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 Release Hash Key

PreviousFind Debug Hash key using Code

Last updated 1 year ago

After setting the JDK path in CMD, you need to write commands into CMD.

keytool -exportcert -alias REPLACE_YOUR_ALIAS_HERE -keystore "YOUR_KEYSTORE_PATH\test.jks" | "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

Then you need to paste or write your keystore password and press again Enter key.

And now you need to wait until process ends.

And then you get your Hash Key in your CMD. like this:

Hurray! you have get Hash-Key successfully.

Example