Find Release Hash Key

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.

Last updated