home, UNITY, updated

How to get SHA1 certificate from keystore file?

You can get SHA1 by using the following command in the terminal.

keytool -list -v -keystore xyz.keystore -alias alias_name 

// xyz : put here your keystorename
// alias_name : put here your key alias name

You are getting the following result as your SHA1

 SHA1: 87:DB:29:0B:3F..................................F4
 SHA256:48:3F:73..............................EE:34:DA:5C:09:EF

Related Articles

post a comment