I am using the 64-bit version of Windows 7, and I am trying to export my base-key-encoded sha-hash with this command:
keytool -exportcert -alias [alias] -keystore [keystore]
| openssl sha1 -binary
| openssl base64
Sorry, I am getting an error
command "openssl" not found
I also tried to use other commands that were shown on this site: http://www.startux.de/index.php/java/44-dealing-with-java-keystores
But I always get the error that openssl cannot be found. What am I missing?
Decision
I missed openssl. And I downloaded it here: deanlee.cn/programming/openssl-for-windows
source
share